:root {
  --ink: #12121c;
  --navy: #171743;
  --blue: #292b82;
  --blue-soft: #e8e8f7;
  --gold: #e1b34d;
  --gold-light: #f4d995;
  --ivory: #faf8f2;
  --paper: #ffffff;
  --muted: #686878;
  --line: rgba(23, 23, 67, 0.14);
  --shadow: 0 26px 70px rgba(20, 20, 54, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-150%);
}

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

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

.announcement {
  position: relative;
  z-index: 20;
  padding: 8px 20px;
  background: var(--gold);
  color: #17121d;
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(18, 18, 28, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-shell,
.hero-shell,
.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span,
.footer-brand span {
  display: grid;
}

.brand strong,
.footer-brand strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand small,
.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
}

.primary-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 650;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--paper);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(225, 179, 77, 0.8);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(12, 12, 31, 0.98) 10%, rgba(25, 25, 72, 0.96) 54%, rgba(40, 42, 119, 0.92) 100%),
    url("assets/faith-landscape.webp") center/cover;
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.24;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.18;
}

.hero-glow-one {
  top: -160px;
  left: 44%;
  background: var(--gold);
}

.hero-glow-two {
  right: -120px;
  bottom: -150px;
  background: #5f68df;
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: 740px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(50px, 7vw, 100px);
  padding: 72px 0 84px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(3.5rem, 6.6vw, 6.7rem);
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
}

h3 {
  line-height: 1.25;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #17121d;
  box-shadow: 0 10px 30px rgba(225, 179, 77, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #efc45f;
  box-shadow: 0 16px 36px rgba(225, 179, 77, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--paper);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

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

.hero blockquote {
  display: grid;
  max-width: 520px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.hero blockquote span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.8;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.portrait-frame {
  position: absolute;
  top: 12px;
  right: 0;
  width: 78%;
  height: 550px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 190px 190px 16px 16px;
  background: #ebebec;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 15%;
}

.book-float {
  position: absolute;
  z-index: 2;
  bottom: 4px;
  left: 0;
  width: 42%;
  padding: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 60px rgba(5, 5, 16, 0.38);
  transform: rotate(-3deg);
}

.book-float img {
  width: 100%;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 48px;
  display: grid;
  width: 120px;
  height: 120px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--gold);
  color: #191521;
  text-align: center;
  box-shadow: 0 18px 50px rgba(3, 3, 12, 0.25);
}

.hero-seal span {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 0.9;
}

.hero-seal small {
  margin-top: 6px;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(1050px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  margin: -34px auto 0;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(24, 24, 63, 0.11);
}

.trust-bar div {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.trust-bar p {
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.section-pad {
  padding: clamp(92px, 11vw, 150px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.journey {
  background: var(--ivory);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(23, 23, 67, 0.09);
}

.journey-card.featured {
  background: var(--navy);
  color: var(--paper);
}

.card-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(41, 43, 130, 0.26);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--serif);
}

.featured .card-number {
  border-color: rgba(255,255,255,0.22);
  color: var(--gold);
}

.journey-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
}

.journey-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.book-section {
  background: var(--paper);
}

.book-layout,
.about-layout,
.speaking-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(60px, 9vw, 120px);
}

.book-art {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  background: linear-gradient(145deg, #eeeeff, #f8f2e3);
}

.book-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(41, 43, 130, 0.18);
  border-radius: 50%;
}

.book-orbit::before,
.book-orbit::after {
  position: absolute;
  border: 1px solid rgba(225, 179, 77, 0.4);
  border-radius: 50%;
  content: "";
}

.book-orbit::before {
  inset: 11%;
}

.book-orbit::after {
  inset: 25%;
}

.book-cover {
  position: relative;
  z-index: 2;
  width: 58%;
  box-shadow: 20px 24px 55px rgba(26, 25, 57, 0.24);
  transform: rotate(-2deg);
}

.book-note {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 30px;
  display: grid;
  width: 230px;
  padding: 18px 22px;
  background: var(--navy);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.book-note strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.book-note span {
  margin-top: 4px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  line-height: 1.45;
}

.book-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--navy);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.purchase-language-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  padding: 22px 20px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.purchase-language-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23,23,67,0.08);
}

.purchase-language-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.purchase-language-card > p {
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-format-list {
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.purchase-format-list li + li {
  border-top: 1px solid var(--line);
}

.purchase-format {
  display: grid;
  gap: 2px;
  padding: 11px 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 180ms ease, padding-left 180ms ease;
}

.purchase-format:hover,
.purchase-format:focus-visible {
  padding-left: 4px;
  color: var(--blue);
}

.purchase-format small {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 750;
}

.purchase-format.is-coming-soon {
  color: var(--muted);
  cursor: default;
}

.purchase-format.is-coming-soon small {
  color: #9a7a31;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.book-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(225, 179, 77, 0.17), transparent 27%),
    linear-gradient(125deg, #0d0d23, var(--navy) 58%, #292b82);
  color: var(--paper);
}

.book-page-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.22;
}

.book-page-hero::after {
  position: absolute;
  right: -240px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(225,179,77,0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(225,179,77,0.025), 0 0 0 160px rgba(225,179,77,0.018);
}

.book-page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.74fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
  margin: 0 auto;
  padding: 70px 0 80px;
}

.book-page-hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.book-page-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
}

.book-language-note {
  display: grid;
  max-width: 520px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.book-language-note span {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-language-note strong {
  color: rgba(255,255,255,0.76);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.book-page-hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.book-page-cover-frame {
  position: relative;
  z-index: 2;
  width: min(76%, 410px);
  padding: 12px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 38px 80px rgba(4,4,18,0.42);
  transform: rotate(2deg);
}

.book-page-cover-frame::before {
  position: absolute;
  z-index: -1;
  inset: 22px -28px -28px 24px;
  border: 1px solid rgba(225,179,77,0.38);
  content: "";
}

.book-page-seal {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 54px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 50px rgba(3,3,12,0.3);
}

.book-page-seal strong {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 0.9;
}

.book-page-seal span {
  margin-top: 7px;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.book-page-intro {
  background: var(--ivory);
}

.book-page-intro-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: end;
  gap: clamp(50px, 8vw, 100px);
  margin-bottom: 54px;
}

.book-page-intro-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.book-page-intro-heading h2 {
  margin-bottom: 0;
}

.book-page-intro-heading > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

.book-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.book-benefit {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}

.book-benefit.featured {
  background: var(--navy);
  color: var(--paper);
}

.book-benefit > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.book-benefit h3 {
  margin: 62px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.book-benefit.featured h3 {
  color: var(--paper);
}

.book-benefit p {
  margin: 0;
  color: var(--muted);
}

.book-benefit.featured p {
  color: rgba(255,255,255,0.66);
}

.book-inside {
  background: var(--paper);
}

.book-inside-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.book-inside-visual {
  padding: 24px;
  background: linear-gradient(145deg, #eeeeff, #f8f2e3);
  box-shadow: 0 26px 70px rgba(20,20,54,0.12);
}

.book-inside-visual img {
  width: 100%;
}

.book-inside-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.book-principles {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.book-principles::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(225,179,77,0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(225,179,77,0.03), 0 0 0 120px rgba(225,179,77,0.025);
}

.book-editions {
  background: var(--ivory);
}

.book-purchase-options {
  gap: 18px;
}

.book-purchase-options .purchase-language-card {
  min-height: 340px;
  padding: 32px 28px 22px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(23,23,67,0.06);
}

.book-purchase-options .purchase-language-card h3 {
  font-size: 1.75rem;
}

.book-purchase-options .purchase-language-card > p {
  margin-bottom: 24px;
}

.book-purchase-options .purchase-format {
  padding: 16px 0;
  font-size: 0.92rem;
}

.book-page-cta {
  padding-top: 0;
  background: var(--ivory);
}

.principles {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.principles::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(225,179,77,0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(225,179,77,0.03), 0 0 0 120px rgba(225,179,77,0.025);
}

.principles-intro {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  margin-bottom: 54px;
}

.principles-intro h2 {
  margin-bottom: 0;
}

.principles-intro > p {
  margin: 0;
  color: rgba(255,255,255,0.67);
  font-size: 1.06rem;
}

.principles-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.principles-grid article {
  min-height: 215px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background-color 180ms ease;
}

.principles-grid article:hover {
  background: rgba(255,255,255,0.055);
}

.principles-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.principles-grid h3 {
  min-height: 48px;
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
}

.principles-grid p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.podcast {
  background: #232469;
  color: var(--paper);
}

.podcast-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 120px);
}

.podcast-art {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 35px 75px rgba(4, 4, 25, 0.28);
  transform: rotate(-1.5deg);
}

.play-mark {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 74px;
  height: 74px;
  place-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.15rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.podcast-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 34px;
}

.topic-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reflections {
  background: var(--paper);
}

.reflections-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  margin-bottom: 48px;
}

.reflections-heading h2 {
  margin-bottom: 0;
}

.reflections-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.reflection-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 16px;
}

.reflection-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.reflection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(23, 23, 67, 0.09);
}

.reflection-card > span,
.reflection-copy > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reflection-card h3 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.reflection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reflection-card small {
  margin-top: 28px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reflection-card small a {
  color: inherit;
  text-decoration: none;
}

.reflection-card small a:hover,
.reflection-card small a:focus-visible {
  text-decoration: underline;
}

.reflection-featured {
  display: grid;
  min-height: 460px;
  grid-template-rows: 1.1fr 0.9fr;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
}

.reflection-image {
  min-height: 230px;
  overflow: hidden;
}

.reflection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reflection-copy {
  padding: 28px 30px 32px;
}

.reflection-copy > span {
  color: var(--gold-light);
}

.reflection-copy h3 {
  color: var(--paper);
}

.reflection-copy p {
  color: rgba(255,255,255,0.62);
}

.about {
  background: var(--ivory);
}

.about-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-copy .large-copy {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.about-page-link {
  margin-top: 18px;
}

.social-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-photo {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #e7e7e7;
}

.about-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 14%;
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 82%;
  padding: 25px 28px;
  background: rgba(23, 23, 67, 0.95);
  color: var(--paper);
}

.photo-caption span {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-caption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.speaking {
  background: var(--paper);
}

.speaking-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.speaking-copy {
  padding: 30px 0;
}

.speaking-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.speaking-topics {
  padding: 40px;
  background: var(--blue-soft);
}

.speaking-topics h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

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

.speaking-topics li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(41,43,130,0.13);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
}

.speaking-topics li span {
  color: var(--gold);
  font-family: var(--serif);
}

/* About Rolanda page */
.author-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 16%, rgba(225, 179, 77, 0.18), transparent 29%),
    linear-gradient(120deg, #0d0d24 5%, var(--navy) 56%, #2d2f8c 100%);
  color: var(--paper);
}

.author-page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.author-page-hero-shell {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
  margin: 0 auto;
  padding: 72px 0;
}

.author-page-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
}

.author-page-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
}

.author-page-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 545px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: #dedfe2;
  box-shadow: 0 34px 85px rgba(2,2,14,0.4);
}

.author-page-hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.32);
  content: "";
  pointer-events: none;
}

.author-page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.author-page-identity {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(88%, 390px);
  padding: 24px 28px;
  background: rgba(250,248,242,0.96);
  color: var(--navy);
}

.author-page-identity span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.author-page-identity strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 500;
}

.author-page-intro {
  background: var(--ivory);
}

.author-page-intro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.author-page-portrait {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #e1e1e1;
  box-shadow: 0 26px 70px rgba(20,20,54,0.12);
}

.author-page-portrait img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 18%;
}

.author-page-portrait-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 24px 26px;
  background: rgba(23,23,67,0.95);
  color: var(--paper);
}

.author-page-portrait-note span {
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.author-page-portrait-note p {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
}

.author-page-story .large-copy {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.48;
}

.author-page-story > p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
}

.author-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.author-page-facts div {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 20px;
  background: var(--paper);
}

.author-page-facts span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-page-facts strong {
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.4;
}

.author-page-faith {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.author-page-faith::before {
  position: absolute;
  top: -230px;
  right: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(225,179,77,0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 64px rgba(225,179,77,0.035), 0 0 0 128px rgba(225,179,77,0.025);
}

.author-page-faith-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.author-page-faith-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255,255,255,0.68);
  font-size: 1.04rem;
}

.author-page-faith-copy .button {
  margin-top: 20px;
}

.author-page-quote {
  position: relative;
  margin: 0;
  padding: 54px 44px 42px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.055);
}

.author-page-quote > span {
  position: absolute;
  top: 10px;
  left: 30px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}

.author-page-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.55;
}

.author-page-quote cite {
  display: block;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.author-page-mission {
  background: var(--paper);
}

.author-page-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.author-page-values article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  transition: background-color 180ms ease, transform 180ms ease;
}

.author-page-values article:hover {
  background: var(--blue-soft);
  transform: translateY(-3px);
}

.author-page-values span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.author-page-values h3 {
  margin: 58px 0 13px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.author-page-values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.author-page-cta {
  padding-top: 0;
  background: var(--paper);
}

.events-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(225, 179, 77, 0.16), transparent 28%),
    linear-gradient(125deg, #0e0e25, var(--navy) 58%, #292b82);
  color: var(--paper);
}

.events-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.2;
}

.events-hero-shell {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 640px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  margin: 0 auto;
  padding: 70px 0;
}

.events-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
}

.events-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 35px 80px rgba(4,4,20,0.38);
}

.events-hero-visual::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8,8,24,0.86));
  content: "";
}

.events-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.events-hero-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
}

.events-hero-caption span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events-hero-caption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.events-overview {
  padding: 82px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.events-overview-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 95px);
}

.events-overview-grid h2 {
  margin-bottom: 14px;
}

.events-overview-grid > div > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.event-entry {
  background: var(--ivory);
}

.event-entry-alt {
  background: var(--paper);
}

.event-heading {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 68px);
  margin-bottom: 42px;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 12px;
  border: 1px solid rgba(41,43,130,0.2);
  background: var(--paper);
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(23,23,67,0.06);
  line-height: 1;
}

.event-entry-alt .event-date {
  background: var(--ivory);
}

.event-date span,
.event-date small {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-date span {
  color: var(--blue);
}

.event-date small {
  color: var(--muted);
}

.event-date strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
}

.event-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.event-heading > div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 225px;
  gap: 14px;
}

.event-photo {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e7e5df;
  cursor: zoom-in;
  box-shadow: 0 16px 40px rgba(23,23,67,0.1);
}

.event-photo:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.event-photo:hover img,
.event-photo:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.event-photo:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.event-gallery-five .event-photo:nth-child(4) {
  grid-column: 1 / span 6;
}

.event-gallery-five .event-photo:nth-child(5) {
  grid-column: 7 / span 6;
}

.event-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 500px;
}

.event-gallery-two .event-photo,
.event-gallery-two .event-photo:first-child {
  grid-column: auto;
  grid-row: auto;
}

.event-gallery-one {
  display: block;
  max-width: 560px;
  margin: 0 auto;
}

.event-gallery-one .event-photo,
.event-gallery-one .event-photo:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.photo-lightbox {
  width: min(1100px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #0d0d18;
  color: var(--paper);
  box-shadow: 0 36px 90px rgba(0,0,0,0.55);
}

.photo-lightbox::backdrop {
  background: rgba(8,8,18,0.88);
  backdrop-filter: blur(5px);
}

.photo-lightbox img {
  width: 100%;
  max-height: calc(100vh - 125px);
  object-fit: contain;
  background: #090912;
}

.photo-lightbox p {
  margin: 0;
  padding: 14px 64px 16px 20px;
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(13,13,24,0.78);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.events-cta {
  padding-top: 0;
  background: var(--paper);
}

.connect {
  padding-top: 0;
  background: var(--paper);
}

.connect-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  overflow: hidden;
  padding: clamp(45px, 7vw, 80px);
  background: var(--navy);
  color: var(--paper);
}

.connect-card::after {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(225,179,77,0.23);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(225,179,77,0.04), 0 0 0 100px rgba(225,179,77,0.025);
}

.connect-card > * {
  position: relative;
  z-index: 2;
}

.connect-card h2 {
  margin-bottom: 14px;
}

.connect-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.67);
}

.connect-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 70px 0 20px;
  background: #0d0d18;
  color: var(--paper);
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand small {
  max-width: 270px;
  margin-top: 4px;
  line-height: 1.45;
  text-transform: none;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}

.footer-main nav a {
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 7px;
}

.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-light);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1000px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 114px 0 auto;
    display: grid;
    max-height: calc(100vh - 114px);
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: #11111e;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }

  .primary-nav .nav-cta {
    margin-top: 14px;
    border: 1px solid var(--gold);
    text-align: center;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

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

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .events-hero-shell {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .book-page-hero-shell {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .book-page-hero-copy {
    max-width: 760px;
  }

  .book-page-hero-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .events-hero-copy {
    max-width: 760px;
  }

  .events-hero-visual {
    width: min(620px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

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

  .journey-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 26px;
  }

  .book-layout,
  .about-layout,
  .speaking-layout,
  .podcast-layout {
    grid-template-columns: 1fr;
  }

  .book-inside-layout {
    grid-template-columns: 1fr;
  }

  .book-inside-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .book-art,
  .podcast-art,
  .about-photo {
    width: min(620px, 100%);
    margin: 0 auto;
  }

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

  .podcast-copy {
    order: -1;
  }

  .reflections-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .reflection-featured {
    grid-column: 1 / -1;
  }

  .event-gallery {
    grid-auto-rows: 190px;
  }

  .event-gallery-two {
    grid-auto-rows: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .announcement p {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .nav-shell,
  .section-shell,
  .hero-shell,
  .events-hero-shell,
  .book-page-hero-shell,
  .footer-main,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 72px;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .primary-nav {
    inset-block-start: 104px;
    max-height: calc(100vh - 104px);
  }

  .hero {
    min-height: 0;
  }

  .events-hero-shell {
    min-height: 0;
    gap: 42px;
    padding: 65px 0 72px;
  }

  .book-page-hero-shell {
    min-height: 0;
    gap: 42px;
    padding: 65px 0 76px;
  }

  .book-page-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .book-language-note {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 32px;
  }

  .book-page-hero-visual {
    min-height: 510px;
  }

  .book-page-cover-frame {
    width: min(74%, 350px);
  }

  .book-page-seal {
    right: 4px;
    bottom: 22px;
    width: 102px;
    height: 102px;
  }

  .events-hero-visual {
    min-height: 460px;
  }

  .hero-shell {
    min-height: 0;
    gap: 55px;
    padding: 65px 0 78px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero blockquote {
    margin-top: 32px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .portrait-frame {
    width: 82%;
    height: 440px;
    border-radius: 120px 120px 12px 12px;
  }

  .book-float {
    width: 42%;
  }

  .hero-seal {
    right: -8px;
    bottom: 20px;
    width: 96px;
    height: 96px;
  }

  .trust-bar {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .trust-bar div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-pad {
    padding: 90px 0;
  }

  .events-overview {
    padding: 64px 0;
  }

  .events-overview-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-heading {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .event-date {
    min-height: 96px;
  }

  .event-date strong {
    font-size: 1.8rem;
  }

  .event-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .event-gallery,
  .event-gallery-two,
  .event-gallery-one {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .event-photo,
  .event-photo:first-child,
  .event-gallery-two .event-photo,
  .event-gallery-one .event-photo,
  .event-gallery-one .event-photo:first-child,
  .event-gallery-five .event-photo:nth-child(4),
  .event-gallery-five .event-photo:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .event-gallery-one .event-photo,
  .event-gallery-one .event-photo:first-child {
    aspect-ratio: 3 / 4;
  }

  .journey-card {
    padding: 28px;
  }

  .book-art {
    min-height: 480px;
  }

  .book-cover {
    width: 62%;
  }

  .book-note {
    right: 12px;
    bottom: 12px;
    width: 190px;
  }

  .purchase-options {
    grid-template-columns: 1fr;
  }

  .purchase-language-card {
    min-height: auto;
  }

  .book-page-intro-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .book-page-intro-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .book-benefit-grid {
    grid-template-columns: 1fr;
  }

  .book-benefit {
    min-height: auto;
    padding: 28px;
  }

  .book-benefit h3 {
    margin-top: 34px;
  }

  .book-inside-visual {
    padding: 12px;
  }

  .book-purchase-options .purchase-language-card {
    min-height: auto;
  }

  .principles-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .principles-grid article {
    min-height: 210px;
    padding: 22px;
  }

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

  .reflection-featured {
    grid-column: auto;
  }

  .reflection-card {
    min-height: 320px;
  }

  .about-photo,
  .about-photo img {
    min-height: 500px;
    height: 500px;
  }

  .speaking-topics {
    padding: 28px;
  }

  .connect-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 26px;
  }

  .connect-actions {
    justify-content: flex-start;
  }

  .connect-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    min-height: auto;
  }

  .principles-grid h3 {
    min-height: 0;
  }
}

@media (max-width: 1000px) {
  .author-page-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 48px;
  }

  .author-page-intro-layout,
  .author-page-faith-layout {
    grid-template-columns: 1fr;
  }

  .author-page-portrait {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .author-page-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .author-page-hero-shell {
    width: min(100% - 28px, 1180px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 65px 0 74px;
  }

  .author-page-hero-visual {
    min-height: 520px;
  }

  .author-page-portrait,
  .author-page-portrait img {
    min-height: 530px;
    height: 530px;
  }

  .author-page-facts,
  .author-page-values {
    grid-template-columns: 1fr;
  }

  .author-page-facts div {
    min-height: auto;
  }

  .author-page-quote {
    padding: 52px 28px 34px;
  }

  .author-page-quote p {
    font-size: 1.25rem;
  }

  .author-page-values article {
    min-height: auto;
  }

  .author-page-values h3 {
    margin-top: 32px;
  }
}

@media (max-width: 430px) {
  .author-page-hero-visual {
    min-height: 455px;
  }

  .author-page-identity {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .author-page-portrait,
  .author-page-portrait img {
    min-height: 470px;
    height: 470px;
  }

  .author-page-portrait-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 20px;
  }
}

/* Contact page */
.button-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--navy);
  color: var(--paper);
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10,10,28,0.98) 5%, rgba(23,23,67,0.95) 56%, rgba(41,43,130,0.9)),
    url("assets/faith-landscape.webp") center/cover;
  color: var(--paper);
}

.contact-page-hero::before {
  position: absolute;
  top: -240px;
  right: -170px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(225,179,77,0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(225,179,77,0.035), 0 0 0 140px rgba(225,179,77,0.025);
}

.contact-page-hero-shell {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 670px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
  margin: 0 auto;
  padding: 72px 0;
}

.contact-page-hero-copy h1 {
  max-width: 760px;
}

.contact-page-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
}

.contact-hero-card {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 30px 75px rgba(2,2,14,0.32);
  backdrop-filter: blur(12px);
}

.contact-hero-card::before {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(225,179,77,0.22);
  content: "";
  pointer-events: none;
}

.contact-hero-mark {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}

.contact-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-card > p {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  margin: 8px 0 26px;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.contact-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hero-card li {
  position: relative;
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
}

.contact-hero-card li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.contact-purpose {
  background: var(--ivory);
}

.contact-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.contact-purpose-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(23,23,67,0.09);
}

.contact-purpose-card.featured {
  background: var(--navy);
  color: var(--paper);
}

.contact-purpose-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.contact-purpose-card h3 {
  margin: 62px 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.contact-purpose-card.featured h3 {
  color: var(--paper);
}

.contact-purpose-card p {
  margin: 0 0 28px;
  color: var(--muted);
}

.contact-purpose-card.featured p {
  color: rgba(255,255,255,0.65);
}

.contact-purpose-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-purpose-card.featured a {
  color: var(--gold-light);
}

.contact-direct {
  background: var(--paper);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.contact-form-intro > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-form-notes {
  display: grid;
  gap: 0;
  margin-top: 36px;
}

.contact-form-notes p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-form-notes strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.contact-form-notes span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 28px 70px rgba(20,20,54,0.10);
}

.form-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfcfd9;
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 170px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(39, 83, 177, 0.14);
}

.form-field small,
.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-form .button {
  width: fit-content;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-status {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: rgba(39, 83, 177, 0.08);
  color: var(--navy);
  font-weight: 700;
}

.form-status.error {
  border-left-color: #9f2e2e;
  background: rgba(159, 46, 46, 0.08);
  color: #7a2020;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-follow {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.contact-follow::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  opacity: 0.35;
}

.contact-follow-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(55px, 8vw, 100px);
}

.contact-follow-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.65);
}

.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-social-grid a {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-social-grid a:hover,
.contact-social-grid a:focus-visible {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}

.contact-social-grid span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-social-grid strong {
  margin: 30px 0 18px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.contact-social-grid small {
  color: rgba(255,255,255,0.58);
  font-weight: 750;
}

.contact-page-cta {
  padding-top: 0;
  background: var(--paper);
}

@media (max-width: 1000px) {
  .contact-page-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 48px;
  }

  .contact-form-layout,
  .contact-follow-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: min(100%, 760px);
  }
}

@media (max-width: 720px) {
  .contact-page-hero-shell {
    width: min(100% - 28px, 1180px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 65px 0 74px;
  }

  .contact-hero-card {
    padding: 34px 28px;
  }

  .contact-purpose-grid,
  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-purpose-card {
    min-height: auto;
    padding: 28px;
  }

  .contact-purpose-card h3 {
    margin-top: 36px;
  }

  .form-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-form .button {
    width: 100%;
  }

  .contact-social-grid a {
    min-height: 170px;
  }
}


/* Podcast and media page */
.media-page-hero{position:relative;overflow:hidden;color:var(--paper);background:radial-gradient(circle at 18% 18%,rgba(225,179,77,.18),transparent 30%),linear-gradient(130deg,#111137 0%,var(--navy) 56%,#292b82 100%)}
.media-page-hero:before{content:"";position:absolute;width:34rem;height:34rem;right:-17rem;top:-12rem;border:1px solid rgba(244,217,149,.2);border-radius:50%}
.media-page-hero-shell{width:min(1180px,calc(100% - 40px));min-height:650px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(380px,.78fr);align-items:center;gap:clamp(48px,8vw,110px);padding:76px 0}
.media-page-hero-copy{position:relative;z-index:1}
.media-page-hero-copy h1{max-width:760px;margin:0 0 24px;color:var(--paper);font-family:var(--serif);font-size:clamp(3rem,6.3vw,6.15rem);font-weight:500;line-height:.96;letter-spacing:-.045em}
.media-page-hero-copy>p:not(.eyebrow){max-width:680px;margin:0;color:rgba(255,255,255,.78);font-size:clamp(1.05rem,1.7vw,1.25rem);line-height:1.75}
.media-page-hero-visual{position:relative;z-index:1;align-self:end}
.media-page-hero-visual:before{content:"";position:absolute;inset:8% -8% -5% 12%;border:1px solid rgba(244,217,149,.42);z-index:-1}
.media-page-hero-visual img{width:100%;max-height:570px;display:block;object-fit:cover;object-position:center top;box-shadow:var(--shadow)}
.media-page-hero-note{position:absolute;left:-44px;bottom:38px;min-width:285px;display:flex;align-items:center;gap:16px;padding:18px 22px;color:var(--navy);background:var(--paper);box-shadow:0 20px 45px rgba(8,8,32,.26)}
.media-page-hero-note>span{width:46px;height:46px;flex:0 0 auto;display:grid;place-items:center;color:var(--navy);background:var(--gold);border-radius:50%;font-size:.9rem}
.media-page-hero-note p{margin:0}.media-page-hero-note strong,.media-page-hero-note small{display:block}.media-page-hero-note strong{font-family:var(--serif);font-size:1.08rem}.media-page-hero-note small{margin-top:4px;color:var(--muted)}
.media-page-latest{background:var(--ivory)}.media-page-video-layout{display:grid;grid-template-columns:minmax(280px,.72fr) minmax(480px,1.28fr);align-items:center;gap:clamp(42px,7vw,90px)}
.media-page-video-copy h2,.media-page-invite-copy h2{margin:0 0 22px;font-family:var(--serif);font-size:clamp(2.4rem,4.6vw,4.7rem);font-weight:500;line-height:1.04;letter-spacing:-.035em}
.media-page-video-copy>p:not(.eyebrow){margin:0 0 24px;color:var(--muted);font-size:1.08rem;line-height:1.75}
.media-video-frame{position:relative;aspect-ratio:16/9;overflow:hidden;background:#09091f;border:10px solid var(--paper);box-shadow:var(--shadow)}.media-video-frame iframe{width:100%;height:100%;display:block;border:0}
.media-page-topics{background:var(--paper)}.media-topic-grid{margin-top:46px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.media-topic-card{min-height:290px;padding:30px 26px;border:1px solid var(--line);background:var(--paper);transition:transform 180ms ease,box-shadow 180ms ease}.media-topic-card:hover{transform:translateY(-5px);box-shadow:0 22px 42px rgba(20,20,54,.1)}.media-topic-card.featured{color:var(--paper);background:var(--navy);border-color:var(--navy)}
.media-topic-card>span{display:inline-block;margin-bottom:70px;color:var(--gold);font-size:.75rem;font-weight:800;letter-spacing:.16em}.media-topic-card h3{margin:0 0 13px;color:var(--navy);font-family:var(--serif);font-size:1.65rem;font-weight:600}.media-topic-card.featured h3{color:var(--paper)}.media-topic-card p{margin:0;color:var(--muted);line-height:1.65}.media-topic-card.featured p{color:rgba(255,255,255,.72)}
.media-page-invite{color:var(--paper);background:linear-gradient(110deg,rgba(17,17,55,.98),rgba(41,43,130,.92)),url("assets/faith-landscape.webp") center/cover}.media-page-invite-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);align-items:center;gap:clamp(50px,8vw,110px)}
.media-page-invite-copy p:not(.eyebrow){max-width:650px;margin:0 0 28px;color:rgba(255,255,255,.74);font-size:1.08rem;line-height:1.75}.media-page-invite-list{border-top:1px solid rgba(255,255,255,.2)}.media-page-invite-list div{display:grid;grid-template-columns:44px 1fr;gap:10px;padding:21px 0;border-bottom:1px solid rgba(255,255,255,.2)}.media-page-invite-list span{color:var(--gold-light);font-size:.75rem;letter-spacing:.14em}.media-page-invite-list strong{font-family:var(--serif);font-size:1.2rem;font-weight:500}.media-page-cta{background:var(--ivory)}
@media(max-width:1000px){.media-page-hero-shell,.media-page-video-layout,.media-page-invite-layout{grid-template-columns:1fr}.media-page-hero-shell{padding-bottom:0}.media-page-hero-copy{max-width:760px}.media-page-hero-visual{width:min(620px,88%);justify-self:center}.media-topic-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.media-page-hero-shell{width:min(100% - 30px,1180px);min-height:0;padding-top:58px}.media-page-hero-copy h1{font-size:clamp(2.75rem,15vw,4.5rem)}.media-page-hero-visual{width:100%}.media-page-hero-note{position:relative;left:auto;bottom:auto;min-width:0;margin:-18px 15px 0}.media-page-video-layout{gap:32px}.media-video-frame{border-width:5px}.media-topic-grid{grid-template-columns:1fr}.media-topic-card{min-height:230px}.media-topic-card>span{margin-bottom:40px}}


/* Podcast and media content expansion */
.media-page-hero-video{position:relative;z-index:1;width:100%;align-self:center}
.media-page-hero-player{position:relative;aspect-ratio:16/9;overflow:hidden;background:#080820;border:8px solid rgba(255,255,255,.96);box-shadow:0 30px 75px rgba(5,5,28,.42)}
.media-page-hero-player iframe{width:100%;height:100%;display:block;border:0}
.media-page-latest-note{position:relative;width:calc(100% - 42px);margin:-1px auto 0;display:flex;align-items:center;gap:13px;padding:14px 18px;color:var(--navy);background:var(--paper);box-shadow:0 16px 36px rgba(5,5,28,.25)}
.media-page-latest-note>span{width:10px;height:10px;flex:0 0 auto;border-radius:50%;background:#d4473f;box-shadow:0 0 0 5px rgba(212,71,63,.14)}
.media-page-latest-note p{margin:0}.media-page-latest-note strong,.media-page-latest-note small{display:block}.media-page-latest-note strong{font-family:var(--serif);font-size:1.02rem}.media-page-latest-note small{margin-top:2px;color:var(--muted)}
.media-page-popular{background:var(--ivory)}
.media-popular-grid{margin-top:48px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.media-video-card{display:grid;grid-template-columns:minmax(190px,.9fr) minmax(220px,1.1fr);min-height:220px;overflow:hidden;color:var(--navy);background:var(--paper);border:1px solid var(--line);box-shadow:0 15px 38px rgba(20,20,54,.08);text-decoration:none;transition:transform 180ms ease,box-shadow 180ms ease}
.media-video-card:hover,.media-video-card:focus-visible{transform:translateY(-5px);box-shadow:0 24px 48px rgba(20,20,54,.15)}
.media-video-thumb{position:relative;min-height:220px;overflow:hidden;background:#10102d}
.media-video-thumb img{width:100%;height:100%;display:block;object-fit:cover;transition:transform 260ms ease}
.media-video-card:hover .media-video-thumb img{transform:scale(1.035)}
.media-card-play{position:absolute;left:18px;bottom:18px;width:48px;height:48px;display:grid;place-items:center;color:var(--navy);background:var(--gold);border-radius:50%;box-shadow:0 10px 25px rgba(0,0,0,.25);font-size:.85rem}
.media-video-card-copy{display:flex;flex-direction:column;justify-content:center;padding:25px}
.media-video-card-copy small{margin-bottom:12px;color:var(--blue);font-size:.7rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.media-video-card-copy strong{font-family:var(--serif);font-size:clamp(1.25rem,2vw,1.65rem);font-weight:600;line-height:1.2}
.media-video-card-copy>span{margin-top:20px;color:var(--blue);font-size:.82rem;font-weight:800}
@media(max-width:1000px){.media-page-hero-video{width:min(760px,100%);justify-self:center}.media-popular-grid{grid-template-columns:1fr}}
@media(max-width:620px){.media-page-hero-player{border-width:5px}.media-page-latest-note{width:calc(100% - 20px)}.media-video-card{grid-template-columns:1fr}.media-video-thumb{min-height:0;aspect-ratio:16/9}.media-video-card-copy{padding:22px}}
