@charset "UTF-8";

:root {
  --blue: #202d3a;
  --blue-deep: #111c27;
  --ivory: #e9eced;
  --paper: #f4f5f6;
  --sky: #2f6b90;
  --olive: #6c755e;
  --moss: #99a28c;
  --coffee: #4a3b32;
  --muted: #637079;
  --line: rgba(32, 45, 58, .16);
  --shell: min(100% - 112px, 1480px);
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "EB Garamond", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--blue); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.nowrap { white-space: nowrap; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; }
::selection { background: var(--moss); color: var(--blue-deep); }
.shell { width: var(--shell); margin-inline: auto; }
:where(.shell, [class*="__grid"], .section-head) > * { min-width: 0; max-width: 100%; }
.section-pad { padding-block: clamp(88px, 11vw, 180px); }
.section--ivory { background: var(--ivory); }
.section--blue { background: var(--blue); color: var(--ivory); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 200; padding: 14px 20px; background: var(--moss); color: var(--blue); }
.skip-link:focus { top: 20px; }

/* Navigation */
.site-header { position: absolute; z-index: 40; top: 0; left: 0; right: 0; color: var(--ivory); transition: transform .42s var(--ease); }
.site-header.is-over-footer { transform: translateY(-110%); pointer-events: none; }
.site-header::before { content: ""; position: absolute; inset: 0; background: var(--blue-deep); opacity: .92; pointer-events: none; }
.site-header--hero::before { opacity: 0; transition: opacity .5s; }
.site-header.is-scrolled { position: fixed; }
.site-header.is-scrolled::before { opacity: .97; }
.site-header__inner { position: relative; z-index: 2; height: 102px; display: flex; align-items: center; gap: 40px; }
.site-header__inner::after { content: ""; position: absolute; left: 180px; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.22); transition: left .4s var(--ease); }
.brand { display: block; width: 171px; height: 133px; flex: 0 0 auto; align-self: flex-start; margin-top: 12px; position: relative; z-index: 2; transition: width .4s var(--ease), height .4s var(--ease), margin-top .4s var(--ease); }
.brand__image { width: 100%; height: 100%; object-fit: contain; }
.site-header.is-scrolled .brand { width: 115px; height: 88px; margin-top: 7px; }
.site-header.is-scrolled .site-header__inner::after { left: 140px; }
.desktop-nav { display: flex; gap: clamp(14px, 1.65vw, 30px); align-items: center; margin-left: auto; }
.desktop-nav a, .header-cta { font-size: 10px; font-weight: 700; letter-spacing: .095em; text-transform: uppercase; white-space: nowrap; transition: color .25s, transform .35s var(--ease); }
.desktop-nav a { display: inline-block; transform-origin: center; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--moss); }
.desktop-nav a:hover { transform: scale(1.13); }
.header-cta { margin-left: clamp(12px, 2.6vw, 50px); padding: 14px 0 14px 22px; border-left: 1px solid rgba(255,255,255,.3); display: flex; gap: 30px; align-items: center; }
.header-cta:hover { color: var(--moss); transform: scale(1.07); }
.menu-toggle { display: none; position: relative; z-index: 51; width: 44px; height: 44px; margin-left: auto; border: 0; background: none; color: inherit; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; margin: 7px auto; transition: transform .3s, opacity .3s; }
.mobile-menu { position: fixed; inset: 0; z-index: 1; background: var(--blue-deep); color: var(--ivory); padding-top: 120px; opacity: 0; pointer-events: none; transform: translateY(-16px); transition: opacity .3s, transform .4s var(--ease); overflow-y: auto; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu__inner { display: grid; gap: 0; padding-bottom: 48px; }
.mobile-menu__inner > a { border-bottom: 1px solid rgba(255,255,255,.12); padding: 13px 0; font-size: clamp(25px, 6vw, 42px); font-weight: 700; letter-spacing: -.045em; }
.mobile-menu__inner > a:hover { color: var(--moss); }
.mobile-menu__social { display: flex; gap: 25px; padding-top: 28px; color: var(--moss); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.menu-open { overflow: hidden; }
.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Type and controls */
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; line-height: 1.5; }
.eyebrow__rule { display: inline-block; width: 31px; height: 1px; flex: 0 0 auto; background: var(--sky); }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { width: 100%; min-width: 0; font-weight: 700; letter-spacing: -.065em; }
h1, h2, h3 { text-wrap: balance; overflow-wrap: normal; word-break: normal; }
p, blockquote { text-wrap: pretty; }
h1 em, h2 em, h3 em, blockquote em { font-family: var(--serif); font-weight: 400; font-size: 1.28em; letter-spacing: -.035em; color: var(--sky); }
.display-title { font-size: clamp(48px, 6vw, 108px); line-height: .99; margin-bottom: 30px; }
.lead-serif { font-family: var(--serif); font-size: clamp(25px, 2.1vw, 35px); line-height: 1.24; letter-spacing: -.015em; }
p { line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; min-height: 58px; padding: 6px 0 12px; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; background: transparent; text-align: left; font-size: 12px; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; line-height: 1.3; transition: color .3s, box-shadow .3s; }
.button:hover { box-shadow: inset 0 -1px 0 currentColor; }
.button > span:last-child { width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: 18px; font-weight: 400; line-height: 1; transition: transform .35s var(--ease); }
.button:hover > span:last-child { transform: translate(4px, -4px); }
.button--gold, .button--dark { color: var(--sky); }
.button--gold:hover, .button--dark:hover { color: var(--blue); }
.button--moss { color: var(--moss); }
.button--moss:hover { color: var(--ivory); }
.button--outline { color: var(--ivory); }
.button--outline:hover { color: var(--moss); }
.button--outline-dark { color: var(--blue); }
.button--outline-dark:hover { color: var(--sky); }
.hero .button--gold, .music-panel .button--gold, .video-invite .button--gold, .final-cta .button--gold, .section--blue .button--gold { color: var(--moss); }
.hero .button--gold:hover, .music-panel .button--gold:hover, .video-invite .button--gold:hover, .final-cta .button--gold:hover, .section--blue .button--gold:hover { color: var(--ivory); }
.text-link { display: inline-flex; align-items: center; gap: 35px; border-bottom: 1px solid currentColor; padding-bottom: 10px; margin-top: 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; transition: gap .3s; }
.text-link:hover { gap: 50px; }
.text-link span { font-size: 18px; font-weight: 400; }
.prose { max-width: 680px; }
.prose p { font-family: var(--serif); font-size: clamp(24px, 2vw, 31px); line-height: 1.35; }
.prose p + p { font-size: clamp(20px, 1.55vw, 24px); line-height: 1.5; margin-top: 24px; }
.narrow-content { max-width: 900px; }
.narrow-content > p:not(.eyebrow) { max-width: 770px; }

/* Photographic language */
.photo { position: relative; overflow: hidden; isolation: isolate; background: #46515a; }
.photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.77) contrast(1.04) brightness(.95); transform: scale(1.005); transition: transform 1.2s var(--ease); }
.photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(132deg, rgba(32,45,58,.12), rgba(79,90,99,.045) 52%, rgba(48,39,32,.12)); mix-blend-mode: multiply; }
.photo:hover img, a:hover > .photo img { transform: scale(1.045); }
.photo--bw img { filter: grayscale(1) contrast(1.05); }

/* Cinematic home hero */
.hero { position: relative; min-height: max(760px, 100svh); background: var(--blue-deep); color: #fff; isolation: isolate; overflow: hidden; }
.hero__poster, .hero__video, .hero__shade, .hero__grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster { background-image: url("/assets/images/hero-poster-3.jpg"); background-size: cover; background-position: center; }
.hero__video { object-fit: cover; object-position: center; opacity: 0; transition: opacity .9s ease; }
.hero__video.is-ready { opacity: 1; }
@media (min-width: 701px) {
  .hero__poster, .hero__video { transform: scale(1.16); transform-origin: left center; }
}
@media (min-width: 701px) and (max-width: 980px) {
  .hero__poster, .hero__video { transform: scale(1.23); }
}
@keyframes hero-mobile-horizontal-track {
  0%, 100% { object-position: 64% center; }
  35% { object-position: 71% center; }
  70% { object-position: 67% center; }
}
.hero__shade { background: linear-gradient(90deg,rgba(21,38,55,.84) 0%,rgba(21,38,55,.75) 32%,rgba(21,38,55,.46) 61%,rgba(21,38,55,.22) 100%),linear-gradient(0deg,rgba(16,28,39,.30),transparent 32%,transparent 76%,rgba(12,23,34,.13)); }
.hero__grain { background: url("/assets/grain.svg"); opacity: .11; mix-blend-mode: screen; pointer-events: none; }
.hero__content { position: relative; z-index: 2; min-height: max(760px, 100svh); display: flex; align-items: center; padding-top: 165px; padding-bottom: 100px; }
.hero__copy { width: min(900px, 68%); }
.hero__title { position: relative; height: clamp(265px, 20vw, 330px); margin-bottom: 16px; font-size: clamp(62px, 6.1vw, 108px); line-height: .92; }
.hero__phrase { position: absolute; top: 0; left: 0; width: 100%; display: block; visibility: hidden; opacity: 0; transform-origin: left center; }
.hero__phrase-line { display: block; }
.hero__phrase--one .hero__phrase-line { font-size: .84em; font-weight: 800; text-transform: uppercase; white-space: nowrap; letter-spacing: -.055em; }
.hero__phrase--one em { display: block; margin-top: .04em; line-height: .78; }
.hero__phrase--two { top: -8%; left: 5%; width: 95%; }
.hero__phrase--three { top: 5%; left: 1%; width: 99%; font-size: .9em; }
.hero__phrase.is-active { visibility: visible; animation: hero-phrase-progress var(--hero-phase-duration, 6s) linear both; }
.hero__phrase--one.is-active { animation-name: hero-phrase-first; }
.hero__phrase.is-leaving { visibility: visible; animation: hero-phrase-leave .65s ease both; }
.hero__title em { color: var(--moss); font-size: 1.24em; }
.hero__phrase--one em { font-size: 1.55em; }
@keyframes hero-phrase-first { from { opacity: 1; filter: blur(0); transform: scale(1); } to { opacity: 1; filter: blur(0); transform: scale(1.055); } }
@keyframes hero-phrase-progress { 0% { opacity: 0; filter: blur(16px); transform: translateY(24px) scale(.95); } 15% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); } 100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1.065); } }
@keyframes hero-phrase-leave { from { opacity: 1; filter: blur(0); transform: scale(1.065); } to { opacity: 0; filter: blur(18px); transform: scale(1.12); } }
.hero__lead { max-width: 620px; margin-bottom: 30px; font-family: var(--serif); font-size: clamp(21px, 1.7vw, 28px); line-height: 1.3; color: rgba(255,255,255,.91); }
@media (min-width: 701px) and (max-width: 1200px) { .hero__title { height: 280px; } }
@media (min-width: 701px) and (max-width: 980px) { .hero__title { height: 300px; } }
.hero__bottom { position: absolute; z-index: 3; bottom: 35px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 27px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero__progress { width: 150px; height: 1px; background: rgba(255,255,255,.35); }
.hero__progress span { display: block; height: 100%; width: 0; background: var(--moss); }
.hero__bottom button { border: 0; padding: 4px 0; background: none; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero__bottom button span { display: inline-block; margin-left: 5px; color: var(--moss); font-size: 14px; vertical-align: middle; }
.platform-bar { background: #e8ebed; border-bottom: 1px solid var(--line); }
.platform-bar__inner { min-height: 86px; display: flex; align-items: center; gap: clamp(24px, 3.7vw, 76px); }
.platform-bar__inner > span { margin-right: auto; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.platform-bar a { display: inline-flex; align-items: center; gap: 9px; color: #55606a; font-size: clamp(12px, 1.15vw, 17px); font-weight: 800; letter-spacing: -.04em; white-space: nowrap; transition: color .25s var(--ease), transform .25s var(--ease); }
.platform-bar a img { width: 21px; height: 21px; flex: 0 0 auto; opacity: .72; filter: grayscale(1) brightness(.58); transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease); }
.platform-bar a:hover { color: var(--blue); transform: scale(1.055); }
.platform-bar a:hover img { filter: grayscale(0) brightness(1); opacity: 1; transform: scale(1.1); }
.platform-bar--music { border-top: 1px solid rgba(17,28,39,.08); }
.music-platform__arrow { margin-left: 2px; font-size: 14px; font-weight: 500; }

/* Home sections */
.intro-section { background: var(--paper); }
.intro-grid, .biography-grid, .music-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .8fr); gap: clamp(60px, 10vw, 180px); }
.intro-grid h2 { max-width: 750px; }
.intro-grid__copy { padding-top: 54px; }
.intro-grid__copy > p:not(.lead-serif) { max-width: 580px; font-size: 14px; color: #59636c; }
.image-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--blue); color: var(--ivory); }
.image-feature__visual { min-height: 700px; }
.image-feature__visual { order: 2; }
.image-feature__visual img { object-position: 50% 40%; }
.image-feature__visual:hover img { transform: scale(1.1); }
@media (min-width: 701px) { .image-feature__visual { -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); } }
.image-feature__content { order: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(65px, 8vw, 150px); }
.image-feature h2, .church-feature h2, .biography-portrait h2, .video-invite h2, .contact-card h2 { font-size: clamp(54px, 5.5vw, 100px); line-height: .99; }
.image-feature h2 em, .biography-portrait h2 em, .video-invite h2 em { color: var(--moss); }
.image-feature p:not(.eyebrow) { max-width: 480px; font-family: var(--serif); font-size: clamp(23px, 2vw, 31px); line-height: 1.3; }
.image-feature .button { margin-top: 30px; }
.quote-section { background: #2f6b90; color: #fff; }
.quote-grid { position: relative; display: grid; grid-template-columns: 100px minmax(0, 1fr); align-items: start; }
.quote-mark { color: var(--ivory); opacity: .62; font-family: var(--serif); font-size: 170px; line-height: .6; }
.quote-grid blockquote { max-width: 1120px; margin: 0; font-size: clamp(48px, 6vw, 112px); line-height: 1.05; font-weight: 700; letter-spacing: -.065em; }
.quote-grid blockquote em { color: var(--ivory); }
.quote-caption { grid-column: 2; margin-top: 42px; color: var(--moss); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-head { max-width: 850px; margin-bottom: 70px; }
.section-head > p:not(.eyebrow) { max-width: 650px; font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.story-journey { padding-block: clamp(90px, 11vw, 170px) 0; }
.story-journey .section-head { margin-bottom: clamp(50px, 7vw, 110px); }
.story-journey__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(65px, 9vw, 150px); align-items: start; }
.story-journey__visual { position: sticky; top: 7vh; height: 86vh; min-height: 550px; }
.story-journey__frame { position: relative; width: 100%; height: 100%; overflow: hidden; background: #323b42; }
.story-journey__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,28,37,.46), transparent 37%), linear-gradient(140deg, rgba(32,45,58,.1), rgba(74,59,50,.07)); pointer-events: none; }
.story-journey__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; opacity: 0; transform: scale(1.12); transition: opacity .8s ease, transform 1.35s var(--ease); }
.story-journey__frame img:nth-child(2) { object-position: center 35%; }
.story-journey__frame img:nth-child(3) { object-position: center 23%; }
.story-journey__frame img.is-active { opacity: 1; transform: scale(1); }
.story-journey__counter { position: absolute; z-index: 2; bottom: 25px; left: 28px; display: flex; align-items: center; gap: 13px; color: white; font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.story-journey__counter i { display: inline-block; width: 65px; height: 1px; background: rgba(255,255,255,.65); }
.story-chapter { min-height: 85vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-top: 1px solid rgba(32,45,58,.22); padding-block: 90px; opacity: .5; transform: translateY(25px); transition: opacity .65s var(--ease), transform .8s var(--ease); }
.story-chapter.is-active { opacity: 1; transform: translateY(0); }
.story-chapter__number { margin-bottom: 28px; color: var(--olive); font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.story-chapter h3 { max-width: 670px; margin-bottom: 24px; font-size: clamp(46px, 4.4vw, 78px); line-height: .99; }
.story-chapter h3 em { color: var(--sky); }
.story-chapter p { max-width: 520px; font-family: var(--serif); font-size: clamp(23px, 2vw, 32px); line-height: 1.25; }
.story-chapter__mobile-photo { display: none; }
.story-chapter__mobile-photo img { filter: none; }
.story-chapter__mobile-photo::after { display: none; }
.book-feature { background: #d8dcdd; }
.book-feature__grid { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(60px, 8vw, 145px); align-items: center; }
.book-feature__copy .lead-serif { max-width: 720px; margin-bottom: 45px; }
.book-feature__visual { height: auto; min-height: 0; aspect-ratio: 1122 / 1402; box-shadow: 38px 38px 0 rgba(32,45,58,.09); }
.book-feature__visual img { object-position: center 48%; }
.teaching-section { background: var(--paper); }
.teaching-grid { display: grid; grid-template-columns: 1.1fr .7fr; gap: 90px; align-items: end; }
.teaching-grid p:not(.eyebrow) { max-width: 580px; font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.teaching-links { padding-bottom: 6px; }
.teaching-links a { display: grid; grid-template-columns: 42px 1fr auto; gap: 20px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); transition: color .3s, padding-left .4s var(--ease), background .3s; }
.teaching-links a:first-child { border-top: 1px solid var(--line); }
.teaching-links a span:first-child { color: var(--olive); font-size: 11px; font-weight: 800; }
.teaching-links a strong { font-size: clamp(24px, 2.4vw, 42px); letter-spacing: -.06em; }
.teaching-links a span:last-child { font-size: 22px; transition: transform .3s; }
.teaching-links a:hover { color: var(--sky); padding-left: 14px; background: rgba(47,107,144,.055); }
.teaching-links a:hover span:last-child { transform: translate(4px, -4px); }
.teaching-section h2 em { color: var(--sky); }
.church-feature { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); min-height: 740px; background: #d8dcdd; color: var(--blue); }
.church-feature.section-pad { padding: 0; }
.church-feature__image { min-height: 680px; }
.church-feature__image { order: 2; -webkit-mask-image: linear-gradient(90deg, transparent, #000 26%); mask-image: linear-gradient(90deg, transparent, #000 26%); }
.church-feature__image img { object-position: center 30%; }
.church-feature__content { order: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(88px, 11vw, 180px) clamp(36px, 6vw, 110px); }
.church-feature h2 { font-size: clamp(48px, 6vw, 108px); }
.church-feature h2 em { color: var(--sky); }
.church-feature .button { color: var(--blue); }
.church-feature .button:hover { color: var(--sky); }
.church-feature__content > p:not(.eyebrow) { max-width: 500px; font-family: var(--serif); font-size: clamp(23px, 1.8vw, 30px); line-height: 1.35; }
.church-feature .button { margin-top: 25px; }
.final-cta { background: var(--blue); color: var(--ivory); }
.final-cta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-size: clamp(54px, 6.9vw, 118px); line-height: .99; margin-bottom: 25px; }
.final-cta h2 em { color: var(--moss); }
.final-cta__inner > p:not(.eyebrow) { max-width: 570px; font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.final-cta .button { margin-top: 28px; }

/* Inner pages */
.inner-hero { min-height: 650px; position: relative; color: var(--ivory); display: flex; align-items: flex-end; background: var(--blue-deep); overflow: hidden; }
.inner-hero__media, .inner-hero__photo, .inner-hero__shade { position: absolute; inset: 0; }
.inner-hero__media, .inner-hero__photo { left: 48%; width: 52%; }
.inner-hero__photo img { object-position: 55% 36%; }
.inner-hero__shade { background: linear-gradient(90deg, rgba(15,27,38,1) 0%, rgba(15,27,38,.98) 43%, rgba(16,30,42,.42) 63%, rgba(17,29,39,.08) 100%); }
.inner-hero__content { z-index: 2; position: relative; padding-top: 210px; padding-bottom: 85px; }
.inner-hero h1 { max-width: min(520px, 43vw); font-size: clamp(56px, 6vw, 100px); line-height: .95; margin-bottom: 25px; }
.inner-hero h1 em { color: var(--moss); }
.inner-hero p:not(.eyebrow) { max-width: min(500px, 43vw); font-family: var(--serif); font-size: clamp(24px, 2.1vw, 34px); line-height: 1.28; }
.inner-hero--light { background: #b2aaa7; color: var(--blue-deep); }
.inner-hero--light .inner-hero__photo { background: #b2aaa7; }
.inner-hero--light .inner-hero__photo img { filter: saturate(.8) contrast(.99); object-position: 55% 36%; }
.inner-hero--light .inner-hero__photo::after { display: none; }
.inner-hero--light .inner-hero__shade { background: linear-gradient(90deg, #b2aaa7 0%, #b2aaa7 44%, rgba(178,170,167,.94) 51%, rgba(178,170,167,.15) 72%, transparent 100%); }
.inner-hero--light h1 em { color: var(--coffee); }
.inner-hero--history { min-height: clamp(700px, 82svh, 850px); background: #182a35; }
.inner-hero--history .inner-hero__media { left: 0; width: 100%; }
.inner-hero--history .inner-hero__photo img { filter: none; object-position: 50% 46%; }
.inner-hero--history .inner-hero__photo::after { display: none; }
.inner-hero--history .inner-hero__shade { background: linear-gradient(90deg,rgba(24,42,53,.96) 0%,rgba(24,42,53,.82) 29%,rgba(24,42,53,.37) 55%,rgba(24,42,53,.07) 83%); }
.inner-hero--history .inner-hero__content { padding-bottom: clamp(85px, 10vh, 125px); }
.inner-hero--history p:not(.eyebrow) { max-width: min(450px, 38vw); }
.inner-hero--history h1 em { color: var(--moss); }
.inner-hero--music { min-height: clamp(700px, 84svh, 800px); background: #071d26; }
.inner-hero--music .inner-hero__media { left: 0; width: 100%; background: #071d26 url('/assets/images/music-hero-cropped.jpg') center / cover no-repeat; }
.inner-hero--music .inner-hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.inner-hero--music .inner-hero__photo img { object-position: center 54%; filter: none; transform-origin: 50% 54%; }
.inner-hero--music .inner-hero__photo::after { display: none; }
.inner-hero--music .inner-hero__shade { background: linear-gradient(90deg,rgba(5,19,27,.82) 0%,rgba(5,19,27,.57) 34%,rgba(5,19,27,.22) 66%,rgba(5,19,27,.10) 100%),linear-gradient(0deg,rgba(5,19,27,.34),transparent 55%); }
.inner-hero--music .inner-hero__content { padding-bottom: clamp(70px, 9vh, 105px); }
.inner-hero--music h1 { max-width: min(790px, 66vw); font-size: clamp(48px, 5.2vw, 84px); line-height: .92; }
.inner-hero--music p:not(.eyebrow) { max-width: 680px; font-size: clamp(20px, 1.65vw, 27px); }
.inner-hero--music h1 em { color: var(--moss); font-size: 1.14em; }
@keyframes music-ken-burns { from { transform: scale(1.02); } to { transform: scale(1.17); } }
@media (prefers-reduced-motion: no-preference) { .inner-hero--music .inner-hero__photo img { animation: music-ken-burns 25s ease-in-out infinite alternate; } }
.inner-hero--courses { background: #4b4b51; }
.inner-hero--courses h1 em { color: var(--moss); }
.inner-hero--academy { min-height: clamp(720px,92svh,920px); background: #32151f; }
.inner-hero--academy .inner-hero__media { left: 0; width: 100%; }
.inner-hero--academy .inner-hero__photo img { object-position: center 48%; filter: saturate(.92) contrast(1.04) brightness(.9); }
.inner-hero--academy .inner-hero__photo::after { display: none; }
.inner-hero--academy .inner-hero__shade { background: linear-gradient(90deg,rgba(22,15,24,.9) 0%,rgba(22,15,24,.66) 38%,rgba(22,15,24,.16) 76%),linear-gradient(0deg,rgba(18,14,22,.7),transparent 52%); }
.inner-hero--academy .inner-hero__content { padding-bottom: clamp(80px,10vh,130px); }
.inner-hero--academy h1 { max-width: min(960px,72vw); font-size: clamp(54px,6vw,100px); }
.inner-hero--academy h1 em { color: #e8b0a1; font-size: 1.08em; }
.inner-hero--academy p:not(.eyebrow) { max-width: 700px; font-size: clamp(21px,1.7vw,28px); }
.inner-hero--mentorship { background: #bcc0c7; color: var(--blue-deep); }
.inner-hero--mentorship h1 em { color: var(--sky); }
.inner-hero--book { background: var(--coffee); }
.inner-hero--book h1 em { color: var(--moss); }
.inner-hero--products { background: #aeb8ca; color: var(--blue-deep); }
.inner-hero--products h1 em { color: var(--sky); }
.inner-hero--agenda { background: #30383d; }
.inner-hero--agenda h1 em { color: var(--moss); }
.inner-hero--stories { background: #56636b; }
.inner-hero--stories h1 em { color: var(--moss); }
.inner-hero--contact { min-height: clamp(720px, 90svh, 920px); background: var(--blue-deep); }
.inner-hero--contact .inner-hero__media { left: 0; width: 100%; }
.inner-hero--contact .inner-hero__photo img { filter: saturate(.88) contrast(1.05) brightness(.9); object-position: center 56%; }
.inner-hero--contact .inner-hero__photo::after { display: none; }
.inner-hero--contact .inner-hero__shade { background: linear-gradient(90deg,rgba(10,25,35,.93) 0%,rgba(10,25,35,.72) 36%,rgba(10,25,35,.22) 70%,rgba(10,25,35,.08) 100%),linear-gradient(0deg,rgba(10,25,35,.58),transparent 54%); }
.inner-hero--contact .inner-hero__content { padding-bottom: clamp(190px,22vh,240px); }
.inner-hero--contact h1 { max-width: min(900px,75vw); font-size: clamp(62px,7vw,116px); }
.inner-hero--contact p:not(.eyebrow) { max-width: 590px; }
.inner-hero--contact h1 em { display: block; color: var(--moss); font-size: 1.34em; line-height: .78; }
.inner-hero--church { min-height: min(900px, 100svh); background: var(--blue-deep); }
.inner-hero--church .inner-hero__media { left: 0; width: 100%; }
.inner-hero--church .inner-hero__photo img { object-position: center 57%; }
.inner-hero--church .inner-hero__shade { background: linear-gradient(90deg,rgba(11,22,31,.91),rgba(11,22,31,.65) 45%,rgba(11,22,31,.27) 100%),linear-gradient(0deg,rgba(11,22,31,.72),transparent 52%); }
.inner-hero--church .inner-hero__content { padding-bottom: clamp(85px, 10vh, 135px); }
.inner-hero--church h1 { max-width: min(840px, 70vw); font-size: clamp(66px, 7.7vw, 128px); }
.inner-hero--church h1 em { color: var(--moss); }
.inner-hero--church p:not(.eyebrow) { max-width: 600px; }
.inner-hero--church .button { margin-top: 22px; }
.church-hero__mark { display: block; width: min(410px,44vw); height: auto; margin-bottom: 30px; mix-blend-mode: screen; }
@keyframes church-ken-burns { from { transform: scale(1); } to { transform: scale(1.14) translate(-1.5%, -1%); } }
@media (prefers-reduced-motion: no-preference) { .inner-hero--church .inner-hero__photo img { animation: church-ken-burns 24s ease-in-out infinite alternate; } }
.church-story { background: var(--paper); }
.church-story { scroll-margin-top: 90px; }
.church-story__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .82fr); gap: clamp(60px, 9vw, 150px); align-items: center; }
.church-story__copy > p:not(.eyebrow) { max-width: 690px; font-family: var(--serif); font-size: clamp(23px, 1.9vw, 31px); line-height: 1.35; }
.church-story__copy > p.lead-serif { font-size: clamp(28px, 2.4vw, 37px); }
.church-story__photo { height: min(68vw, 800px); }
.church-story__photo img { object-position: 48% center; }
.church-panorama { position: relative; min-height: min(75vw, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--blue-deep); color: var(--ivory); }
.church-panorama__photo { position: absolute; inset: 0; }
.church-panorama__photo img { object-position: center 55%; }
.church-panorama::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,24,33,.84), rgba(13,24,33,.07) 66%); }
.church-panorama__caption { z-index: 1; position: relative; padding-bottom: clamp(65px, 7vw, 115px); }
.church-panorama__caption span { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--moss); }
.church-panorama__caption p { max-width: 1020px; margin: 17px 0 0; font-size: clamp(42px, 5.8vw, 96px); font-weight: 700; line-height: 1; letter-spacing: -.06em; }
.church-panorama__caption em { color: var(--moss); }
.church-visit { background: #d8dcdd; }
.church-visit__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); gap: clamp(65px, 9vw, 150px); align-items: center; }
.church-visit__photo { min-height: 670px; height: min(66vw, 850px); }
.church-visit__photo img { object-position: center; }
.church-visit__copy > p:not(.eyebrow) { max-width: 610px; font-family: var(--serif); font-size: clamp(24px, 2vw, 32px); line-height: 1.34; }
.church-visit__details { display: grid; gap: 0; border-top: 1px solid var(--line); margin-block: 40px 25px; }
.church-visit__details > div { display: grid; grid-template-columns: 135px 1fr; gap: 25px; border-bottom: 1px solid var(--line); padding-block: 22px; }
.church-visit__details dt { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.church-visit__details dd { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.24; }
.church-visit__copy > p.church-visit__note { font-family: var(--sans); font-size: 13px; font-weight: 500; line-height: 1.5; }
.inner-hero--invites { background: var(--blue); }
.inner-hero--invites h1 em { color: var(--moss); }
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) { color: var(--blue-deep); }
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled)::before { opacity: 0; }
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) .site-header__inner::after { background: rgba(17,28,39,.32); }
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) .header-cta { border-left-color: rgba(17,28,39,.32); }
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) .desktop-nav a:hover,
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) .desktop-nav a[aria-current="page"],
body:is([data-page="livro"],[data-page="conteudos"],[data-page="mentoria"],[data-page="produtos"]) .site-header:not(.is-scrolled) .header-cta:hover { color: var(--coffee); }
body:is([data-page="historia"],[data-page="contato"],[data-page="igreja"],[data-page="convites"]) .site-header:not(.is-scrolled)::before { opacity: 0; }

@media (min-width: 701px) {
  .inner-hero--history .inner-hero__media { left: 0; width: 100%; }
  .inner-hero--courses { min-height: 720px; }
  .inner-hero--courses .inner-hero__media { left: 58%; width: 33%; top: 135px; bottom: 0; }
  .inner-hero--courses .inner-hero__photo img { object-position: center 24%; }
  .inner-hero--courses .inner-hero__shade { background: none; }
  .inner-hero--courses h1 { max-width: 600px; font-size: clamp(60px,5.4vw,92px); }
  .inner-hero--mentorship .inner-hero__media { left: 0; width: 49%; }
  .inner-hero--mentorship .inner-hero__photo img { object-position: 50% 25%; filter: saturate(.74) contrast(1.03); }
  .inner-hero--mentorship .inner-hero__shade { background: linear-gradient(90deg,transparent 0%,rgba(188,192,199,.12) 39%,#bcc0c7 54%,#bcc0c7 100%); }
  .inner-hero--mentorship .inner-hero__content { padding-left: 51%; }
  .inner-hero--mentorship h1 { max-width: 570px; font-size: clamp(58px,5vw,84px); }
  .inner-hero--mentorship p:not(.eyebrow) { max-width: 510px; }
  .inner-hero--book { min-height: 720px; }
  .inner-hero--book .inner-hero__media { left: 48%; width: 47%; top: 138px; bottom: 0; }
  .inner-hero--book .inner-hero__photo img { object-position: 50% 22%; filter: saturate(.74) sepia(.12); }
  .inner-hero--book .inner-hero__shade { background: none; }
  .inner-hero--book h1 { max-width: 620px; }
  .inner-hero--products { min-height: 690px; }
  .inner-hero--products .inner-hero__media { left: 43%; width: 57%; }
  .inner-hero--products .inner-hero__photo img { object-position: 50% 45%; filter: saturate(.8) contrast(1.01); }
  .inner-hero--products .inner-hero__shade { background: linear-gradient(90deg,#aeb8ca 0%,rgba(174,184,202,.98) 39%,rgba(174,184,202,.46) 61%,transparent 100%); }
  .inner-hero--agenda { min-height: 760px; }
  .inner-hero--agenda .inner-hero__media { left: 0; width: 100%; }
  .inner-hero--agenda .inner-hero__photo img { object-position: center 45%; filter: grayscale(1) contrast(1.12) brightness(.74); }
  .inner-hero--agenda .inner-hero__shade { background: linear-gradient(90deg,rgba(32,42,49,.93),rgba(32,42,49,.7) 37%,transparent 75%),linear-gradient(0deg,rgba(32,42,49,.72),transparent 65%); }
  .inner-hero--agenda .inner-hero__content { padding-bottom: 105px; }
  .inner-hero--stories .inner-hero__media { left: 59%; width: 32%; top: 144px; bottom: 0; }
  .inner-hero--stories .inner-hero__photo img { object-position: center 19%; }
  .inner-hero--stories .inner-hero__shade { background: none; }
  .inner-hero--stories h1 { max-width: 660px; font-size: clamp(58px,5vw,86px); }
  .inner-hero--invites { min-height: 735px; }
  .inner-hero--invites .inner-hero__media { left: 0; width: 48%; }
  .inner-hero--invites .inner-hero__photo img { object-position: center 35%; filter: saturate(.7) contrast(1.05); }
  .inner-hero--invites .inner-hero__shade { background: linear-gradient(90deg,transparent 0%,rgba(32,45,58,.22) 39%,#202d3a 55%,#202d3a 100%); }
  .inner-hero--invites .inner-hero__content { padding-left: 53%; }
  .inner-hero--invites h1 { max-width: 590px; font-size: clamp(58px,4.8vw,84px); }
}
.full-image { background: var(--blue-deep); color: var(--ivory); }
.full-image__visual { height: min(63vw, 900px); min-height: 470px; }
.full-image__visual img { object-position: center; }
.full-image__caption { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; color: var(--moss); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.biography-portrait__grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(60px, 9vw, 160px); align-items: center; }
.biography-portrait__visual { height: 700px; }
.family-slideshow { position: relative; overflow: hidden; background: #6f665d; }
.family-slideshow__slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.035); transform-origin: center top; transition: opacity 1.15s var(--ease), visibility 1.15s, transform 7s ease-out; }
.family-slideshow__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.family-slideshow__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.family-slideshow__slide:first-child img { object-position: center 42%; }
.family-slideshow__progress { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.family-slideshow__progress span { height: 2px; background: rgba(255,255,255,.38); transition: background .45s ease; }
.family-slideshow__progress span.is-active { background: var(--ivory); }
.history-family { position: relative; height: min(66vw, 900px); min-height: 560px; background: var(--blue-deep); color: var(--ivory); }
.history-family__slideshow { width: 100%; height: 100%; }
.history-family__slideshow::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg,rgba(12,23,34,.58),transparent 42%); pointer-events: none; }
.history-family__slideshow .family-slideshow__slide img { object-position: center top; filter: saturate(.82) contrast(1.02); }
.history-family__caption { position: absolute; z-index: 3; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; gap: 40px; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.history-family__caption .family-slideshow__progress { position: static; width: min(280px, 35vw); }
.biography-portrait__visual > img { object-position: center 42%; }
.biography-portrait__copy p:not(.eyebrow) { max-width: 630px; font-family: var(--serif); font-size: 28px; line-height: 1.35; }
.biography-portrait__copy .button { margin-top: 18px; }
.biography-actions { display: flex; flex-wrap: wrap; gap: 17px 32px; margin-top: 28px; }
.biography-actions .text-link { margin-top: 0; }
.biography-open { appearance: none; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; background: transparent; color: inherit; cursor: pointer; font-family: var(--sans); }
.biography-dialog { width: min(1180px, calc(100vw - 56px)); height: min(90svh, 900px); max-width: none; max-height: none; border: 0; padding: 0; background: var(--paper); color: var(--blue-deep); box-shadow: 0 35px 110px rgba(5,14,21,.46); }
.biography-dialog::backdrop { background: rgba(7,18,26,.8); backdrop-filter: blur(9px); }
.biography-dialog__frame { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.biography-dialog__header { flex: 0 0 auto; min-height: 76px; padding: 16px clamp(24px,4vw,58px); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(233,236,237,.96); }
.biography-dialog__header > span { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.biography-dialog__header button { border: 0; background: transparent; color: var(--blue-deep); display: flex; align-items: center; gap: 15px; cursor: pointer; font: 700 10px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.biography-dialog__header button b { width: 40px; height: 40px; border: 1px solid rgba(17,28,39,.28); border-radius: 50%; display: grid; place-items: center; font: 300 27px/1 var(--sans); transition: color .3s, background .3s, transform .35s var(--ease); }
.biography-dialog__header button:hover b { background: var(--blue-deep); color: var(--ivory); transform: rotate(5deg); }
.biography-dialog__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.biography-dialog__intro { padding: clamp(62px,7vw,105px) clamp(24px,7vw,96px) clamp(55px,6vw,85px); border-bottom: 1px solid var(--line); }
.biography-dialog__intro h2 { max-width: 930px; margin: 23px 0 35px; font-size: clamp(52px,6.8vw,100px); line-height: .94; letter-spacing: -.065em; }
.biography-dialog__intro h2 em { color: var(--sky); font-family: var(--serif); font-size: 1.12em; font-weight: 400; letter-spacing: -.04em; }
.biography-dialog__lead { max-width: 800px; margin: 0; font-family: var(--serif); font-size: clamp(24px,2.2vw,32px); line-height: 1.35; }
.biography-dialog__story { width: min(100% - 48px, 790px); margin: 0 auto; padding: clamp(60px,7vw,105px) 0 clamp(72px,8vw,120px); }
.biography-dialog__story p { margin: 0; font-family: var(--serif); font-size: clamp(21px,1.75vw,26px); line-height: 1.55; }
.biography-dialog__story p + p { margin-top: 1.35em; }
.biography-dialog__story .biography-dialog__opening { color: var(--blue-deep); font-size: clamp(25px,2.15vw,32px); line-height: 1.45; }
.biography-dialog__chapters { padding: 0 clamp(24px,7vw,96px); }
.biography-dialog__chapters article { display: grid; grid-template-columns: minmax(120px,.32fr) minmax(220px,.7fr) minmax(300px,1.25fr); column-gap: clamp(28px,5vw,78px); row-gap: 20px; padding: clamp(55px,6vw,88px) 0; border-bottom: 1px solid var(--line); align-items: start; }
.biography-dialog__chapters article > span { padding-top: 9px; color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.biography-dialog__chapters h3 { margin: 0; font-size: clamp(30px,3.2vw,48px); line-height: 1.02; letter-spacing: -.045em; }
.biography-dialog__chapters article > p { grid-column: 3; margin: 0; font-family: var(--serif); font-size: clamp(20px,1.65vw,25px); line-height: 1.48; }
.biography-dialog__chapters article > p + p { margin-top: 0; }
.biography-dialog__footer { padding: clamp(60px,7vw,95px) clamp(24px,7vw,96px); background: var(--blue-deep); color: var(--ivory); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.biography-dialog__footer p { max-width: 650px; margin: 0; font-size: clamp(38px,5vw,72px); font-weight: 700; line-height: .98; letter-spacing: -.055em; }
.biography-dialog__footer .button { color: var(--ivory); }
.centered-cta { display: flex; flex-direction: column; align-items: center; text-align: center; }
.centered-cta .button-row { margin-top: 12px; justify-content: center; }
.music-intro { align-items: start; }
.music-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 770px; background: var(--blue); color: var(--ivory); }
.music-panel--solo { background: #d8dcdd; color: var(--blue-deep); }
.music-panel--solo .music-panel__image { background: #d8dcdd; -webkit-mask-image: none; mask-image: none; }
.music-panel--solo .music-panel__image::after { display: none; }
.music-panel--solo .music-panel__image img { object-fit: contain; object-position: center bottom; filter: none; transform: none; }
.music-panel--solo .music-panel__image:hover img { transform: scale(1.025); }
.music-panel--solo .music-panel__number { color: var(--coffee); }
.music-panel.music-panel--solo h2 em { color: var(--sky); }
.music-panel--solo .music-panel__releases { border-top-color: rgba(17,28,39,.28); }
.music-panel--solo .music-panel__releases > span { color: var(--coffee); }
.music-panel--solo .button--gold { color: var(--blue); }
.music-panel--solo .button--gold:hover { color: var(--coffee); }
.music-panel--reverse { direction: rtl; background: var(--sky); }
.music-panel--reverse > * { direction: ltr; }
.music-panel--reverse .music-panel__number, .music-panel--reverse h2 em, .music-panel--reverse .music-panel__releases > span { color: var(--blue-deep); }
.music-panel--reverse .music-panel__releases { border-top-color: rgba(17,28,39,.35); }
.music-panel--reverse .button--gold { color: var(--blue-deep); }
.music-panel--reverse .button--gold:hover { color: var(--ivory); }
.music-panel__band-logo { width: min(290px,72%); height: auto; margin: 0 0 25px; filter: grayscale(1) contrast(1.55); mix-blend-mode: multiply; }
.music-panel__image { min-height: 720px; }
.music-panel__image img { object-position: center 38%; }
.music-panel__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(65px, 7vw, 125px); }
.music-panel__number { color: var(--moss); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.music-panel h2 { margin: 33px 0 27px; font-size: clamp(62px, 6vw, 108px); line-height: .93; }
.music-panel h2 em { color: var(--moss); }
.music-panel__body > p { max-width: 530px; font-family: var(--serif); font-size: 29px; line-height: 1.32; }
.music-panel__releases { width: 100%; max-width: 500px; margin: 15px 0 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); }
.music-panel__releases > span { color: var(--moss); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.music-panel__releases ul { list-style: none; padding: 0; margin: 16px 0 0; }
.music-panel__releases li { padding: 8px 0; font-size: 14px; }
.listen-section { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; margin-bottom: 70px; }
.listen-section > div > p:not(.eyebrow) { font-family: var(--serif); font-size: 27px; }
.listen-section__links a, .social-grid a { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); padding: 24px 0; font-size: 20px; font-weight: 700; letter-spacing: -.04em; }
.listen-section__links a:first-child { border-top: 1px solid var(--line); }
.listen-section__links span, .social-grid span { font-size: 22px; font-weight: 400; }
.spotify-player { display: block; width: min(100%, 900px); height: 352px; border: 0; border-radius: 12px; }
.embed-consent { max-width: 900px; min-height: 290px; border: 1px solid var(--line); background: #e4e6e8; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 17px; padding: 35px; }
.embed-consent p { margin: 0; font-family: var(--serif); font-size: 30px; }
.embed-consent small { color: #59636c; font-size: 11px; }
.embed-consent iframe { width: 100%; min-height: 352px; border: 0; }
.video-embed-wrap { margin-top: 64px; }
.embed-consent--video { max-width: 100%; min-height: 460px; background: #16232e; border-color: rgba(255,255,255,.22); }
.embed-consent--video p, .embed-consent--video small { color: var(--ivory); }
.embed-consent--video iframe { display: block; aspect-ratio: 16 / 9; min-height: 0; }
.embed-consent--video.is-loaded { min-height: 0; padding: 0; border: 0; }
.notice-card { margin: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 25px 0; }
.notice-card span { display: block; margin-bottom: 10px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--olive); }
.notice-card p { max-width: 650px; margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.32; }
.learning-intro { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(60px,8vw,140px); align-items: start; }
.learning-paths { background: var(--paper); }
.learning-paths__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.learning-card { min-width: 0; min-height: 620px; padding: clamp(50px,6vw,92px); display: flex; flex-direction: column; align-items: flex-start; }
.learning-card + .learning-card { border-left: 1px solid var(--line); }
.learning-card > span { color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.learning-card h2 { width: 100%; max-width: 100%; margin: 42px 0 28px; font-size: clamp(46px,4.5vw,76px); line-height: .98; }
.learning-card p { max-width: 570px; font-family: var(--serif); font-size: clamp(23px,2vw,29px); line-height: 1.38; }
.learning-card ul { list-style: none; width: 100%; margin: auto 0 10px; padding: 30px 0 0; border-top: 1px solid var(--line); }
.learning-card li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.learning-card--blue { background: var(--blue); color: var(--ivory); }
.learning-card--blue h2 em { color: var(--moss); }
.learning-card--blue ul,.learning-card--blue li { border-color: rgba(255,255,255,.2); }
.academy-next__grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,.72fr); gap: clamp(65px,9vw,150px); align-items: start; }
.academy-next__grid .lead-serif { max-width: 720px; color: rgba(233,236,237,.88); }
.academy-next__paths { border-top: 1px solid rgba(255,255,255,.25); }
.academy-next__paths a { position: relative; display: grid; gap: 13px; padding: 30px 56px 30px 0; border-bottom: 1px solid rgba(255,255,255,.25); transition: color .25s, padding-left .35s var(--ease); }
.academy-next__paths a:hover { color: var(--moss); padding-left: 12px; }
.academy-next__paths span { color: var(--moss); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.academy-next__paths strong { max-width: 520px; font-family: var(--serif); font-size: clamp(24px,2vw,31px); font-weight: 500; line-height: 1.24; }
.academy-next__paths b { position: absolute; right: 3px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; }
/* Book sales journey */
.book-sales-hero { position: relative; min-height: clamp(720px, 92svh, 900px); display: flex; align-items: flex-end; overflow: hidden; background: #dddfe3; color: var(--blue-deep); }
.book-sales-hero__media, .book-sales-hero__shade { position: absolute; inset: 0; }
.book-sales-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.book-sales-hero__shade { background: linear-gradient(90deg,#dddfe3 0%,rgba(221,223,227,.99) 35%,rgba(221,223,227,.78) 51%,rgba(221,223,227,.08) 74%,transparent 100%); }
.book-sales-hero__content { position: relative; z-index: 1; padding-top: 200px; padding-bottom: clamp(78px,9vh,120px); }
.book-sales-hero__content h1 { max-width: 820px; margin-bottom: 27px; font-size: clamp(58px,6.2vw,106px); line-height: .92; }
.book-sales-hero__content h1 em { color: var(--coffee); }
.book-sales-hero__content > p:not(.eyebrow) { max-width: 620px; margin-bottom: 25px; font-family: var(--serif); font-size: clamp(24px,2vw,32px); line-height: 1.3; }
.book-promise__grid, .book-signature__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,.8fr); gap: clamp(70px,9vw,155px); align-items: start; }
.book-promise__copy p, .book-signature__copy p { font-family: var(--serif); font-size: clamp(22px,1.7vw,28px); line-height: 1.43; }
.book-promise__copy p.lead-serif { font-size: clamp(28px,2.25vw,38px); line-height: 1.25; }
.book-inside { background: var(--paper); }
.book-inside__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); gap: clamp(70px,9vw,155px); align-items: center; }
.book-inside__visual { min-height: 720px; height: min(65vw,850px); background: var(--blue-deep); }
.book-inside__visual img { object-position: center; filter: saturate(.9) contrast(1.02); }
.book-inside__copy h2 { font-size: clamp(52px,5.2vw,92px); line-height: .96; }
.book-inside__copy > p:not(.eyebrow) { max-width: 650px; font-family: var(--serif); font-size: clamp(23px,1.8vw,30px); line-height: 1.38; }
.book-inside__list { list-style: none; margin: 36px 0 28px; padding: 0; border-top: 1px solid var(--line); }
.book-inside__list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; line-height: 1.45; }
.book-inside__list span { color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.book-signature__copy p { color: rgba(233,236,237,.9); }
.book-signature .eyebrow__rule { background: var(--moss); }
.book-signature .display-title em { color: var(--moss); }
.book-final__grid { display: grid; grid-template-columns: minmax(300px,.62fr) minmax(0,1fr); gap: clamp(70px,10vw,180px); align-items: center; }
.book-final__cover { min-height: 650px; height: min(62vw,790px); box-shadow: 35px 35px 0 rgba(32,45,58,.08); }
.book-final__cover img { object-position: center; filter: saturate(.94) contrast(1.02); }
.book-final__copy > p:not(.eyebrow) { max-width: 720px; }
.book-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 38px 0 28px; border-top: 1px solid var(--line); }
.book-meta div { padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line); }
.book-meta div:nth-child(odd) { border-right: 1px solid var(--line); }
.book-meta div:nth-child(even) { padding-left: 24px; }
.book-meta dt { margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.book-meta dd { margin: 0; font-family: var(--serif); font-size: 21px; }
.book-detail { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(70px, 10vw, 180px); align-items: center; }
.book-detail__image { height: 750px; }
.book-detail__image img { object-position: 50% 42%; }
.book-detail__copy p:not(.eyebrow) { max-width: 650px; font-family: var(--serif); font-size: 24px; line-height: 1.35; }
.book-detail__copy p.lead-serif { font-size: 31px; }
.detail-list { list-style: none; padding: 0; margin: 38px 0; border-top: 1px solid var(--line); }
.detail-list li { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 15px 0; font-size: 13px; }
.detail-list li span { color: var(--muted); }
.detail-list li strong { font-weight: 700; }
.external-note { display: block; margin-top: 12px; color: var(--muted); font-size: 11px; }
.book-gallery { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 9vw, 160px); align-items: center; }
.book-gallery > .photo { height: 620px; }
.book-gallery__quote blockquote { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 60px); line-height: 1.15; }
.product-card { display: grid; grid-template-columns: .55fr 1fr; gap: 60px; align-items: center; max-width: 1000px; }
.product-card > .photo { height: 450px; }
.product-card > div:last-child > span { color: var(--olive); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.product-card h3 { font-size: clamp(36px, 4vw, 68px); line-height: 1; margin: 19px 0; }
.product-card p { max-width: 530px; font-family: var(--serif); font-size: 26px; }
.product-card .button { margin-right: 8px; margin-top: 12px; }
.content-grid, .church-page-grid { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(70px, 9vw, 160px); align-items: center; }
.content-grid__visual, .church-page-grid__visual { height: 680px; }
.content-grid__visual img, .church-page-grid__visual img { object-position: center 28%; }
.content-grid > div:first-child > p:not(.eyebrow), .church-page-grid > div:first-child > p:not(.eyebrow) { font-family: var(--serif); font-size: 26px; line-height: 1.34; }
.content-grid > div:first-child > p.lead-serif, .church-page-grid > div:first-child > p.lead-serif { font-size: 32px; }
.video-invite { max-width: 1100px; }
.video-invite p:not(.eyebrow) { font-family: var(--serif); font-size: 29px; }
.church-page-grid .notice-card { margin-top: 35px; }
.invite-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 8vw, 140px); }
.invite-grid__intro > p:not(.eyebrow) { font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.invite-grid__intro a { text-decoration: underline; text-underline-offset: 3px; }
.invite-form { padding: 40px; background: var(--paper); border: 1px solid var(--line); align-self: start; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.invite-form label { display: block; margin-bottom: 22px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.invite-form input, .invite-form select, .invite-form textarea { display: block; width: 100%; margin-top: 10px; border: 0; border-bottom: 1px solid #aeb3ae; border-radius: 0; padding: 13px 2px; background: transparent; color: var(--blue); font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; outline: 0; }
.invite-form input:focus, .invite-form select:focus, .invite-form textarea:focus { border-bottom-color: var(--blue); box-shadow: 0 1px var(--blue); }
.invite-form textarea { resize: vertical; min-height: 120px; }
.invite-form .button { width: 100%; border: 0; }
.invite-form small { display: block; margin-top: 16px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.invite-form button:disabled { cursor: wait; opacity: .68; }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-status { margin: 18px 0 0; padding: 15px 17px; border: 1px solid currentColor; font-size: 13px; line-height: 1.5; }
.form-status.is-success { color: #365f50; background: #e4eee8; }
.form-status.is-error { color: #8a3f3a; background: #f3e4e1; }
.form-status[hidden] { display: none; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.contact-card { min-width: 0; padding: 55px clamp(35px, 5vw, 90px) 65px 0; }
.contact-card:nth-child(2) { border-left: 1px solid var(--line); padding-left: clamp(35px, 5vw, 90px); padding-right: 0; }
.contact-card h2 { font-size: clamp(48px, 4.5vw, 82px); }
.contact-card p:not(.eyebrow) { max-width: 500px; font-family: var(--serif); font-size: 26px; }
.contact-card p a { text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 55px; }
.contact-subnav { position: sticky; z-index: 20; top: 86px; background: rgba(244,245,246,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.contact-subnav .shell { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: clamp(28px,6vw,90px); }
.contact-subnav a { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
.contact-subnav a:hover { color: var(--sky); }
.contact-agenda__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px,8vw,140px); align-items: start; }
.agenda-month { border-top: 1px solid var(--blue); }
.agenda-month__head { min-height: 88px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.agenda-month__head span { font-size: clamp(22px,2.3vw,34px); font-weight: 700; letter-spacing: -.04em; }
.agenda-month__head small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.agenda-list { list-style: none; margin: 0; padding: 0; }
.agenda-event { min-height: 106px; display: grid; grid-template-columns: 76px minmax(0,1fr) auto; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), color .25s; }
.agenda-event:hover { padding-inline: 8px; }
.agenda-event time { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 6px; }
.agenda-event time b { font-size: 35px; line-height: 1; letter-spacing: -.06em; }
.agenda-event time span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.agenda-event strong { display: block; margin-bottom: 5px; font-size: clamp(17px,1.4vw,21px); letter-spacing: -.03em; }
.agenda-event p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.agenda-event > small { color: var(--sky); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.agenda-event.is-past { opacity: .46; }
.agenda-event.is-next { color: var(--blue); background: rgba(47,107,144,.08); }
.agenda-event.is-next time b { color: var(--sky); }
.agenda-month__action { padding: 30px 0 0; display: flex; justify-content: space-between; align-items: end; gap: 25px; }
.agenda-month__action p { max-width: 360px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: 17px; line-height: 1.35; }
.agenda-month__action .text-link { flex: 0 0 auto; margin-top: 0; }
.agenda-empty { padding: clamp(38px,5vw,72px) 0; }
.agenda-empty strong { display: block; max-width: 580px; font-size: clamp(30px,3.2vw,50px); line-height: 1.06; letter-spacing: -.05em; }
.agenda-empty p { max-width: 620px; margin: 24px 0 0; font-family: var(--serif); font-size: 24px; line-height: 1.42; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); }
.contact-channel { position: relative; min-height: 320px; padding: 38px 38px 45px 0; border-bottom: 1px solid var(--line); transition: color .25s, background .25s, padding .35s var(--ease); }
.contact-channel + .contact-channel { border-left: 1px solid var(--line); padding-left: 38px; }
.contact-channel:hover { color: var(--sky); padding-top: 32px; }
.contact-channel > span { font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-channel strong { display: block; margin: 65px 0 18px; font-size: clamp(25px,2.5vw,40px); line-height: 1.05; letter-spacing: -.045em; }
.contact-channel p { margin: 0; color: var(--muted); overflow-wrap: anywhere; }
.contact-channel b { position: absolute; right: 28px; top: 28px; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-weight: 400; }
.contact-message .invite-form { background: var(--ivory); color: var(--blue); }
.contact-message .invite-grid__intro a { color: var(--moss); }
.contact-direct { margin-top: 40px; display: grid; gap: 8px; }
.contact-direct span { color: var(--moss); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-direct a { overflow-wrap: anywhere; font-family: var(--serif); font-size: 22px; }
.invite-form [hidden] { display: none !important; }
.contact-social { padding-block: 55px; margin-top: 0; }
.contact-social a { min-height: 82px; border-block: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

/* Devotionals */
.devotional-intro__grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(380px,.72fr); gap: clamp(70px,9vw,150px); align-items: start; }
.devotional-intro__copy p { font-family: var(--serif); font-size: clamp(21px,1.65vw,27px); line-height: 1.45; }
.devotional-intro__copy p.lead-serif { font-size: clamp(28px,2.3vw,38px); line-height: 1.25; }
.devotional-videos { background: var(--paper); }
.devotional-section-head { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.devotional-section-head .display-title { font-size: clamp(42px,5.8vw,74px); }
.devotional-section-head > p { max-width: 380px; margin-bottom: 34px; color: var(--muted); font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.video-post { border-bottom: 1px solid var(--line); }
.video-post--featured { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(330px,.65fr); gap: clamp(45px,6vw,100px); align-items: center; padding-bottom: clamp(75px,8vw,120px); }
.video-post__media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--blue-deep); }
.video-post__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(9,22,30,.45),transparent 56%); transition: background .3s; }
.video-post__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.05); transition: transform .9s var(--ease), filter .4s; }
.video-post__media:hover img { transform: scale(1.035); filter: saturate(.94) contrast(1.03); }
.video-post__play { position: absolute; z-index: 2; left: 28px; bottom: 26px; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 16px; padding-left: 3px; backdrop-filter: blur(8px); transition: transform .35s var(--ease),background .3s; }
.video-post__media:hover .video-post__play { transform: scale(1.1); background: rgba(47,107,144,.8); }
.video-post__duration { position: absolute; z-index: 2; right: 24px; bottom: 28px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.video-post__meta { margin: 0 0 14px; color: var(--sky); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.video-post__body h3 { margin-bottom: 18px; font-size: clamp(35px,3.4vw,60px); line-height: 1; }
.video-post__body > p:not(.video-post__meta) { color: var(--muted); font-family: var(--serif); font-size: 21px; line-height: 1.42; }
.video-post-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: clamp(35px,5vw,80px); row-gap: clamp(60px,7vw,100px); padding-top: clamp(75px,8vw,120px); }
.video-post-grid .video-post { padding-bottom: 30px; }
.video-post-grid .video-post__body { padding-top: 24px; }
.video-post-grid .video-post__body h3 { min-height: 2em; font-size: clamp(29px,2.5vw,44px); }
.post-actions { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.post-actions button { border: 0; border-bottom: 1px solid var(--line); padding: 0 0 9px; background: transparent; color: inherit; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: color .25s,border-color .25s; }
.post-actions button:hover, .post-actions button[aria-pressed="true"] { color: var(--sky); border-color: currentColor; }
.post-actions button[aria-pressed="true"] span { font-size: 13px; }
.devotional-articles .eyebrow__rule { background: var(--moss); }
.devotional-articles .display-title em { color: var(--moss); }
.devotional-articles .devotional-section-head > p { color: rgba(233,236,237,.68); }
.article-preview-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(22px,3vw,48px); }
.article-preview { border-top: 1px solid rgba(233,236,237,.25); }
.article-preview__image { height: min(31vw,430px); margin-top: 20px; }
.article-preview__image img { object-position: center 28%; }
.article-preview__body { padding: 26px 0 6px; }
.article-preview__body > span { color: var(--moss); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-preview__body h3 { min-height: 2.65em; margin: 20px 0 16px; font-size: clamp(27px,2.35vw,42px); line-height: 1.05; color: var(--ivory); }
.article-preview__body > p { color: rgba(233,236,237,.62); font-family: var(--serif); font-size: 18px; }
.article-preview .post-actions button { color: var(--ivory); border-color: rgba(233,236,237,.25); }
.article-preview .post-actions button:hover, .article-preview .post-actions button[aria-pressed="true"] { color: var(--moss); }

/* Footer */
.site-footer { background: var(--blue-deep); color: var(--ivory); overflow: hidden; }
.footer-top { min-height: 380px; padding-block: 85px 80px; display: flex; align-items: end; justify-content: space-between; gap: 80px; border-bottom: 1px solid rgba(233,236,237,.24); }
.footer-signature { flex: 0 0 auto; width: clamp(190px, 17vw, 290px); margin-bottom: -16px; }
.footer-signature img { width: 100%; height: auto; }
.footer-top p { max-width: 730px; margin: 0; font-size: clamp(44px, 5.4vw, 90px); font-weight: 700; letter-spacing: -.065em; line-height: .98; }
.footer-top p em { display: inline-block; font-family: var(--serif); font-size: 1.16em; font-weight: 400; letter-spacing: -.035em; color: var(--moss); }
.footer-middle { padding-block: 48px 56px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 70px; align-items: start; }
.footer-map { max-width: 770px; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.footer-map a { font-size: 13px; font-weight: 600; line-height: 1.65; color: rgba(233,236,237,.85); transition: color .25s; }
.footer-map a:hover { color: var(--moss); }
.footer-channels { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.footer-channels > span { color: var(--moss); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-channels__icons { display: flex; gap: 8px; }
.footer-channels__icons a { width: 43px; height: 43px; border: 1px solid rgba(233,236,237,.36); border-radius: 50%; display: grid; place-items: center; transition: border-color .3s, background .3s, transform .35s var(--ease); }
.footer-channels__icons a:hover { border-color: var(--moss); background: rgba(153,162,140,.16); transform: translateY(-4px); }
.footer-channels__icons img { width: 17px; height: 17px; filter: brightness(0) invert(1); opacity: .88; }
.footer-bottom { border-top: 1px solid rgba(233,236,237,.16); padding-block: 25px 38px; display: flex; justify-content: space-between; align-items: start; gap: 30px; color: rgba(233,236,237,.62); font-size: 11px; }
.footer-bottom > div { display: flex; flex-direction: column; gap: 7px; }
.footer-bottom small { font-size: 11px; line-height: 1.5; }
.footer-bottom a { color: var(--ivory); }
.footer-bottom small a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--moss); }
.footer-toplink { display: flex; align-items: center; gap: 17px; white-space: nowrap; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.footer-toplink span { font-size: 23px; line-height: 1; }

/* Motion */
@keyframes hero-arrive { from { opacity: .78; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-title-arrive { from { transform: translateY(18px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .hero__copy h1 { animation: hero-title-arrive .8s both var(--ease); }
  .hero__lead { animation: hero-arrive 1.05s .38s both var(--ease); }
  .hero__copy .button-row { animation: hero-arrive 1s .6s both var(--ease); }
}
html.motion-ready [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform 1s var(--ease); }
html.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
html.motion-ready [data-reveal] .display-title { clip-path: inset(-.18em -.14em 100% -.18em); transform: translateY(28px); transition: clip-path 1.2s var(--ease), transform 1.2s var(--ease); }
html.motion-ready [data-reveal].is-visible .display-title { clip-path: inset(-.18em -.14em -.2em -.18em); transform: translateY(0); }
html.motion-ready [data-reveal] .display-title + p { opacity: 0; transform: translateY(16px); transition: opacity .85s .28s var(--ease), transform .85s .28s var(--ease); }
html.motion-ready [data-reveal].is-visible .display-title + p { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.motion-ready [data-reveal] { opacity: 1; transform: none; }
  .hero__video { display: none; }
  .hero__phrase.is-active { animation: none; opacity: 1; filter: none; transform: none; }
  .hero__phrase.is-leaving { display: none; }
}

@media (max-width: 1200px) {
  :root { --shell: min(100% - 72px, 1480px); }
  .desktop-nav { gap: 13px; }
  .header-cta { gap: 15px; margin-left: 5px; padding-left: 15px; }
  .image-feature__content, .church-feature__content { padding: 65px; }
  .church-feature__content { padding-block: clamp(88px, 11vw, 145px); }
  .footer-main { grid-template-columns: 1.5fr repeat(3, .7fr); }
}
@media (min-width: 981px) and (max-width: 1100px) {
  .site-header__inner { height: 86px; }
  .site-header__inner::after { left: 175px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 151px; height: 116px; margin-top: 8px; }
  .site-header.is-scrolled .brand { width: 104px; height: 78px; margin-top: 4px; }
  .site-header.is-scrolled .site-header__inner::after { left: 127px; }
}
@media (max-width: 980px) {
  .site-header__inner { height: 86px; }
  .site-header__inner::after { left: 175px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 151px; height: 116px; margin-top: 8px; }
  .site-header.is-scrolled .brand { width: 104px; height: 78px; margin-top: 4px; }
  .site-header.is-scrolled .site-header__inner::after { left: 127px; }
  .hero__copy { width: min(600px, 65%); }
  .hero__title { font-size: clamp(48px, 5.2vw, 68px); }
  .platform-bar__inner { padding-block: 24px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
  .platform-bar__inner > span { grid-column: 1 / -1; }
  .intro-grid, .biography-grid, .music-intro, .book-feature__grid, .teaching-grid, .listen-section, .content-grid, .church-page-grid, .invite-grid { gap: 55px; }
  .image-feature, .church-feature, .music-panel { min-height: 650px; }
  .image-feature__visual, .church-feature__image, .music-panel__image { min-height: 650px; }
  .image-feature__content, .church-feature__content, .music-panel__body { padding: 45px; }
  .story-journey__grid { gap: 55px; }
  .story-chapter h3 { font-size: clamp(42px, 5vw, 62px); }
  .learning-paths__grid, .academy-next__grid { grid-template-columns: 1fr; }
  .learning-card + .learning-card { border-left: 0; border-top: 1px solid var(--line); }
  .devotional-section-head .display-title { font-size: clamp(44px,5.5vw,80px); }
  .footer-main { grid-template-columns: repeat(3, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  :root { --mobile-pad: 24px; --shell: min(100% - 48px, 1480px); }
  .site-header__inner { height: 78px; }
  .site-header__inner::after { left: 147px; }
  .brand { width: 131px; height: 101px; margin-top: 4px; }
  .site-header.is-scrolled .brand { width: 94px; height: 70px; margin-top: 3px; }
  .site-header.is-scrolled .site-header__inner::after { left: 112px; }
  .section-pad { padding-block: 85px; }
  .display-title { font-size: clamp(47px, 12vw, 73px); }
  .hero, .hero__content { min-height: max(950px, 100svh); }
  .hero__video { display: block; object-position: 67% center; }
  .hero__poster { left: 0; width: 100%; background-size: cover; background-position: 67% center; }
  .hero__video, .hero__poster { transform: translateY(-80px) scale(1.1); transform-origin: center top; }
  @media (prefers-reduced-motion: no-preference) {
    .hero__video.is-ready { animation: hero-mobile-horizontal-track 18s ease-in-out infinite; }
  }
  .hero__shade { background: linear-gradient(180deg, rgba(16,28,39,.22) 0%, rgba(16,28,39,.32) 29%, rgba(16,28,39,.92) 43%, #152432 58%, #152432 100%); }
  .hero__content { align-items: flex-start; padding-top: 340px; padding-bottom: 80px; }
  .hero__copy { width: 100%; }
  .hero__title { height: clamp(175px, 45vw, 230px); font-size: clamp(46px, 11vw, 66px); }
  .hero__phrase--one .hero__phrase-line { font-size: clamp(30px, 8.2vw, 50px); }
  .hero__phrase--one em { font-size: clamp(65px, 17vw, 98px); }
  .hero__phrase--two, .hero__phrase--three { font-size: .85em; }
  .hero__phrase--two, .hero__phrase--three { left: 0; top: 0; width: 100%; }
  .hero__lead { font-size: 21px; max-width: 550px; }
  .hero__bottom { display: none; }
  .platform-bar__inner { padding-block: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
  .platform-bar__inner > span { grid-column: 1 / -1; }
  .platform-bar a { font-size: 15px; }
  .platform-bar__inner { grid-template-columns: repeat(5, minmax(0, 1fr)); column-gap: 10px; }
  .platform-bar a { justify-content: center; }
  .platform-bar a > span { display: none; }
  .platform-bar a img { width: 25px; height: 25px; opacity: .82; }
  .intro-grid, .biography-grid, .music-intro, .book-feature__grid, .teaching-grid, .listen-section, .content-grid, .church-page-grid, .invite-grid, .book-detail, .book-gallery, .biography-portrait__grid, .learning-intro, .contact-agenda__grid, .book-promise__grid, .book-inside__grid, .book-signature__grid, .book-final__grid, .academy-next__grid { grid-template-columns: 1fr; gap: 34px; }
  .intro-grid__copy { padding-top: 0; }
  .prose p { font-size: 25px; }
  .image-feature, .church-feature, .music-panel { grid-template-columns: minmax(0, 1fr); }
  .image-feature__visual, .church-feature__image, .music-panel__image { min-height: 550px; height: 70vh; }
  .image-feature__visual, .church-feature__image { order: 0; -webkit-mask-image: none; mask-image: none; }
  .image-feature__visual { -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%); }
  .image-feature__content, .church-feature__content { order: 1; }
  .image-feature__content, .church-feature__content, .music-panel__body { padding: 75px var(--mobile-pad); }
  .image-feature h2, .church-feature h2, .biography-portrait h2, .music-panel h2 { font-size: clamp(59px, 12vw, 88px); }
  .church-feature h2 { font-size: clamp(47px, 12vw, 73px); }
  .church-feature__content { padding: 85px var(--mobile-pad); }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-mark { font-size: 120px; }
  .quote-grid blockquote { font-size: clamp(50px, 12vw, 72px); }
  .quote-caption { grid-column: 1; }
  .section-head { margin-bottom: 42px; }
  .story-journey { padding-top: 85px; }
  .story-journey__grid { display: block; }
  .story-journey__visual { display: none; }
  .story-chapter { min-height: 0; opacity: 1; transform: none; padding: 40px 0 75px; }
  .story-chapter__mobile-photo { display: block; width: 100%; height: min(110vw, 500px); margin-bottom: 34px; }
  .story-chapter__mobile-photo img { object-position: center 28%; }
  .story-chapter h3 { font-size: clamp(45px, 11vw, 70px); }
  .book-feature__visual { min-height: 0; height: auto; }
  .book-sales-hero { min-height: 0; display: flex; flex-direction: column; align-items: stretch; background: #dddfe3; }
  .book-sales-hero__media { position: relative; inset: auto; width: 100%; height: min(84vw,520px); order: 0; }
  .book-sales-hero__media img { object-position: 62% center; }
  .book-sales-hero__shade { display: none; }
  .book-sales-hero__content { order: 1; padding-top: 48px; padding-bottom: 75px; }
  .book-sales-hero__content h1 { font-size: clamp(48px,12vw,72px); }
  .book-sales-hero__content > p:not(.eyebrow) { font-size: 23px; }
  .book-inside__visual, .book-final__cover { min-height: 0; height: min(122vw,620px); }
  .book-inside__copy { padding-top: 28px; }
  .book-inside__copy h2 { font-size: clamp(50px,12vw,72px); }
  .book-meta { grid-template-columns: 1fr; }
  .book-meta div:nth-child(odd) { border-right: 0; }
  .book-meta div:nth-child(even) { padding-left: 0; }
  .book-final__cover { box-shadow: 18px 18px 0 rgba(32,45,58,.08); }
  .teaching-links { margin-top: 15px; }
  .final-cta h2 { font-size: clamp(52px, 12vw, 78px); }
  .inner-hero { min-height: 0; display: flex; flex-direction: column; align-items: stretch; }
  .inner-hero__media, .inner-hero__photo { position: relative; inset: auto; width: 100%; height: min(115vw, 540px); flex: 0 0 auto; overflow: hidden; }
  .inner-hero__photo img { object-position: center 62%; }
  .inner-hero__shade { inset: 0 0 auto; height: min(115vw, 540px); background: linear-gradient(0deg, rgba(15,27,38,.15), rgba(16,30,42,.3)); }
  .inner-hero__content { padding-top: 34px; padding-bottom: 65px; }
  .inner-hero h1 { max-width: none; font-size: clamp(55px, 12vw, 84px); }
  .inner-hero p:not(.eyebrow) { max-width: none; }
  .full-image__visual { min-height: 360px; }
  .full-image__caption { flex-direction: column; }
  .history-family { height: min(82vw, 520px); min-height: 360px; }
  .history-family__slideshow .family-slideshow__slide img { object-position: center top; }
  .history-family__caption { bottom: 20px; align-items: flex-start; flex-direction: column; gap: 15px; }
  .history-family__caption .family-slideshow__progress { width: 100%; }
  .biography-portrait__visual, .book-detail__image, .book-gallery > .photo, .content-grid__visual, .church-page-grid__visual { height: 560px; }
  .music-panel--reverse { direction: ltr; }
  .music-panel__image { order: 0; }
  .music-panel__body { order: 1; }
  .product-card { grid-template-columns: 1fr; gap: 25px; }
  .product-card > .photo { height: 480px; }
  .field-grid, .contact-grid, .social-grid, .learning-paths__grid, .contact-channel-grid { grid-template-columns: 1fr; }
  .invite-form { padding: var(--mobile-pad); }
  .learning-card { min-height: 0; padding: 65px var(--mobile-pad); }
  .learning-card + .learning-card { border-left: 0; border-top: 1px solid var(--line); }
  .learning-card ul { margin-top: 35px; }
  .contact-subnav { top: 78px; overflow-x: auto; }
  .contact-subnav .shell { width: max-content; min-width: 100%; padding-inline: var(--mobile-pad); justify-content: flex-start; }
  .contact-channel { min-height: 250px; padding: 34px 0; }
  .contact-channel + .contact-channel { border-left: 0; padding-left: 0; }
  .contact-channel strong { margin-top: 55px; }
  .contact-social { gap: 0; }
  .devotional-intro__grid { grid-template-columns: 1fr; gap: 35px; }
  .devotional-section-head { align-items: flex-start; flex-direction: column; gap: 0; }
  .devotional-section-head > p { margin-bottom: 30px; }
  .video-post--featured, .video-post-grid, .article-preview-grid { grid-template-columns: 1fr; }
  .video-post--featured { gap: 30px; }
  .video-post-grid { row-gap: 65px; }
  .video-post-grid .video-post__body h3, .article-preview__body h3 { min-height: 0; }
  .article-preview__image { height: min(105vw,520px); }
  .article-preview + .article-preview { margin-top: 38px; }
  .agenda-month__head { min-height: 72px; }
  .agenda-event { min-height: 98px; grid-template-columns: 58px minmax(0,1fr); gap: 16px; }
  .agenda-event > small { grid-column: 2; margin-top: -18px; padding-bottom: 14px; }
  .agenda-event time b { font-size: 30px; }
  .agenda-event strong { font-size: 16px; }
  .agenda-event p { font-size: 17px; }
  .agenda-month__action { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 35px 0 50px; }
  .contact-card:nth-child(2) { border-left: 0; border-top: 1px solid var(--line); padding: 35px 0 50px; }
  .inner-hero--light .inner-hero__shade { background: linear-gradient(0deg, rgba(178,170,167,.08), rgba(178,170,167,.12)); }
  .inner-hero--history { min-height: 800px; justify-content: flex-end; }
  .inner-hero--history .inner-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .inner-hero--history .inner-hero__photo img { object-position: center; }
  .inner-hero--history .inner-hero__shade { inset: 0; height: 100%; background: linear-gradient(180deg,rgba(24,42,53,.15),rgba(24,42,53,.12) 37%,rgba(24,42,53,.92) 63%,#182a35 100%); }
  .inner-hero--history .inner-hero__content { padding-top: 230px; padding-bottom: 62px; }
  .inner-hero--history h1, .inner-hero--history p:not(.eyebrow) { max-width: 100%; }
  .inner-hero--academy { min-height: 780px; justify-content: flex-end; }
  .inner-hero--academy .inner-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .inner-hero--academy .inner-hero__photo img { object-position: 52% center; }
  .inner-hero--academy .inner-hero__shade { inset: 0; height: 100%; background: linear-gradient(0deg,rgba(24,15,24,.96) 0%,rgba(24,15,24,.72) 45%,rgba(24,15,24,.10) 78%); }
  .inner-hero--academy .inner-hero__content { padding-top: 300px; padding-bottom: 66px; }
  .inner-hero--academy h1 { max-width: 100%; font-size: clamp(47px,11.2vw,70px); }
  .inner-hero--academy p:not(.eyebrow) { max-width: 100%; font-size: 20px; }
  .inner-hero--church { min-height: 750px; justify-content: flex-end; }
  .inner-hero--church .inner-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .inner-hero--church .inner-hero__photo img { object-position: 54% center; }
  .inner-hero--church .inner-hero__shade { inset: 0; height: 100%; background: linear-gradient(0deg, rgba(11,22,31,.95), rgba(11,22,31,.48) 58%, rgba(11,22,31,.37)); }
  .inner-hero--church .inner-hero__content { padding-top: 230px; padding-bottom: 75px; }
  .inner-hero--church h1 { max-width: 100%; font-size: clamp(58px, 12vw, 82px); }
  .church-hero__mark { width: min(300px,78vw); margin-bottom: 24px; }
  .inner-hero--church p:not(.eyebrow) { max-width: 550px; }
  .inner-hero--music { min-height: 720px; justify-content: flex-end; }
  .inner-hero--music .inner-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .inner-hero--music .inner-hero__video { object-position: 46% center; }
  .inner-hero--music .inner-hero__photo img { object-position: 46% 52%; }
  .inner-hero--music .inner-hero__shade { inset: 0; height: 100%; background: linear-gradient(90deg,rgba(5,20,28,.74) 0%,rgba(5,20,28,.42) 54%,rgba(5,20,28,.10) 100%),linear-gradient(0deg,rgba(5,20,28,.82),rgba(5,20,28,.16) 62%); }
  .inner-hero--music .inner-hero__content { padding-top: 190px; padding-bottom: 58px; }
  .inner-hero--music h1 { max-width: 90vw; font-size: clamp(36px, 9.5vw, 52px); line-height: .94; }
  .inner-hero--music p:not(.eyebrow) { max-width: 90vw; font-size: clamp(17px, 4.7vw, 22px); line-height: 1.28; }
  .inner-hero--contact { min-height: 720px; justify-content: flex-end; }
  .inner-hero--contact .inner-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .inner-hero--contact .inner-hero__photo img { object-position: 51% center; }
  .inner-hero--contact .inner-hero__shade { inset: 0; height: 100%; background: linear-gradient(0deg,rgba(8,22,31,.95) 0%,rgba(8,22,31,.72) 43%,rgba(8,22,31,.17) 78%); }
  .inner-hero--contact .inner-hero__content { padding-top: 170px; padding-bottom: clamp(175px,24vh,220px); }
  .inner-hero--contact h1 { max-width: 100%; font-size: clamp(44px,11.5vw,62px); }
  .inner-hero--contact h1 em { font-size: 1.35em; }
  .inner-hero--contact p:not(.eyebrow) { max-width: 100%; font-size: 20px; }
  .music-panel--solo .music-panel__image { min-height: 540px; height: 67vh; }
  .church-story__grid, .church-visit__grid { grid-template-columns: 1fr; gap: 50px; }
  .church-story__photo, .church-visit__photo { height: 570px; min-height: 0; }
  .church-panorama { min-height: 560px; }
  .church-panorama__caption p { font-size: clamp(48px, 10vw, 72px); }
  body[data-page="contato"].menu-open .site-header:not(.is-scrolled) { color: var(--ivory); }
  body[data-page="contato"].menu-open .site-header:not(.is-scrolled) .site-header__inner::after { background: rgba(255,255,255,.22); }
  .social-grid { gap: 0; }
  .footer-top { min-height: 0; padding-block: 85px 65px; align-items: flex-start; flex-direction: column; gap: 60px; }
  .footer-middle { grid-template-columns: 1fr; gap: 45px; }
  .footer-channels { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 390px) {
  .hero h1 { font-size: 44px; }
  .hero .button { width: 100%; }
  .church-feature h2 { font-size: 47px; }
  .church-visit__details > div { grid-template-columns: 1fr; gap: 10px; }
  .inner-hero h1 { font-size: 52px; }
  .inner-hero--contact h1 { font-size: clamp(34px,9.5vw,40px); }
  .inner-hero--contact h1 em { font-size: 1.65em; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* Complete discography: dense enough for discovery, quiet enough for the editorial system. */
.discography-section { background: var(--paper); }
.discography-section__head { max-width: 980px; margin-bottom: clamp(50px, 7vw, 88px); }
.discography-section__head > p:last-child { max-width: 700px; font-family: var(--serif); font-size: clamp(23px, 2vw, 29px); line-height: 1.32; }
.discography-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; border-block: 1px solid var(--line); padding: 24px 0; }
.discography-controls { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 38px; }
.discography-control { min-width: 0; }
.discography-control > span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.discography-segmented { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.discography-segmented::-webkit-scrollbar { display: none; }
.discography-segmented button { flex: 0 0 auto; border: 1px solid rgba(32,45,58,.22); border-radius: 999px; background: transparent; color: var(--blue); padding: 11px 18px; font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease); }
.discography-segmented button:hover { transform: translateY(-2px); border-color: var(--blue); }
.discography-segmented button[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: var(--ivory); }
.discography-show-all { border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--blue); padding: 0 0 7px; font: 800 10px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: color .2s, transform .2s var(--ease); }
.discography-show-all:hover { color: var(--olive); transform: translateY(-2px); }
.discography-rail-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 30px 0 22px; }
.discography-status { margin: 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.discography-rail-arrows { display: flex; gap: 8px; }
.discography-rail-arrows button { width: 36px; height: 36px; border: 1px solid rgba(32,45,58,.2); border-radius: 50%; background: transparent; color: var(--blue); font-size: 17px; cursor: pointer; transition: background .2s, color .2s, transform .2s var(--ease); }
.discography-rail-arrows button:hover { background: var(--blue); color: var(--ivory); transform: scale(1.06); }
.release-rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(150px, 14vw, 205px); gap: clamp(16px, 2vw, 28px); overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: thin; scrollbar-color: rgba(32,45,58,.24) transparent; padding: 0 0 28px; margin-bottom: clamp(58px, 7vw, 90px); }
.release-rail .release-card { scroll-snap-align: start; }
.release-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(26px, 3vw, 48px) clamp(18px, 2.5vw, 36px); }
.release-card { display: flex; flex-direction: column; min-width: 0; gap: 17px; color: var(--blue); }
.release-card[hidden] { display: none; }
.release-card__visual { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #e2e5e7; }
.release-card__cover { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s var(--ease); }
.release-card__listen { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: rgba(17,28,39,.9); color: white; padding: 14px 16px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateY(100%); transition: transform .35s var(--ease); }
.release-card:hover .release-card__cover { transform: scale(1.045); filter: saturate(1.08); }
.release-card:hover .release-card__listen, .release-card:focus-visible .release-card__listen { transform: translateY(0); }
.release-card__info { display: flex; flex-direction: column; gap: 8px; }
.release-card__info > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.release-card__info strong { font-size: clamp(17px, 1.5vw, 23px); line-height: 1.16; letter-spacing: -.04em; }
.discography-section__foot { display: flex; flex-wrap: wrap; gap: 18px 35px; align-items: center; border-top: 1px solid var(--line); padding-top: 25px; }
.discography-section__foot p { flex: 1 0 100%; margin: 0; color: var(--muted); font-size: 12px; }
.discography-section__foot .text-link { margin-top: 0; }
.discography-dialog { width: min(1320px, calc(100vw - 48px)); height: min(88svh, 900px); max-width: none; max-height: none; border: 0; padding: 0; background: var(--paper); color: var(--blue); box-shadow: 0 30px 90px rgba(8,17,24,.38); }
.discography-dialog::backdrop { background: rgba(7,18,26,.76); backdrop-filter: blur(8px); }
.discography-dialog__panel { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.discography-dialog__head { flex: 0 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; border-bottom: 1px solid var(--line); padding: 30px 40px 25px; }
.discography-dialog__head > div > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.discography-dialog__head h3 { margin: 8px 0 4px; font-size: clamp(28px, 3vw, 48px); letter-spacing: -.05em; }
.discography-dialog__head p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.discography-dialog__head button { width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid rgba(32,45,58,.22); border-radius: 50%; background: transparent; color: var(--blue); font: 300 30px/1 var(--sans); cursor: pointer; transition: background .2s, color .2s, transform .2s var(--ease); }
.discography-dialog__head button:hover { background: var(--blue); color: var(--ivory); transform: rotate(5deg); }
.discography-dialog .release-grid { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 34px 40px 50px; }
body.dialog-open { overflow: hidden; }
@media (max-width: 980px) {
  .release-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .discography-toolbar { grid-template-columns: 1fr; gap: 22px; align-items: start; padding: 22px 0; }
  .discography-controls { grid-template-columns: 1fr; gap: 22px; }
  .discography-show-all { justify-self: start; }
  .discography-rail-arrows { display: none; }
  .release-rail { grid-auto-columns: minmax(142px, 43vw); gap: 14px; margin-right: -20px; padding-right: 20px; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .release-card { gap: 13px; }
  .release-card__info strong { font-size: 17px; }
  .release-card__listen { display: none; }
  .discography-dialog { width: 100vw; height: 100svh; margin: 0; }
  .discography-dialog__head { padding: 22px 24px 18px; }
  .discography-dialog .release-grid { padding: 24px 24px 40px; }
}

/* Photographic reveals follow the pace of the page rather than a repeating card animation. */
html.motion-ready .image-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.25s var(--ease); }
html.motion-ready .image-reveal img { transform: scale(1.12); transition: transform 1.7s var(--ease); }
html.motion-ready .image-reveal.is-visible { clip-path: inset(0 0 0 0); }
html.motion-ready .image-reveal.is-visible img { transform: scale(1.005); }
html.motion-ready .image-feature__visual.image-reveal.is-visible:hover img { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) {
  html.motion-ready .image-reveal { clip-path: none; }
  html.motion-ready .image-reveal img { transform: none; }
}

@media (max-width: 700px) {
  .inner-hero--courses .inner-hero__photo img,
  .inner-hero--mentorship .inner-hero__photo img,
  .inner-hero--book .inner-hero__photo img { object-position: center top; }
  .inner-hero--book .inner-hero__media,
  .inner-hero--book .inner-hero__shade { height: min(138vw, 620px); }
  .inner-hero--mentorship .inner-hero__shade,
  .inner-hero--products .inner-hero__shade { background: linear-gradient(0deg,transparent,rgba(32,45,58,.08)); }
  .inner-hero--book .inner-hero__shade { background: linear-gradient(0deg,transparent,rgba(74,59,50,.5)); }
  .inner-hero--courses .inner-hero__shade { background: linear-gradient(0deg,transparent,rgba(48,49,55,.6)); }
  .inner-hero--agenda .inner-hero__photo img { object-position: center; }
  .inner-hero--agenda .inner-hero__shade,
  .inner-hero--invites .inner-hero__shade { background: linear-gradient(0deg,rgba(25,38,38,.2),rgba(25,38,38,.5)); }
}

@media (max-width: 980px) {
  .biography-dialog__chapters article { grid-template-columns: 130px minmax(0,1fr); }
  .biography-dialog__chapters article > p { grid-column: 2; }
}

@media (max-width: 700px) {
  .biography-actions { align-items: flex-start; flex-direction: column; }
  .biography-dialog { width: 100vw; height: 100svh; margin: 0; }
  .biography-dialog__header { min-height: 68px; padding: 12px 24px; }
  .biography-dialog__header button > span { display: none; }
  .biography-dialog__intro { padding: 54px 24px 48px; }
  .biography-dialog__intro h2 { margin: 20px 0 28px; font-size: clamp(45px,13vw,64px); }
  .biography-dialog__lead { font-size: 23px; }
  .biography-dialog__story { width: auto; margin-inline: 24px; padding: 52px 0 68px; }
  .biography-dialog__story p { font-size: 21px; line-height: 1.52; }
  .biography-dialog__story .biography-dialog__opening { font-size: 24px; }
  .biography-dialog__chapters { padding-inline: 24px; }
  .biography-dialog__chapters article { display: block; padding: 52px 0; }
  .biography-dialog__chapters article > span { display: block; margin-bottom: 19px; padding: 0; }
  .biography-dialog__chapters h3 { margin-bottom: 27px; font-size: 34px; }
  .biography-dialog__chapters article > p { font-size: 21px; }
  .biography-dialog__chapters article > p + p { margin-top: 20px; }
  .biography-dialog__footer { align-items: flex-start; flex-direction: column; padding: 58px 24px 68px; }
}

@media (max-width: 360px) {
  .inner-hero--academy h1 { font-size: 43px; }
  .inner-hero--academy h1 em { font-size: 1em; }
  .inner-hero--music h1 { font-size: 32px; }
  .inner-hero--contact h1 { font-size: 32px; }
  .inner-hero--contact h1 em { font-size: 1.65em; }
  .inner-hero--stories h1, body[data-page="conteudos"] .inner-hero h1 { font-size: 48px; }
  .learning-card h2 { font-size: 40px; }
  .display-title { font-size: 42px; }
}
