:root {
    --mist: #f4fafd;
    --morning: #e1f0f8;
    --sky: #b9d9ec;
    --harbor: #6f9fbd;
    --deep-water: #244d68;
    --midnight: #142f42;
    --ink-soft: #4e6d80;
    --white: #ffffff;
    --line: #c8dde8;
    --page-gutter: clamp(1.25rem, 4vw, 4rem);
    --shell: 1180px;
    --focus: #367ca6;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--midnight);
    background: var(--mist);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
input {
    font: inherit;
}

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

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

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--white);
    background: var(--midnight);
    border-radius: 8px;
    transform: translateY(-180%);
}

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(244, 250, 253, 0.94);
    border-bottom: 1px solid rgba(111, 159, 189, 0.24);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, var(--shell));
    min-height: 76px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.65rem;
    text-decoration: none;
}

.wordmark strong {
    font-size: 0.92rem;
    letter-spacing: 0.09em;
}

.wordmark span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1.7vw, 1.5rem);
}

.desktop-nav a {
    color: #294c61;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--midnight);
}

.nav-donate {
    padding: 0.72rem 1.15rem;
    color: var(--white) !important;
    background: var(--deep-water);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(20, 47, 66, 0.14);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--midnight);
    background: var(--white);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(20, 47, 66, 0.1);
    cursor: pointer;
}

.menu-button svg {
    width: 22px;
    margin: auto;
}

.mobile-menu {
    position: fixed;
    z-index: 45;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 76px);
    padding: 0.8rem var(--page-gutter) 1.2rem;
    overflow-y: auto;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(20, 47, 66, 0.12);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
}

.mobile-menu[inert] {
    visibility: hidden;
}

.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu a {
    min-height: 48px;
    padding: 0.8rem 0;
    color: var(--midnight);
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #dbeef7 0%, #edf7fb 76%, var(--mist) 100%);
}

.page-hero::before,
.page-hero::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    top: -14rem;
    right: -10rem;
    width: clamp(24rem, 42vw, 40rem);
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.66);
}

.page-hero::after {
    bottom: -18rem;
    left: -12rem;
    width: clamp(24rem, 38vw, 35rem);
    aspect-ratio: 1;
    background: rgba(111, 159, 189, 0.18);
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: end;
    gap: clamp(2.5rem, 7vw, 7rem);
    width: min(100%, var(--shell));
    min-height: 480px;
    margin: 0 auto;
    padding: clamp(5rem, 10vw, 8rem) var(--page-gutter) clamp(4rem, 8vw, 6rem);
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.25rem;
    color: var(--deep-water);
    font-size: 0.84rem;
    font-weight: 750;
}

.hero-kicker::before {
    width: 2.4rem;
    height: 1px;
    background: var(--harbor);
    content: "";
}

.page-hero h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3rem, 7.2vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-intro {
    max-width: 34rem;
    margin: 0;
    color: #385e75;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.72;
}

.resource-band {
    position: relative;
    z-index: 2;
    background: var(--deep-water);
}

.resource-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding: 0.8rem var(--page-gutter);
}

.resource-band-summary {
    display: grid;
    flex: 0 0 auto;
    gap: 0.08rem;
    min-width: 7.5rem;
}

.resource-band-summary > span {
    color: #9fc1d4;
    font-size: 0.68rem;
    font-weight: 700;
}

.resource-band-summary p {
    margin: 0;
    color: #dcecf4;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.filter-featured,
.filter-formats {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-featured {
    padding-right: 0.65rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    color: #dcecf4;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.filter-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
    color: var(--midnight);
    background: var(--white);
    border-color: var(--white);
}

.filter-button--featured {
    min-height: 46px;
    padding-inline: 1.05rem;
    font-weight: 750;
}

.filter-button--podcast {
    color: var(--midnight);
    background: var(--sky);
    border-color: var(--sky);
}

.filter-button--podcast:hover,
.filter-button--podcast[aria-pressed="true"] {
    color: var(--midnight);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 20px rgba(5, 22, 33, 0.22);
}

.filter-button--new {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.filter-button--new:hover,
.filter-button--new[aria-pressed="true"] {
    color: var(--midnight);
    background: var(--white);
    border-color: var(--white);
}

.filter-count {
    display: grid;
    min-width: 1.35rem;
    min-height: 1.35rem;
    padding-inline: 0.32rem;
    place-items: center;
    color: var(--white);
    background: var(--deep-water);
    border-radius: 999px;
    font-size: 0.68rem;
}

.filter-count[hidden] {
    display: none;
}

.filter-button--quiet {
    color: #bfd6e3;
    background: transparent;
    border-color: transparent;
}

.filter-button--quiet:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-button--quiet[aria-pressed="true"] {
    color: var(--midnight);
    background: var(--white);
    border-color: var(--white);
}

.library-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--mist);
}

.library-section.podcast-mode {
    color: var(--white);
    background: var(--midnight);
}

.library-section.podcast-mode::before,
.library-section.podcast-mode::after {
    position: absolute;
    z-index: -1;
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
}

.library-section.podcast-mode::before {
    top: -17rem;
    right: -9rem;
    width: clamp(30rem, 48vw, 43rem);
    background: rgba(255, 255, 255, 0.055);
}

.library-section.podcast-mode::after {
    bottom: -24rem;
    left: 20%;
    width: clamp(30rem, 44vw, 40rem);
    background: rgba(185, 217, 236, 0.09);
}

.library-section.podcast-mode .library-shell {
    min-height: clamp(430px, 50vw, 590px);
}

.library-section.podcast-mode .library-heading h2,
.library-section.podcast-mode .empty-state h3 {
    color: var(--white);
}

.library-section.podcast-mode .empty-state {
    display: grid;
    min-height: 340px;
    align-content: center;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    border-top-color: rgba(255, 255, 255, 0.22);
    text-align: left;
}

.podcast-preview {
    display: grid;
    grid-template-columns: minmax(210px, 0.78fr) minmax(280px, 1.22fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.podcast-preview[hidden],
.empty-state-copy[hidden] {
    display: none;
}

.podcast-artwork {
    display: grid;
    width: min(100%, 290px);
    aspect-ratio: 1;
    place-items: center;
    padding: clamp(0.7rem, 2vw, 1.1rem);
    overflow: hidden;
    background: #edf7fb;
    border-radius: 50%;
    box-shadow: 0 24px 54px rgba(5, 22, 33, 0.28);
}

.podcast-artwork img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.podcast-preview-copy {
    min-width: 0;
}

.podcast-preview-copy .podcast-label {
    margin: 0 0 0.85rem;
    color: var(--sky);
    font-size: 0.82rem;
    font-weight: 750;
}

.library-section.podcast-mode .podcast-preview-copy h3 {
    max-width: 12ch;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.4rem, 4.7vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.podcast-preview-copy > p:last-child {
    margin: 1.1rem 0 0;
    color: #bfd6e3;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 650;
}

.library-shell {
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter);
}

.library-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.library-heading h2,
.donation-copy h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.library-heading p,
.donation-copy > p {
    max-width: 62ch;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.resource-list {
    display: grid;
}

.resource {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    padding: clamp(2.8rem, 6vw, 5.5rem) 0;
    border-top: 1px solid var(--line);
}

.resource[hidden] {
    display: none;
}

.resource--inspiration {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.resource-visual {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    min-height: 290px;
    overflow: hidden;
    color: var(--deep-water);
    background: var(--morning);
    border-radius: 16px;
    text-decoration: none;
}

.resource-visual:hover .resource-image {
    transform: scale(1.025);
}

.resource-visual.embedded-video {
    display: block;
    background: var(--midnight);
}

.resource-embed {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.resource-image {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.resource-visual.book {
    height: clamp(300px, 32vw, 380px);
    aspect-ratio: auto;
    background: var(--white);
}

.resource-visual.book .resource-image {
    object-fit: contain;
}

.resource-visual.inspiration {
    min-height: 0;
    aspect-ratio: 9 / 16;
    background: var(--white);
    cursor: default;
}

.resource-visual.inspiration .resource-image {
    object-fit: contain;
}

.resource-visual.inspiration:hover .resource-image {
    transform: none;
}

.resource-mark {
    position: absolute;
    z-index: 2;
}

.resource-mark.video {
    display: grid;
    place-items: center;
    width: 92px;
    aspect-ratio: 1;
    color: var(--white);
    background: var(--deep-water);
    border-radius: 50%;
    box-shadow: 0 20px 34px rgba(20, 47, 66, 0.18);
}

.resource-mark.video svg {
    width: 30px;
    margin-left: 4px;
}

.resource-type {
    margin: 0 0 0.8rem;
    color: var(--deep-water);
    font-size: 0.8rem;
    font-weight: 750;
}

.resource h3 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.resource-speaker {
    margin: 0.85rem 0 0;
    color: var(--ink-soft);
    font-weight: 650;
}

.resource-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.resource-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    color: var(--deep-water);
    appearance: none;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 750;
    font-family: inherit;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
}

.resource-share-button svg {
    width: 17px;
    height: 17px;
}

.resource-share-button:hover {
    color: var(--midnight);
    background: var(--morning);
    border-color: var(--harbor);
}

.action-link,
.form-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.75rem 1.15rem;
    font-weight: 750;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
}

.action-link.primary,
.form-fallback.primary {
    color: var(--white);
    background: var(--deep-water);
    border: 1px solid var(--deep-water);
    box-shadow: 0 10px 22px rgba(20, 47, 66, 0.14);
}

.action-link.secondary,
.form-fallback {
    color: var(--midnight);
    background: transparent;
    border: 1px solid var(--harbor);
}

.action-link:hover,
.form-fallback:hover {
    transform: translateY(-2px);
}

.dial-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.7rem 0 0;
    padding: 1.2rem 0 0;
    border-top: 1px solid var(--line);
}

.dial-details div {
    display: grid;
    gap: 0.22rem;
}

.dial-details dt {
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.dial-details dd {
    margin: 0;
    font-weight: 750;
}

.dial-details a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.empty-state {
    padding: 4rem 0;
    border-top: 1px solid var(--line);
    text-align: center;
}

.empty-state[hidden] {
    display: none;
}

.empty-state h3 {
    margin: 0 0 0.5rem;
}

.empty-state p {
    margin: 0;
    color: var(--ink-soft);
}

.watch-main {
    min-height: calc(100svh - 157px);
    background: linear-gradient(180deg, #e4f2f9 0%, var(--mist) 42%, var(--mist) 100%);
}

.watch-shell {
    width: min(100%, calc(var(--shell) + (2 * var(--page-gutter))));
    min-height: calc(100svh - 157px);
    margin: 0 auto;
    padding: clamp(1.4rem, 3.5vw, 2.75rem) var(--page-gutter) clamp(4rem, 8vw, 7rem);
}

.watch-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
    color: var(--deep-water);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.watch-back:hover {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.watch-back svg {
    width: 20px;
}

.watch-loading {
    display: grid;
    min-height: min(64svh, 640px);
    place-items: center;
    color: var(--ink-soft);
    font-weight: 650;
}

.watch-loading[hidden],
.watch-detail[hidden],
.watch-error[hidden] {
    display: none;
}

.watch-detail {
    width: min(100%, calc((100svh - 180px) * 1.7778));
    max-width: var(--shell);
    margin: 0 auto;
}

.watch-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: var(--white);
    background: var(--midnight);
    border-radius: 16px;
    box-shadow: 0 24px 52px rgba(20, 47, 66, 0.2);
}

.watch-frame,
.watch-external-player,
.watch-external-player img {
    display: block;
    width: 100%;
    height: 100%;
}

.watch-frame {
    border: 0;
}

.watch-external-player {
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.watch-external-player img {
    object-fit: cover;
    transition: transform 360ms ease;
}

.watch-external-player:hover img {
    transform: scale(1.018);
}

.watch-play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(72px, 9vw, 104px);
    aspect-ratio: 1;
    place-items: center;
    color: var(--white);
    background: var(--deep-water);
    border-radius: 50%;
    box-shadow: 0 18px 36px rgba(20, 47, 66, 0.28);
    transform: translate(-50%, -50%);
}

.watch-play-mark svg {
    width: 32%;
    margin-left: 5%;
}

.watch-provider-note {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.65rem 0.9rem;
    background: rgba(20, 47, 66, 0.92);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 750;
}

.watch-information {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
    padding: clamp(2rem, 4vw, 3.25rem) 0;
    border-bottom: 1px solid var(--line);
}

.watch-heading h1,
.watch-error h1 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(2rem, 4.3vw, 4.25rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.watch-speaker {
    margin: 0.9rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    font-weight: 650;
}

.watch-actions {
    display: grid;
    grid-template-columns: minmax(180px, 1fr);
    gap: 0.75rem;
    width: min(100%, 260px);
}

.watch-actions .action-link {
    width: 100%;
}

.watch-share {
    appearance: none;
}

.watch-share svg {
    width: 20px;
}

.watch-share-status {
    min-height: 1.3rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
    text-align: center;
}

.watch-dial {
    margin: 0;
    padding-top: 1.5rem;
    border-top: 0;
}

.watch-dial[hidden] {
    display: none;
}

.watch-error {
    display: grid;
    justify-items: start;
    max-width: 720px;
    min-height: min(62svh, 620px);
    align-content: center;
}

.watch-error > p:not(.hero-kicker) {
    max-width: 52ch;
    margin: 1.25rem 0 2rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.donation-hero .hero-shell {
    min-height: 430px;
}

.donation-hero h1 {
    max-width: 9ch;
}

.donation-callout {
    display: block;
}

.donation-callout p {
    max-width: 31rem;
    margin: 0;
    color: #385e75;
    line-height: 1.72;
}

.donation-main {
    background: var(--white);
}

.donation-shell {
    display: grid;
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter);
}

.donation-copy {
    position: sticky;
    top: 116px;
}

.donation-copy > p {
    margin-top: 1.25rem;
}

.donation-note {
    display: none;
}

.form-surface {
    overflow: hidden;
    background: var(--mist);
    border-radius: 16px;
    box-shadow: 0 22px 46px rgba(20, 47, 66, 0.13);
}

.form-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: var(--deep-water);
    background: var(--morning);
    border-bottom: 1px solid var(--line);
}

.form-toolbar p {
    margin: 0;
    font-size: 0.83rem;
    font-weight: 700;
}

.form-fallback {
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
}

.google-form {
    display: block;
    width: 100%;
    min-height: 1760px;
    background: var(--white);
    border: 0;
}

.contact-page-main {
    background: var(--mist);
}

.contact-page {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 157px);
    overflow: hidden;
    background: linear-gradient(180deg, #dbeef7 0%, #edf7fb 68%, var(--mist) 100%);
}

.contact-page::before,
.contact-page::after {
    position: absolute;
    z-index: -1;
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
}

.contact-page::before {
    top: -17rem;
    right: -9rem;
    width: clamp(28rem, 46vw, 42rem);
    background: rgba(255, 255, 255, 0.68);
}

.contact-page::after {
    bottom: -20rem;
    left: -13rem;
    width: clamp(28rem, 42vw, 39rem);
    background: rgba(111, 159, 189, 0.18);
}

.contact-page-shell {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
    width: min(100%, var(--shell));
    min-height: calc(100svh - 157px);
    margin: 0 auto;
    padding: clamp(4rem, 10vw, 8rem) var(--page-gutter);
    text-align: center;
}

.contact-details {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    width: min(100%, 560px);
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
    border-top: 1px solid rgba(111, 159, 189, 0.42);
}

.contact-details p {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 600;
}

.contact-number {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--deep-water);
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-decoration-color: var(--harbor);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.contact-number:hover {
    color: var(--midnight);
}

.contact-form-option {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    width: min(100%, 620px);
}

.contact-form-option small {
    margin: 0;
}

.contact-form-option small {
    max-width: 46ch;
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.55;
}

.contact-form-option small a {
    color: var(--deep-water);
    font-weight: 650;
    text-underline-offset: 0.16em;
}

.contact-form-option small a:hover {
    color: var(--midnight);
}

.contact-form-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: min(100%, 420px);
    min-height: 68px;
    margin-bottom: 0.15rem;
    padding: 1rem 2rem;
    color: var(--white);
    background: var(--deep-water);
    border-radius: 999px;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(20, 47, 66, 0.14);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-form-link:hover {
    background: var(--midnight);
    box-shadow: 0 14px 26px rgba(20, 47, 66, 0.2);
    transform: translateY(-2px);
}

.faq-hero .hero-shell {
    min-height: 430px;
}

.faq-hero h1 {
    max-width: 13ch;
}

.faq-main {
    background: var(--mist);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter);
}

.faq-heading {
    position: sticky;
    top: 116px;
}

.faq-heading h2 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.04;
    text-wrap: balance;
}

.faq-heading a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: var(--deep-water);
    font-size: 0.9rem;
    font-weight: 750;
    text-underline-offset: 0.25em;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.4rem;
    align-items: center;
    gap: 1.25rem;
    min-height: 92px;
    padding: 1.35rem 0;
    color: var(--midnight);
    font-size: clamp(1.08rem, 2vw, 1.4rem);
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary::after {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--deep-water);
    background: var(--morning);
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "→";
    transition: transform 180ms ease;
}

.faq-item[open] summary::after {
    transform: rotate(90deg);
}

.faq-item p {
    max-width: 62ch;
    margin: -0.35rem 3.65rem 1.75rem 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.faq-item p a {
    color: var(--deep-water);
    font-weight: 750;
    text-underline-offset: 0.25em;
}

.faq-item p a:hover {
    color: var(--midnight);
}

.site-footer {
    color: #dcecf4;
    background: var(--deep-water);
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding: 2rem var(--page-gutter);
}

.site-footer p {
    margin: 0;
    font-size: 0.82rem;
}

.site-footer a {
    text-underline-offset: 3px;
}

@media (min-width: 1024px) {
    .content-page .resource-band {
        position: sticky;
        z-index: 20;
        top: 76px;
    }

    .content-page .library-shell {
        display: grid;
        grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
        align-items: start;
        gap: clamp(3.5rem, 6vw, 6rem);
    }

    .content-page .library-heading {
        position: sticky;
        top: 164px;
        display: block;
        margin: 0;
    }

    .content-page .library-heading h2 {
        font-size: clamp(2.35rem, 3.6vw, 3.8rem);
    }

    .content-page .library-heading p {
        margin-top: 1.25rem;
    }

    .content-page .resource-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(3.25rem, 5vw, 4.75rem) clamp(1.75rem, 3vw, 2.75rem);
    }

    .content-page .resource {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        align-content: start;
        gap: 1.4rem;
        min-width: 0;
        padding: 1.15rem 0 2.4rem;
        border-top: 1px solid var(--line);
    }

    .content-page .resource.resource--inspiration {
        grid-template-columns: minmax(0, 420px);
        justify-content: center;
    }

    .content-page .resource-visual,
    .content-page .resource-visual.book {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .content-page .resource-visual.book .resource-image {
        padding: 1rem;
    }

    .content-page .resource-visual.inspiration {
        aspect-ratio: 9 / 16;
    }

    .content-page .resource-body {
        min-width: 0;
    }

    .content-page .resource h3 {
        max-width: none;
        font-size: clamp(1.55rem, 2vw, 2.1rem);
    }

    .content-page .resource-actions {
        margin-top: 1.45rem;
    }

    .content-page .dial-details {
        gap: 1.2rem;
        margin-top: 1.3rem;
        padding-top: 1rem;
    }

    .content-page .empty-state {
        grid-column: 2;
    }

    .donation-page-main {
        display: grid;
        grid-template-columns: minmax(390px, 0.78fr) minmax(600px, 1.22fr);
        align-items: start;
    }

    .donation-page .donation-hero {
        position: sticky;
        top: 76px;
        min-height: calc(100svh - 76px);
    }

    .donation-page .donation-hero .hero-shell {
        grid-template-columns: 1fr;
        align-content: center;
        align-items: start;
        gap: 2.35rem;
        width: 100%;
        min-height: calc(100svh - 76px);
        padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5.5rem);
    }

    .donation-page .donation-hero h1 {
        max-width: 8ch;
        font-size: clamp(3.6rem, 5.5vw, 5.5rem);
    }

    .donation-page .donation-callout p {
        max-width: 29rem;
        font-size: 1.05rem;
    }

    .donation-page .donation-main {
        min-width: 0;
    }

    .donation-page .donation-shell {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: min(100%, 780px);
        padding: clamp(4rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5.5rem) 7rem;
    }

    .donation-page .donation-copy {
        position: static;
        max-width: 36rem;
    }

    .donation-page .donation-copy h2 {
        max-width: none;
        font-size: clamp(2.5rem, 3.6vw, 3.7rem);
    }
}

@media (min-width: 821px) {
    body.menu-open {
        overflow: auto;
    }

    .mobile-menu {
        display: none;
    }
}

@media (max-width: 960px) {
    .resource-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .filters {
        justify-content: space-between;
        width: 100%;
    }
}

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

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

    .hero-shell,
    .library-heading,
    .donation-shell,
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        align-items: start;
        min-height: auto;
        padding-top: 5rem;
    }

    .hero-intro {
        max-width: 38rem;
    }

    .resource {
        grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
        gap: 2rem;
    }

    .donation-copy {
        position: static;
    }

    .faq-heading {
        position: static;
    }
}

@media (max-width: 620px) {
    .nav-shell {
        min-height: 70px;
    }

    .wordmark span {
        display: none;
    }

    .mobile-menu {
        top: 70px;
        max-height: calc(100svh - 70px);
    }

    .page-hero h1 {
        max-width: 11ch;
        font-size: clamp(2.45rem, 11.5vw, 3.25rem);
        line-height: 1;
    }

    .hero-shell {
        gap: 1.15rem;
        padding-top: 2.5rem;
        padding-bottom: 2.4rem;
    }

    .hero-kicker {
        margin-bottom: 0.8rem;
        font-size: 0.78rem;
    }

    .hero-intro,
    .donation-callout p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .page-hero::before {
        top: -8rem;
        right: -14rem;
    }

    .resource-band-inner {
        gap: 0.7rem;
        padding-top: 0.9rem;
        padding-bottom: 0.95rem;
    }

    .resource-band-summary {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        width: 100%;
    }

    .filters {
        display: grid;
        gap: 0.55rem;
        justify-content: stretch;
        width: 100%;
    }

    .filter-featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        padding-right: 0;
        border-right: 0;
    }

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

    .filter-button {
        width: 100%;
        min-height: 46px;
        padding-inline: 0.45rem;
        font-size: 0.76rem;
    }

    .filter-button--featured {
        min-height: 50px;
        padding-inline: 0.7rem;
        font-size: 0.8rem;
    }

    .filter-button--quiet {
        padding-inline: 0.35rem;
    }

    .library-shell {
        padding-top: 1.65rem;
        padding-bottom: 3.5rem;
    }

    .library-heading {
        display: block;
        margin-bottom: 1.3rem;
    }

    .library-heading h2 {
        font-size: 1.65rem;
    }

    .library-heading p {
        display: none;
    }

    .library-section.podcast-mode .library-shell {
        min-height: 0;
        padding-top: 1.65rem;
    }

    .library-section.podcast-mode .empty-state {
        min-height: 0;
        padding: 1.8rem 0 3.5rem;
        text-align: center;
    }

    .podcast-preview {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.65rem;
    }

    .podcast-artwork {
        width: min(82vw, 280px);
    }

    .podcast-preview-copy {
        display: grid;
        justify-items: center;
    }

    .podcast-preview-copy .podcast-label {
        margin-bottom: 0.65rem;
    }

    .library-section.podcast-mode .podcast-preview-copy h3 {
        max-width: 11ch;
        font-size: clamp(2.15rem, 11vw, 3.1rem);
    }

    .podcast-preview-copy > p:last-child {
        margin-top: 0.8rem;
    }

    .resource {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem 0 2.6rem;
    }

    .resource-visual {
        min-height: 0;
        border-radius: 14px;
    }

    .resource-visual.book {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .resource-visual.book .resource-image {
        padding: 0.8rem;
    }

    .resource-visual.inspiration {
        aspect-ratio: 9 / 16;
    }

    .resource h3 {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }

    .resource-type {
        margin-bottom: 0.55rem;
    }

    .resource-speaker {
        margin-top: 0.55rem;
    }

    .resource-actions {
        display: grid;
        margin-top: 1.3rem;
    }

    .resource-actions--video {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .action-link {
        width: 100%;
        min-height: 54px;
    }

    .resource-share-button {
        width: auto;
        min-height: 54px;
        padding-inline: 0.9rem;
    }

    .dial-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .donation-shell {
        gap: 1.25rem;
        padding: 1.5rem 0 0;
    }

    .donation-copy {
        padding: 0 var(--page-gutter);
    }

    .donation-copy h2 {
        font-size: 1.7rem;
    }

    .donation-copy > p {
        margin-top: 0.7rem;
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .donation-hero .hero-shell {
        min-height: 0;
    }

    .donation-hero h1 {
        max-width: 10ch;
    }

    .contact-page,
    .contact-page-shell {
        min-height: calc(100svh - 165px);
    }

    .contact-page-shell {
        gap: 1.7rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .faq-hero .hero-shell {
        min-height: 0;
    }

    .faq-shell {
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }

    .faq-heading h2 {
        font-size: 1.85rem;
    }

    .faq-heading a {
        min-height: 48px;
        margin-top: 0.85rem;
    }

    .faq-item summary {
        grid-template-columns: minmax(0, 1fr) 2.25rem;
        gap: 1rem;
        min-height: 82px;
        padding: 1.1rem 0;
        font-size: 1.03rem;
    }

    .faq-item summary::after {
        width: 2.25rem;
        height: 2.25rem;
    }

    .faq-item p {
        margin-right: 3.25rem;
        margin-bottom: 1.45rem;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .form-surface {
        border-radius: 0;
        box-shadow: none;
    }

    .form-toolbar {
        align-items: center;
        flex-direction: row;
        padding: 0.8rem var(--page-gutter);
    }

    .form-toolbar p {
        display: none;
    }

    .form-fallback {
        width: 100%;
        min-height: 46px;
    }

    .google-form {
        min-height: 2140px;
    }

    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }
}

@media (max-width: 700px) {
    .watch-shell {
        padding-top: 0.8rem;
        padding-bottom: 4rem;
    }

    .watch-back {
        margin-bottom: 0.7rem;
        font-size: 0.84rem;
    }

    .watch-detail {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .watch-media {
        order: 2;
        border-radius: 12px;
        box-shadow: 0 16px 34px rgba(20, 47, 66, 0.16);
    }

    .watch-information {
        display: contents;
    }

    .watch-heading {
        order: 1;
        padding-bottom: 1.25rem;
    }

    .watch-heading h1,
    .watch-error h1 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .watch-actions {
        order: 3;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-top: 1.35rem;
        padding-bottom: 1.8rem;
        border-bottom: 1px solid var(--line);
    }

    .watch-actions .action-link {
        min-width: 0;
        min-height: 52px;
        padding-inline: 0.8rem;
        font-size: 0.86rem;
    }

    .watch-share-status {
        grid-column: 1 / -1;
    }

    .watch-provider-note {
        right: 0.7rem;
        bottom: 0.7rem;
    }

    .watch-dial {
        order: 4;
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
