:root {
  --navy: #18223f;
  --navy-soft: #25345d;
  --blue: #315f9d;
  --blue-light: #eaf1fb;
  --lavender: #f5f3fb;
  --cream: #fbfaf7;
  --white: #ffffff;
  --text: #24283a;
  --muted: #6c7284;
  --border: #e3e5ec;
  --shadow: 0 18px 45px rgba(26, 33, 61, 0.10);
  --radius: 24px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}


img {
  max-width: 100%;
  display: block;
}


a {
  color: inherit;
}


.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}



/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid rgba(227, 229, 236, 0.9);
  backdrop-filter: blur(10px);
}


.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--navy);
}


nav {
  display: flex;
  align-items: center;
  gap: 26px;
}


nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}


nav a:hover {
  color: var(--navy);
}



/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(129,151,209,0.24), transparent 30%),
    linear-gradient(135deg, #10172f 0%, #1d2850 52%, #313b68 100%);
  color: var(--white);
  padding: 96px 0 92px;
}


.stars {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 90px 90px, 130px 130px, 170px 170px;
  background-position: 15px 25px, 55px 75px, 100px 10px;
}


.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}


.eyebrow,
.section-kicker,
.detail-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
}


.eyebrow {
  color: #cbd7ff;
}


.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
}


.lede {
  margin: 28px 0 0;
  max-width: 700px;
  color: #e5e8f3;
  font-size: 1.05rem;
}


.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}


.button.primary {
  background: var(--white);
  color: var(--navy);
}


.button.primary:hover {
  transform: translateY(-1px);
}


.status {
  color: #cdd3e6;
  font-size: 0.87rem;
  font-weight: 700;
}


.logo-card {
  width: min(100%, 390px);
  margin-left: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}


.logo-card img {
  width: 100%;
  border-radius: 20px;
}


.logo-note {
  margin: 10px 4px 0;
  color: #cbd1df;
  font-size: 0.72rem;
  text-align: center;
}



/* PROJECT SECTION */

.projects-section {
  padding: 96px 0;
}


.section-kicker {
  color: var(--blue);
}


.projects-section h2,
.about-section h2,
.closing-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 500;
}


.section-intro {
  max-width: 760px;
  margin: 22px 0 46px;
  color: var(--muted);
  font-size: 1.02rem;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}


.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}


.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
}


.card-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}


.project-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}


.tagline {
  margin: 7px 0 20px;
  color: var(--navy-soft);
  font-weight: 800;
}


.project-card > p:last-of-type {
  margin-bottom: 0;
}





/* LOCKED BRAND MARKS */
.brand-lockup {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -2px 0 20px;
  padding: 8px 8px 4px;
}

.brand-lockup img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.zoomentary-lockup img {
  max-height: 132px;
}

.optimize-lockup img {
  max-height: 178px;
}

.resource-endorsement {
  margin: 8px 0 0 !important;
  color: #547a3b;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.zoomentary-card .card-label,
.optimize-card .card-label {
  text-align: center;
  margin-top: 2px;
}


/* EXPANDABLE PROJECT CONTENT */

.project-details {
  margin-top: 28px;
}


.project-details summary {
  list-style: none;
}


.project-details summary::-webkit-details-marker {
  display: none;
}


.coming-button {

width: 100%;
box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease;
}


.coming-button::after {
  content: " +";
  margin-left: 7px;
  font-size: 1rem;
  line-height: 1;
}


.project-details[open] .coming-button::after {
  content: " −";
}


.coming-button:hover {
  background: var(--navy);
  transform: translateY(-1px);
}


.coming-button:focus-visible {
  outline: 3px solid rgba(49, 95, 157, 0.25);
  outline-offset: 3px;
}


.details-content {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}


.detail-kicker {
  color: var(--blue);
}


.detail-heading {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
}


.details-content p {
  margin: 0 0 18px;
}


.detail-emphasis {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  font-weight: 700;
}



/* FEATURED BOOK */

.book-feature {
  margin-top: 30px;
  padding: 26px;
  background: var(--lavender);
  border: 1px solid #e3def1;
  border-radius: 18px;
}


.book-feature h4 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
}


.book-feature p:last-child {
  margin-bottom: 0;
}


.book-status,
.book-scripture-label {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.book-scripture-label {
  margin-top: 18px !important;
}


.scripture-quote {
  margin: 14px 0 22px;
  padding: 19px 20px;
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.6;
}


.book-question {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}



/* OPTIMIZE ME */

.optimize-details .detail-kicker {
  color: var(--blue);
}


.guiding-question {
  margin: 24px 0 !important;
  padding: 18px 20px;
  background: var(--blue-light);
  border-radius: 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}



/* ABOUT */

.about-section {
  padding: 92px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}


.about-copy > p:first-child {
  margin-top: 0;
}


.about-copy p {
  color: #4e5465;
}


.origin-story {
  margin-top: 34px;
  padding: 28px;
  background: var(--lavender);
  border: 1px solid #e3def1;
  border-radius: 20px;
}


.origin-story .detail-kicker {
  color: var(--blue);
}


.origin-story p:last-child {
  margin-bottom: 0;
}



/* CLOSING */

.closing-section {
  padding: 92px 0 100px;
}


.closing-card {
  padding: 54px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(119, 142, 206, 0.18), transparent 34%),
    linear-gradient(135deg, #f4f2fa, #edf2fa);
  border: 1px solid #dde2ef;
  border-radius: 30px;
}


.mini-star {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
}


.glory-line {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 700;
}


.closing-card > p:not(.glory-line) {
  max-width: 690px;
  margin: 20px auto 0;
  color: var(--muted);
}


.pill-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}


.pill-row span {
  display: inline-flex;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #d7ddea;
  border-radius: 999px;
  color: var(--navy-soft);
  font-size: 0.76rem;
  font-weight: 800;
}



/* FOOTER */

footer {
  background: var(--navy);
  color: #dfe4f1;
  padding: 50px 0;
}


.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}


footer strong {
  color: var(--white);
}


footer p {
  margin: 6px 0;
  max-width: 640px;
  font-size: 0.9rem;
}


footer a {
  color: var(--white);
  text-decoration: none;
}


footer a:hover {
  text-decoration: underline;
}


.copyright {
  color: #aeb6ca;
  white-space: nowrap;
}



/* MOBILE */

@media (max-width: 820px) {

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  nav {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 68px 0 70px;
  }

  .hero-grid,
  .project-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .logo-card {
    margin: 0;
    width: min(100%, 430px);
  }

  .projects-section,
  .about-section {
    padding: 70px 0;
  }

  .project-card {
    padding: 26px;
  }

  .project-details {
    margin-top: 24px;
  }

  .details-content {
    margin-top: 24px;
    padding-top: 24px;
  }

  .book-feature {
    padding: 21px;
  }

  .scripture-quote {
    padding: 17px;
  }

  .about-grid {
    gap: 30px;
  }

  .closing-section {
    padding: 68px 0 74px;
  }

  .closing-card {
    padding: 38px 24px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    white-space: normal;
  }

}


@media (max-width: 560px) {

  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    border-radius: 20px;
  }

  .coming-button {
    width: 100%;
  }

  .book-feature {
    margin-left: -5px;
    margin-right: -5px;
  }

}

/* T.H. DAILY MINISTRIES BRIDGE */

.ministry-section {
  padding: 0 0 96px;
}

.ministry-card {
  padding: 48px 52px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.ministry-card .section-kicker {
  color: #cbd7ff;
}

.ministry-card h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  font-weight: 500;
}

.ministry-card > p:not(.section-kicker) {
  max-width: 720px;
  margin: 20px auto 0;
  color: #dfe4f1;
}

.ministry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  transition: transform 0.15s ease;
}

.ministry-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .ministry-section {
    padding-bottom: 70px;
  }

  .ministry-card {
    padding: 38px 24px;
  }
}