:root {
  --plum: #311e33;
  --gold: #eebd4a;
  --ivory: #f3e8d0;
  --charcoal: #171418;
  --midnight-plum: #1c111d;
  --royal-purple: #4a2a58;
  --navy: #16233c;
  --emerald: #25594b;
  --burgundy: #5a2234;
  --taupe: #a89a87;
  --cream: #faf6ee;
  --white: #fffdf9;
  --muted: #766b77;
  --border: rgba(49, 30, 51, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Montserrat, Inter, sans-serif;
  --shadow: 0 28px 80px rgba(20, 10, 22, .18);
}


/* ==================================================
   GLOBAL
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--midnight-plum);
  background: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-dark {
  color: var(--white);
  background: var(--midnight-plum);
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}


/* ==================================================
   ACCESSIBILITY
================================================== */

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--midnight-plum);
  background: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gold),
    #fff1ad
  );
  box-shadow:
    0 0 18px rgba(238, 189, 74, .75);
}


/* ==================================================
   HEADER
   MATCHES LANDING PAGE
================================================== */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  color: var(--white);

  border-top:
    2px solid rgba(238, 189, 74, .92);

  border-bottom:
    1px solid rgba(238, 189, 74, .2);

  background:
    rgba(25, 14, 27, .96);

  box-shadow:
    0 12px 36px rgba(0, 0, 0, .22);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.header-inner {
  width:
    min(1280px, calc(100% - 36px));

  min-height: 86px;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 26px;
}


/* BRAND */

.brand {
  min-width: max-content;

  display: inline-flex;
  align-items: center;

  gap: 13px;

  color: var(--white);

  font-family: var(--serif);

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;
}


.brand img {
  flex: 0 0 64px;

  width: 64px;
  height: 64px;

  aspect-ratio: 1;

  object-fit: contain;

  border-radius: 0;

  filter:
    drop-shadow(
      0 8px 14px rgba(0, 0, 0, .35)
    );
}


.brand-wordmark {
  display: grid;

  justify-items: center;

  gap: 3px;
}


.brand-wordmark strong {
  display: block;

  color: var(--white);

  font-family: var(--serif);

  font-size: 22px;
  font-weight: 700;

  line-height: .9;

  letter-spacing: .13em;
}


.brand-wordmark small {
  display: block;

  margin: 0;

  padding-left: .58em;

  color: var(--gold);

  font-family: var(--sans);

  font-size: 7px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: .58em;

  text-align: center;
}


/* NAVIGATION */

.site-nav {
  display: flex;
  align-items: center;

  gap: clamp(14px, 1.7vw, 25px);
}


.site-nav a {
  color:
    rgba(255, 253, 249, .8);

  font-family: var(--sans);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .07em;

  line-height: 1;

  white-space: nowrap;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    color .2s ease,
    transform .2s ease;
}


.site-nav a:hover {
  color: var(--gold);
}


/* HAMBURGER */

.menu-toggle {
  display: none;

  padding: 8px;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 5px 0;

  background: var(--gold);

  transition:
    transform .2s ease,
    opacity .2s ease;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.eyebrow {
  margin: 0 0 16px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .19em;

  text-transform: uppercase;
}

.eyebrow-dark {
  color: #946407;
}

h1,
h2,
h3 {
  margin-top: 0;

  font-family: var(--serif);

  line-height: 1;

  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;

  font-size:
    clamp(48px, 6.5vw, 84px);

  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 22px;

  color: var(--plum);

  font-size:
    clamp(39px, 5vw, 64px);

  letter-spacing: -.035em;
}

.section-dark h2 {
  color: var(--white);
}

h1 em,
h2 em {
  color: var(--gold);

  font-weight: 600;
}


/* ==================================================
   BUTTONS
================================================== */

.button {
  min-height: 56px;

  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .06em;

  text-align: center;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  color: var(--midnight-plum);

  background:
    linear-gradient(
      135deg,
      #f8dfa0,
      var(--gold) 55%,
      #d89b25
    );

  box-shadow:
    0 16px 42px rgba(238,189,74,.22);
}

a:focus-visible,
button:focus-visible {
  outline:
    3px solid rgba(238,189,74,.58);

  outline-offset: 4px;
}


/* ==================================================
   SECTION HEADINGS
================================================== */

.section-heading {
  max-width: 780px;

  margin:
    0 auto 50px;

  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  margin: 0 auto;

  max-width: 720px;

  color: var(--muted);
}

.light-heading > p:not(.eyebrow) {
  color:
    rgba(255,253,249,.68);
}


/* ==================================================
   BIBLE GUIDES
================================================== */

.guides-section {
  position: relative;

  min-height: 790px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(238,189,74,.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(74,42,88,.38),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #120a13,
      var(--midnight-plum) 50%,
      #351d39
    );
}

.guides-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: .13;

  background-image:
    linear-gradient(
      rgba(255,255,255,.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.04) 1px,
      transparent 1px
    );

  background-size:
    64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 92%
    );
}

.guides-inner {
  position: relative;

  z-index: 2;

  padding:
    105px 0 140px;
}

.guides-inner .section-heading {
  max-width: 900px;
}


.journey-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  align-items: start;

  gap: 26px;
}


.journey-card {
  position: relative;

  min-height: 0;

  overflow: hidden;

  border:
    1px solid rgba(238,189,74,.28);

  border-radius: 30px;

  color: var(--white);

  background:
    rgba(255,255,255,.055);

  box-shadow:
    0 30px 90px rgba(0,0,0,.24);

  backdrop-filter:
    blur(14px);

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.journey-card::before {
  content: "";

  position: absolute;

  right: -90px;
  bottom: -120px;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(238,189,74,.23),
      transparent 66%
    );

  pointer-events: none;
}

.journey-card:hover,
.journey-card[open] {
  border-color:
    rgba(238,189,74,.62);

  box-shadow:
    0 38px 105px rgba(0,0,0,.32);
}

.journey-prophecy {
  background:
    linear-gradient(
      145deg,
      rgba(22,35,60,.76),
      rgba(37,89,75,.37)
    );
}

.journey-jesus {
  background:
    linear-gradient(
      145deg,
      rgba(74,42,88,.75),
      rgba(90,34,52,.31)
    );
}

.journey-summary {
  position: relative;

  z-index: 2;

  padding:
    38px 40px 35px;

  cursor: pointer;

  list-style: none;
}

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

.journey-summary::marker {
  content: "";
}

.journey-summary:hover .journey-toggle {
  color: var(--gold);
}

.journey-number {
  display: grid;

  place-items: center;

  width: 54px;
  height: 54px;

  margin-bottom: 34px;

  border:
    1px solid rgba(238,189,74,.5);

  border-radius: 50%;

  color: var(--gold);

  font-family: var(--serif);

  font-size: 22px;
}

.journey-label {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .16em;
}

.journey-card h2 {
  margin-bottom: 15px;

  font-size:
    clamp(38px, 4.1vw, 56px);
}

.journey-card p {
  max-width: 510px;

  margin:
    0 0 27px;

  color:
    rgba(255,255,255,.69);

  font-size: 13px;
}

.journey-toggle {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;

  color: var(--ivory);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .07em;

  text-transform: uppercase;

  transition:
    color .2s ease;
}

.journey-toggle b {
  flex:
    0 0 34px;

  width: 34px;
  height: 34px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(238,189,74,.46);

  border-radius: 50%;

  color: var(--gold);

  font-size: 22px;
  font-weight: 400;

  line-height: 1;

  transition:
    transform .25s ease,
    background .25s ease;
}

.journey-card[open] .journey-toggle b {
  color: var(--midnight-plum);

  background: var(--gold);

  transform:
    rotate(45deg);
}


.guide-list {
  position: relative;

  z-index: 2;

  padding:
    18px 20px 22px;

  display: grid;

  gap: 9px;

  border-top:
    1px solid rgba(238,189,74,.2);

  background:
    rgba(10,5,11,.2);
}

.guide-item {
  min-width: 0;

  padding:
    14px 14px 14px 12px;

  display: grid;

  grid-template-columns:
    35px minmax(0, 1fr) auto;

  align-items: center;

  gap: 12px;

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 15px;

  color: var(--white);

  background:
    rgba(255,255,255,.045);

  text-decoration: none;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.guide-item:hover {
  border-color:
    rgba(238,189,74,.48);

  background:
    rgba(255,255,255,.09);

  transform:
    translateX(4px);
}

.guide-index {
  display: grid;

  place-items: center;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  color: var(--gold);

  background:
    rgba(238,189,74,.1);

  font-family: var(--serif);

  font-size: 15px;
  font-weight: 700;
}

.guide-item-copy {
  min-width: 0;
}

.guide-item-copy strong,
.guide-item-copy small {
  display: block;
}

.guide-item-copy strong {
  color: var(--ivory);

  font-family: var(--serif);

  font-size: 19px;

  line-height: 1.1;
}

.guide-item-copy small {
  margin-top: 5px;

  color:
    rgba(255,255,255,.57);

  font-size: 10px;

  line-height: 1.45;
}

.guide-item > b {
  color: var(--gold);

  font-size: 18px;

  transition:
    transform .2s ease;
}

.guide-item:hover > b {
  transform:
    translateX(3px);
}


.ambient {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter:
    blur(100px);

  opacity: .1;
}

.ambient-one {
  top: -180px;
  right: -180px;

  background: var(--gold);
}

.ambient-two {
  bottom: -230px;
  left: -180px;

  background:
    var(--royal-purple);
}

.section-curve {
  position: absolute;

  right: -5%;
  bottom: -82px;
  left: -5%;

  height: 145px;

  border-radius:
    50% 50% 0 0;

  background:
    var(--white);

  transform:
    rotate(-1.5deg);
}


/* ==================================================
   LIVE DISCUSSION
================================================== */

.live-section {
  padding:
    125px 0 112px;
}

.live-grid {
  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  align-items: center;

  gap: 85px;
}

.live-copy > p:not(.eyebrow) {
  max-width: 640px;

  margin:
    0 0 30px;

  color: var(--muted);
}

.live-card {
  position: relative;

  padding: 42px;

  overflow: hidden;

  border:
    1px solid rgba(238,189,74,.45);

  border-radius: 28px;

  color: var(--white);

  background:
    linear-gradient(
      145deg,
      var(--midnight-plum),
      #352039
    );

  box-shadow:
    var(--shadow);
}

.live-card::after {
  content: "";

  position: absolute;

  right: -80px;
  bottom: -100px;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(238,189,74,.22),
      transparent 70%
    );

  pointer-events: none;
}

.meeting-kicker {
  position: relative;

  z-index: 2;

  margin:
    0 0 18px;

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .13em;
}

.meeting-kicker > span {
  flex:
    0 0 9px;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #71e1ae;

  box-shadow:
    0 0 0 7px rgba(113,225,174,.1),
    0 0 18px rgba(113,225,174,.55);

  animation:
    pulse 1.8s ease-in-out infinite;
}

.meeting-schedule {
  position: relative;

  z-index: 2;

  margin-bottom: 28px;

  padding-bottom: 26px;

  display: grid;

  border-bottom:
    1px solid rgba(238,189,74,.22);
}

.meeting-schedule span {
  color: var(--ivory);

  font-size:
    clamp(17px, 2vw, 23px);

  font-weight: 800;

  letter-spacing: .13em;

  line-height: 1.2;
}

.meeting-schedule strong {
  margin:
    5px 0 1px;

  color: var(--gold);

  font-family: var(--serif);

  font-size:
    clamp(58px, 7vw, 86px);

  font-weight: 700;

  letter-spacing: -.045em;

  line-height: .9;
}

.meeting-schedule em {
  color:
    rgba(255,255,255,.72);

  font-size: 11px;

  font-style: normal;
  font-weight: 700;

  letter-spacing: .2em;
}

.meeting-countdown {
  position: relative;

  z-index: 2;
}

.meeting-countdown > p:first-child {
  margin:
    0 0 12px;

  color:
    rgba(255,255,255,.65);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.countdown-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 9px;
}

.countdown-grid > div {
  min-width: 0;

  padding:
    13px 7px 11px;

  border:
    1px solid rgba(238,189,74,.24);

  border-radius: 14px;

  background:
    rgba(255,255,255,.055);

  text-align: center;
}

.countdown-grid strong,
.countdown-grid span {
  display: block;
}

.countdown-grid strong {
  color: var(--ivory);

  font-family: var(--serif);

  font-size:
    clamp(28px, 4vw, 42px);

  line-height: .92;
}

.countdown-grid span {
  margin-top: 7px;

  color:
    rgba(255,255,255,.48);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.next-meeting-date {
  margin:
    13px 0 0;

  color: var(--gold);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: .035em;
}

.local-meeting-date {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 600;
}

.meeting-details {
  position: relative;

  z-index: 2;

  display: block;

  margin-top: 24px;

  color:
    rgba(255,255,255,.61);

  font-size: 11px;
}

.live-zoom-link {
  position: relative;

  z-index: 2;

  min-height: 48px;

  margin-top: 25px;

  padding:
    0 19px;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  border:
    1px solid rgba(238,189,74,.58);

  border-radius: 999px;

  color:
    var(--midnight-plum);

  background:
    var(--gold);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .06em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.live-zoom-link:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 16px 34px rgba(238,189,74,.2);
}


/* ==================================================
   WATCH
================================================== */

.watch-section {
  padding:
    105px 0 115px;
}

.video-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.video-card {
  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 23px;

  background:
    var(--white);

  box-shadow:
    0 20px 56px rgba(49,30,51,.08);

  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.video-card:hover {
  transform:
    translateY(-7px);

  box-shadow:
    0 28px 75px rgba(49,30,51,.14);
}

.video-preview {
  position: relative;

  aspect-ratio:
    16 / 9;

  display: block;

  overflow: hidden;

  background:
    var(--midnight-plum);
}

.video-thumbnail {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.video-card:hover .video-thumbnail {
  transform:
    scale(1.035);

  opacity: .8;
}

.video-preview::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(20,10,22,.56),
      transparent 55%
    );
}

.video-kicker {
  position: absolute;

  z-index: 2;

  top: 15px;
  left: 15px;

  padding:
    6px 9px;

  border-radius: 999px;

  color: var(--ivory);

  background:
    rgba(28,17,29,.78);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: .12em;
}

.play-button {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: 50%;

  width: 55px;
  height: 55px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(255,255,255,.65);

  border-radius: 50%;

  color:
    var(--midnight-plum);

  background:
    var(--gold);

  box-shadow:
    0 16px 35px rgba(0,0,0,.26);

  transform:
    translate(-50%, -50%);
}

.video-copy {
  padding: 24px;
}

.video-copy h3 {
  min-height: 58px;

  margin-bottom: 14px;

  color: var(--plum);

  font-size: 27px;
}

.video-copy a {
  color: #8d610c;

  font-size: 10px;
  font-weight: 700;

  text-decoration: none;

  text-transform: uppercase;
}

.channel-link {
  width: fit-content;

  margin:
    42px auto 0;

  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--plum);

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  text-transform: uppercase;
}

.channel-link span {
  color: #9b6c0e;

  transition:
    transform .2s ease;
}

.channel-link:hover span {
  transform:
    translateX(5px);
}


/* ==================================================
   PROGRAMS
================================================== */

.programs-section {
  padding:
    112px 0;

  background:
    radial-gradient(
      circle at 16% 30%,
      rgba(238,189,74,.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #110a12,
      var(--midnight-plum) 54%,
      #322036
    );
}

.programs-grid {
  display: grid;

  grid-template-columns:
    .78fr 1.22fr;

  align-items: center;

  gap: 78px;
}

.programs-art {
  width:
    min(500px, 100%);

  min-height: 0;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(130px, .68fr);

  align-items: end;

  gap: 0;
}

.program-primary,
.program-secondary {
  position: relative;

  display: block;

  overflow: hidden;

  border:
    1px solid rgba(238,189,74,.42);

  background:
    #0b070c;

  box-shadow:
    0 30px 72px rgba(0,0,0,.43);

  text-decoration: none;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.program-primary {
  z-index: 4;

  width:
    min(100%, 310px);

  justify-self: end;

  border-radius: 24px;

  transform:
    rotate(-2deg);
}

.program-secondary {
  z-index: 3;

  width:
    min(100%, 205px);

  margin-left: -28px;
  margin-bottom: 24px;

  justify-self: start;

  border-radius: 22px;

  transform:
    rotate(3deg);
}

.program-primary:hover {
  transform:
    rotate(-1deg)
    translateY(-6px);

  box-shadow:
    0 38px 84px rgba(0,0,0,.52);
}

.program-secondary:hover {
  transform:
    rotate(2deg)
    translateY(-6px);

  box-shadow:
    0 36px 80px rgba(0,0,0,.5);
}

.program-primary img,
.program-secondary img {
  width: 100%;
  height: auto;

  object-fit: contain;
}

.program-secondary img {
  padding: 8px;

  background:
    #050505;
}

.programs-copy > p:not(.eyebrow) {
  max-width: 650px;

  margin:
    0 0 30px;

  color:
    rgba(255,255,255,.67);
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
  padding:
    76px 24px 24px;

  color: var(--ivory);

  background:
    #0e090f;

  text-align: center;

  border-top:
    1px solid rgba(238,189,74,.17);
}

.footer-brand {
  display: inline-flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 32px;

  text-align: left;
}

.footer-brand img {
  width: 82px;
  height: 82px;

  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: var(--serif);

  font-size: 23px;

  letter-spacing: .1em;
}

.footer-brand span {
  color:
    rgba(255,255,255,.46);

  font-size: 9px;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.social-intro {
  margin:
    0 0 15px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .16em;

  text-transform: uppercase;
}

.social-links {
  display: flex;

  flex-wrap: wrap;
  justify-content: center;

  gap: 9px;
}

.social-link {
  min-height: 38px;

  padding:
    0 13px;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  border:
    1px solid rgba(255,255,255,.11);

  border-radius: 999px;

  color:
    rgba(255,255,255,.7);

  font-size: 9px;
  font-weight: 600;

  text-decoration: none;

  transition:
    transform .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.social-link:hover {
  color: var(--gold);

  border-color:
    rgba(238,189,74,.42);

  transform:
    translateY(-2px);
}

.reading-journey-link {
  width: fit-content;

  margin:
    22px auto 0;

  display: block;

  color: rgba(255,255,255,.82);

  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;

  text-align: center;
  text-decoration-color: rgba(238,189,74,.55);
  text-underline-offset: 4px;

  transition:
    color .2s ease,
    text-decoration-color .2s ease;
}

.reading-journey-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.footer-bottom {
  width:
    min(1080px, 100%);

  margin:
    42px auto 0;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid rgba(255,255,255,.08);

  color:
    rgba(255,255,255,.39);

  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;

  flex-wrap: wrap;
  justify-content: center;

  gap: 20px;
}

.footer-bottom a {
  color:
    rgba(255,255,255,.48);

  text-decoration: none;
}

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


/* ==================================================
   REVEAL
================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}

@keyframes pulse {
  50% {
    transform:
      scale(1.12);

    opacity: .72;
  }
}


/* ==================================================
   SMALLER DESKTOP
   HEADER MATCHES LANDING PAGE
================================================== */

@media (max-width: 1100px) {

  .header-inner {
    width:
      min(100% - 26px, 1280px);
  }

  .brand-wordmark strong {
    font-size: 19px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 9px;

    letter-spacing: .05em;
  }

}


/* ==================================================
   TABLET PAGE LAYOUT
================================================== */

@media (max-width: 980px) {

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

  .live-grid,
  .programs-grid {
    gap: 55px;
  }

  .programs-art {
    width:
      min(500px, 100%);

    margin-inline: auto;
  }

  .programs-copy {
    text-align: center;
  }

  .programs-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .video-grid {
    grid-template-columns: 1fr;

    max-width: 620px;

    margin-inline: auto;
  }

  .video-copy h3 {
    min-height: 0;
  }

}


/* ==================================================
   MOBILE NAVIGATION
   SAME BREAKPOINT AS LANDING PAGE
================================================== */

@media (max-width: 860px) {

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    flex-basis: 56px;

    width: 56px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;

    top: 76px;
    right: 16px;
    left: 16px;

    padding: 20px;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 6px;

    border:
      1px solid rgba(238, 189, 74, .22);

    border-radius: 20px;

    background:
      rgba(28, 17, 29, .98);

    box-shadow:
      var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding:
      10px 12px;

    color:
      rgba(255, 253, 249, .8);

    font-family:
      var(--sans);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .07em;
  }

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

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

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

}


/* ==================================================
   GENERAL MOBILE
================================================== */

@media (max-width: 680px) {

  .container {
    width:
      min(100% - 26px, 1180px);
  }

  h1 {
    font-size:
      clamp(43px, 13vw, 63px);
  }

  h2 {
    font-size:
      clamp(36px, 11vw, 52px);
  }

  .guides-inner {
    padding:
      82px 0 118px;
  }

  .journey-summary {
    padding:
      30px 25px 27px;
  }

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

  .guide-list {
    padding: 14px;
  }

  .guide-item {
    grid-template-columns:
      32px minmax(0, 1fr) auto;

    padding:
      12px 10px;

    gap: 10px;
  }

  .guide-item-copy strong {
    font-size: 17px;
  }

  .guide-item-copy small {
    font-size: 9px;
  }

  .live-section,
  .watch-section,
  .programs-section {
    padding:
      84px 0;
  }

  .live-card {
    padding:
      30px 22px;
  }

  .meeting-schedule strong {
    font-size:
      clamp(54px, 17vw, 72px);
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-grid > div {
    padding:
      12px 4px 10px;

    border-radius: 12px;
  }

  .countdown-grid strong {
    font-size:
      clamp(27px, 9vw, 38px);
  }

  .countdown-grid span {
    font-size: 6px;

    letter-spacing: .04em;
  }

  .programs-art {
    width:
      min(430px, 100%);

    grid-template-columns:
      minmax(0, 1fr)
      minmax(105px, .62fr);
  }

  .program-primary {
    width:
      min(100%, 275px);
  }

  .program-secondary {
    width:
      min(100%, 175px);

    margin-left: -22px;
    margin-bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: center;
  }

}


/* ==================================================
   PHONE HEADER
   MATCHES LANDING PAGE
================================================== */

@media (max-width: 600px) {

  .header-inner {
    width:
      calc(100% - 20px);

    min-height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    flex-basis: 50px;

    width: 50px;
    height: 50px;
  }

  .brand-wordmark strong {
    font-size: 16px;

    letter-spacing: .1em;
  }

  .brand-wordmark small {
    font-size: 6px;
  }

  .site-nav {
    top: 72px;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;

    transition-duration:
      .01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

}


/* ==================================================
   ASK PASTOR KAL FEATURE
   LEGACY STYLES
================================================== */

.pastor-feature {
  position: relative;

  overflow: hidden;

  padding:
    7rem 1.5rem;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(238, 189, 74, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(138, 90, 114, 0.16),
      transparent 30%
    ),
    #F3E8D0;

  color: #171418;
}

.pastor-feature::before {
  content: "";

  position: absolute;

  top: 3rem;
  left: 50%;

  width: 88%;

  max-width: 1180px;

  height: 1px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(49, 30, 51, 0.25),
      #EEBD4A,
      rgba(49, 30, 51, 0.25),
      transparent
    );
}

.pastor-feature-inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: 4rem;

  align-items: center;
}

.pastor-feature-copy {
  position: relative;

  padding: 3.5rem;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(69, 40, 72, 0.98),
      rgba(49, 30, 51, 1)
    );

  color: #F3E8D0;

  box-shadow:
    0 30px 80px rgba(49, 30, 51, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.pastor-feature-copy::before {
  content: "";

  position: absolute;

  inset: 10px;

  border:
    1px solid rgba(238, 189, 74, 0.2);

  border-radius: 24px;

  pointer-events: none;
}

.pastor-feature-copy::after {
  content: "✦";

  position: absolute;

  top: 1.2rem;
  right: 1.6rem;

  color: #EEBD4A;

  font-size: 1.4rem;
}

.pastor-eyebrow {
  margin:
    0 0 1rem;

  color: #EEBD4A;

  font-size: .76rem;
  font-weight: 700;

  letter-spacing: .16em;
}

.pastor-feature-copy h2 {
  margin:
    0 0 1.5rem;

  color: #F3E8D0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(2.7rem, 5vw, 4.7rem);

  line-height: .96;
}

.pastor-feature-copy h2 em {
  color: #EEBD4A;

  font-weight: 600;
}

.pastor-intro,
.pastor-support {
  max-width: 650px;

  color:
    rgba(243, 232, 208, .88);

  line-height: 1.75;
}

.pastor-intro {
  font-size: 1.06rem;
}

.pastor-support {
  margin-bottom: 2rem;
}

.pastor-feature-copy strong {
  color: #ffffff;
}

.pastor-action-panel {
  position: relative;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  gap: 1rem;

  align-items: center;

  margin-top: 2rem;

  padding:
    1.35rem 1.5rem;

  border:
    1px solid rgba(238, 189, 74, .42);

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.pastor-action-icon {
  display: grid;

  place-items: center;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: #EEBD4A;

  color: #311E33;

  font-size: 1.2rem;

  box-shadow:
    0 8px 24px rgba(238, 189, 74, .28);
}

.pastor-action-panel span {
  display: block;

  margin-bottom: .2rem;

  color: #EEBD4A;

  font-size: .69rem;
  font-weight: 700;

  letter-spacing: .13em;
}

.pastor-action-panel strong {
  display: block;

  font-size: 1rem;
}

.pastor-action-panel p {
  margin:
    .25rem 0 0;

  color:
    rgba(243, 232, 208, .75);

  font-size: .86rem;

  line-height: 1.5;
}

.pastor-corner-arrow {
  color: #EEBD4A;

  font-size: 2.1rem;

  animation:
    pastorArrowPulse 1.8s ease-in-out infinite;
}


.pastor-question-stack {
  position: relative;
}

.pastor-question-heading {
  margin-bottom: 1.3rem;
}

.pastor-question-heading span {
  display: block;

  color: #8A5A72;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .15em;
}

.pastor-question-heading strong {
  display: block;

  margin-top: .2rem;

  color: #311E33;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 2.3rem;
}

.pastor-question-card {
  display: grid;

  grid-template-columns:
    58px 1fr;

  gap: 1.2rem;

  align-items: start;

  margin-bottom: 1rem;

  padding:
    1.55rem 1.65rem;

  border:
    1px solid rgba(49, 30, 51, .1);

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .72),
      rgba(255, 255, 255, .38)
    );

  box-shadow:
    0 14px 40px rgba(49, 30, 51, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.pastor-question-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(238, 189, 74, .65);

  box-shadow:
    0 20px 50px rgba(49, 30, 51, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.pastor-question-number {
  display: grid;

  place-items: center;

  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: #311E33;

  color: #EEBD4A;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 1.25rem;
  font-weight: 700;

  box-shadow:
    0 8px 22px rgba(49, 30, 51, .18);
}

.pastor-question-card small {
  color: #8A5A72;

  font-size: .67rem;
  font-weight: 700;

  letter-spacing: .12em;
}

.pastor-question-card h3 {
  margin:
    .3rem 0 .4rem;

  color: #311E33;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 1.55rem;

  line-height: 1.05;
}

.pastor-question-card p {
  margin: 0;

  color: #5d535a;

  font-size: .89rem;

  line-height: 1.55;
}

.pastor-question-footer {
  margin:
    1.2rem 0 0;

  color: #5d535a;

  text-align: center;

  font-size: .85rem;
}

.pastor-question-footer strong {
  color: #311E33;
}


.pastor-feature-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter:
    blur(2px);
}

.pastor-glow-one {
  top: 4%;
  left: -120px;

  width: 290px;
  height: 290px;

  border:
    1px solid rgba(238, 189, 74, .25);
}

.pastor-glow-two {
  right: -180px;
  bottom: -130px;

  width: 420px;
  height: 420px;

  border:
    1px solid rgba(49, 30, 51, .12);
}

@keyframes pastorArrowPulse {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(5px, 5px);
  }

}


@media (max-width: 900px) {

  .pastor-feature {
    padding:
      5rem 1.25rem;
  }

  .pastor-feature-inner {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .pastor-feature-copy {
    padding:
      2.4rem 1.8rem;
  }

  .pastor-feature-copy h2 {
    font-size:
      clamp(2.5rem, 11vw, 4rem);
  }

  .pastor-action-panel {
    grid-template-columns:
      auto 1fr;
  }

  .pastor-corner-arrow {
    grid-column:
      1 / -1;

    justify-self: end;

    margin-top: -.6rem;
  }

}


@media (max-width: 560px) {

  .pastor-feature {
    padding:
      4rem 1rem;
  }

  .pastor-feature-copy {
    padding:
      2rem 1.35rem;

    border-radius: 24px;
  }

  .pastor-question-card {
    grid-template-columns:
      46px 1fr;

    padding:
      1.3rem;
  }

  .pastor-question-number {
    width: 44px;
    height: 44px;

    font-size: 1rem;
  }

  .pastor-question-card h3 {
    font-size: 1.35rem;
  }

}


/* ==================================================
   CHRONOLOGICAL BIBLE READING JOURNEY
================================================== */

.chron-promo {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(238,189,74,.14), transparent 29%),
    radial-gradient(circle at 88% 82%, rgba(111,72,104,.11), transparent 31%),
    #fffdf9;
}

.chron-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 78%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(238,189,74,.8), transparent);
}

.chron-promo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.chron-promo-copy h2 {
  margin: 0 0 24px;
  color: var(--plum);
  font-size: clamp(43px, 5vw, 68px);
  line-height: .96;
}

.chron-promo-copy h2 em {
  color: var(--plum-3);
  font-weight: 600;
}

.chron-promo-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 25px;
  color: #675d64;
  font-size: 14px;
  line-height: 1.85;
}

.chron-promo-features {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chron-promo-features span {
  padding: 9px 12px;
  border: 1px solid rgba(49,30,51,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #746a71;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}

.chron-promo-features strong {
  color: #9b6a17;
  font-size: 11px;
}

.chron-promo-window {
  position: relative;
  min-height: 470px;
  padding: clamp(30px, 4.6vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(238,189,74,.42);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 13%, rgba(238,189,74,.16), transparent 30%),
    linear-gradient(145deg, #3b233d, #201421);
  color: var(--ivory);
  box-shadow: 0 34px 90px rgba(49,30,51,.25);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.chron-promo-window::before {
  content: "“";
  position: absolute;
  right: 22px;
  bottom: -105px;
  color: rgba(238,189,74,.07);
  font-family: var(--serif);
  font-size: 310px;
  line-height: 1;
  pointer-events: none;
}

.chron-promo-window:hover {
  transform: translateY(-6px);
  border-color: rgba(238,189,74,.75);
  box-shadow: 0 42px 100px rgba(49,30,51,.32);
}

.chron-window-kicker {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.chron-window-heading {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.chron-reading-number {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238,189,74,.5);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.chron-window-heading small,
.chron-window-heading strong {
  display: block;
}

.chron-window-heading small {
  margin-bottom: 7px;
  color: rgba(243,232,208,.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.chron-window-heading strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 37px);
  font-weight: 600;
  line-height: 1;
}

.chron-window-track {
  position: relative;
  z-index: 1;
  height: 6px;
  margin: 34px 0 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.chron-window-track i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c98e25, var(--gold));
}

.chron-window-sequence {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.chron-window-sequence span {
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: rgba(243,232,208,.62);
  font-size: 10px;
  font-weight: 600;
}

.chron-window-sequence span.is-current {
  border-color: rgba(238,189,74,.32);
  background: rgba(238,189,74,.08);
  color: var(--ivory);
}

.chron-window-sequence b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.chron-window-link {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.chron-window-link b { font-size: 20px; }

@media (max-width: 920px) {
  .chron-promo-grid { grid-template-columns: 1fr; }
  .chron-promo-copy { max-width: 720px; text-align: center; margin-inline: auto; }
  .chron-promo-copy > p:not(.eyebrow) { margin-inline: auto; }
  .chron-promo-features { justify-content: center; }
  .chron-promo-window { width: min(680px, 100%); margin-inline: auto; }
}

@media (max-width: 680px) {
  .chron-promo { padding: 82px 0; }
  .chron-promo-window { min-height: 0; padding: 28px 22px; border-radius: 24px; }
  .chron-window-heading { margin-top: 28px; grid-template-columns: 56px 1fr; gap: 13px; text-align: left; }
  .chron-reading-number { width: 56px; height: 56px; font-size: 23px; }
  .chron-window-sequence span { grid-template-columns: 32px 1fr; }
  .chron-promo-copy .button { width: 100%; }
}


/* ==================================================
   ASK PASTOR KAL
   CURRENT DESIGN
================================================== */

.pk-section {
  position: relative;

  overflow: hidden;

  padding:
    7rem 1.5rem;

  background:
    radial-gradient(
      circle at 85% 80%,
      rgba(238, 189, 74, .13),
      transparent 28%
    ),
    #F3E8D0;

  color: #171418;
}


/* HEADING */

.pk-heading {
  max-width: 900px;

  margin:
    0 auto 3rem;

  text-align: center;
}

.pk-heading h2 {
  margin: 0;

  color: #311E33;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(3rem, 6vw, 5.3rem);

  font-weight: 600;

  line-height: .95;
}

.pk-heading h2 em {
  color: #8A5A72;

  font-weight: 600;
}

.pk-heading-lede {
  margin:
    1.3rem auto 0;

  color: #5D535A;

  font-size: 1.05rem;
}


/* MAIN WINDOW */

.pk-window {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr) auto;

  gap: 3rem;

  align-items: center;

  max-width: 1050px;

  margin: 0 auto;

  padding:
    3.25rem 3.5rem;

  overflow: hidden;

  border:
    1px solid rgba(238, 189, 74, .45);

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(238, 189, 74, .13),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #3B233D,
      #251626
    );

  box-shadow:
    0 30px 70px rgba(49, 30, 51, .20),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.pk-window::before {
  content: "";

  position: absolute;

  inset: 10px;

  border:
    1px solid rgba(238, 189, 74, .12);

  border-radius: 22px;

  pointer-events: none;
}


/* COPY */

.pk-window-copy {
  position: relative;

  z-index: 2;

  max-width: 650px;
}

.pk-kicker {
  display: block;

  margin-bottom: .7rem;

  color: #EEBD4A;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .15em;
}

.pk-window h3 {
  margin:
    0 0 1rem;

  color: #F3E8D0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(2.5rem, 5vw, 4rem);

  font-weight: 600;

  line-height: 1;
}

.pk-window-copy > p {
  margin: 0;

  max-width: 600px;

  color:
    rgba(243, 232, 208, .86);

  font-size: 1rem;

  line-height: 1.7;
}

.pk-window-copy strong {
  color: #FFFFFF;
}


/* CHAT CUE */

.pk-cue {
  display: grid;

  grid-template-columns:
    auto 1fr auto;

  gap: .9rem;

  align-items: center;

  margin-top: 1.8rem;

  padding:
    1rem 1.15rem;

  max-width: 500px;

  border:
    1px solid rgba(238, 189, 74, .30);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, .05);
}

.pk-cue-icon {
  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #EEBD4A;

  color: #311E33;

  box-shadow:
    0 8px 20px rgba(238, 189, 74, .22);
}

.pk-cue small {
  display: block;

  margin-bottom: .15rem;

  color: #EEBD4A;

  font-size: .63rem;
  font-weight: 700;

  letter-spacing: .12em;
}

.pk-cue strong {
  display: block;

  color: #F3E8D0;

  font-size: .9rem;
}

.pk-arrow {
  color: #EEBD4A;

  font-size: 2rem;

  animation:
    pkArrow 1.8s ease-in-out infinite;
}


/* PHOTO */

.pk-photo-wrap {
  position: relative;

  z-index: 2;

  min-width: 190px;

  text-align: center;
}

.pk-photo-ring {
  position: relative;

  width: 176px;
  height: 176px;

  margin:
    0 auto 1rem;

  padding: 5px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #EEBD4A,
      #FFF0A4,
      #A6721F,
      #EEBD4A
    );

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .28),
    0 0 0 8px rgba(238, 189, 74, .07);
}

.pk-photo {
  width: 100%;
  height: 100%;

  display: block;

  border-radius: 50%;

  object-fit: cover;

  border:
    4px solid #311E33;
}

.pk-photo-label {
  display: block;

  color: #EEBD4A;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .15em;
}

.pk-photo-wrap small {
  display: block;

  margin-top: .25rem;

  color:
    rgba(243, 232, 208, .65);

  font-size: .72rem;
}


/* DECORATIVE LINE */

.pk-section::before {
  content: "";

  position: absolute;

  top: 3.5rem;
  left: 50%;

  width:
    min(900px, 70%);

  height: 1px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(238, 189, 74, .7),
      transparent
    );
}


/* ARROW ANIMATION */

@keyframes pkArrow {

  0%,
  100% {
    transform:
      translate(0, 0);
  }

  50% {
    transform:
      translate(5px, 5px);
  }

}


/* PASTOR KAL TABLET */

@media (max-width: 850px) {

  .pk-section {
    padding:
      5.5rem 1.25rem;
  }

  .pk-window {
    grid-template-columns:
      1fr;

    padding:
      2.7rem 2rem;

    text-align: center;
  }

  .pk-window-copy {
    max-width: none;
  }

  .pk-window-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .pk-photo-wrap {
    grid-row: 1;
  }

  .pk-cue {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

}


/* PASTOR KAL MOBILE */

@media (max-width: 520px) {

  .pk-section {
    padding:
      4.5rem 1rem;
  }

  .pk-heading {
    margin-bottom: 2rem;
  }

  .pk-heading h2 {
    font-size:
      clamp(2.6rem, 12vw, 3.6rem);
  }

  .pk-window {
    padding:
      2.25rem 1.35rem;

    border-radius: 24px;
  }

  .pk-photo-ring {
    width: 135px;
    height: 135px;
  }

  .pk-cue {
    grid-template-columns:
      auto 1fr;
  }

  .pk-arrow {
    grid-column:
      1 / -1;

    justify-self: end;

    margin-top: -.5rem;
  }

}
