/* ===================================================
   The 5 Facets of Wealth — Stylesheet
   Palette: navy (#0c1629), deep navy (#101e36),
            gold (#c49a4a), gold light (#e0bd7a),
            off-white (#f2f0ea)
   =================================================== */

:root {
  --navy-darkest: #0a1220;
  --navy-dark: #0c1629;
  --navy: #101e36;
  --navy-light: #16274a;
  --gold: #c49a4a;
  --gold-light: #e0bd7a;
  --off-white: #f2f0ea;
  --text-muted: #b9c2d0;
  --border-hair: rgba(196, 154, 74, 0.35);

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy-dark);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  box-shadow: 0 4px 18px rgba(196, 154, 74, 0.35);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-darkest);
  font-weight: 600;
  border: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 74, 0.4);
}

/* ---------- Header ---------- */

header {
  background: var(--navy-darkest);
  border-bottom: 1px solid var(--border-hair);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo img {
  height: 56px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--off-white);
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 154, 74, 0.08), transparent 45%),
    linear-gradient(180deg, var(--navy-darkest), var(--navy));
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--off-white);
  margin-bottom: 18px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.hero-subheadline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-text h1 .accent-text {
  color: var(--gold-light);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-image img {
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at center, #000 60%, transparent 100%);
}

/* ---------- Pillars ---------- */

.pillars {
  background: var(--navy);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.pillars-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 10px;
}

.pillars-intro {
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 0.98rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.small-logo-icon {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.book-thumbnail {
  height: 90px;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.program-thumbnail {
  height: 78px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 26px;
}

.pillar-card .btn {
  margin-top: auto;
}

/* ---------- Authors ---------- */

.authors {
  background: var(--navy-dark);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.authors-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.author-image-container img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.author-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}

.author-text p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.02rem;
}

.authors::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: var(--gold);
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ---------- Start Your Journey CTA ---------- */

.final-cta {
  background: var(--navy-darkest);
  border-bottom: 1px solid var(--border-hair);
  padding: 48px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 10px;
}

.final-cta p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Quote Bar ---------- */

.quote-bar {
  background: var(--navy-darkest);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding: 34px 0;
  text-align: center;
}

.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy-darkest);
  padding: 28px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

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

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-meta a:hover {
  text-decoration: underline;
}

/* ---------- Nav adjustment for 6 items ---------- */

nav ul {
  gap: 26px;
}

nav a {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
}

/* ---------- Nav dropdown (About 5 Facets) ---------- */

nav ul li.has-dropdown {
  position: relative;
}

nav ul li.has-dropdown > a::after {
  content: "▾";
  font-size: 0.65em;
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-darkest);
  border: 1px solid var(--border-hair);
  border-radius: 4px;
  min-width: 220px;
  padding: 8px 0;
  margin-top: 14px;
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: 0;
}

nav ul li.has-dropdown:hover .dropdown,
nav ul li.has-dropdown:focus-within .dropdown {
  display: flex;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border-bottom: none;
}

.dropdown a:hover,
.dropdown a.active {
  color: var(--gold-light);
  background: rgba(196, 154, 74, 0.08);
}

/* ---------- Page Hero (interior pages) ---------- */

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 154, 74, 0.08), transparent 45%),
    linear-gradient(180deg, var(--navy-darkest), var(--navy));
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0 56px;
  text-align: center;
}

.page-hero-container {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--off-white);
  margin-bottom: 22px;
}

.page-hero h1 .accent-text {
  color: var(--gold-light);
}

.page-hero-description {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 auto 18px;
}

.page-hero .btn {
  margin-top: 12px;
}

/* ---------- Section titles (shared) ---------- */

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* ---------- Tenets (5 facets grid) ---------- */

.tenets {
  background: var(--navy);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.tenets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.tenet-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hair);
  border-radius: 6px;
  padding: 28px 18px;
}

.tenet-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid var(--border-hair);
}

.tenet-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.tenet-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- How It Works / Framework ---------- */

.how-it-works {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.framework-intro {
  text-align: center;
  margin-bottom: 40px;
}

.framework-intro h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.framework-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.framework-step {
  position: relative;
  padding-top: 8px;
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 8px;
}

.framework-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--off-white);
  margin-bottom: 12px;
}

.framework-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Audience ---------- */

.audience {
  background: var(--navy);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

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

.audience-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-hair);
  border-radius: 6px;
}

.audience-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-hair);
  border-radius: 6px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.02rem;
  list-style: none;
}

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

.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  color: var(--gold);
}

.faq-item[open] summary::before {
  content: "–";
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 14px;
  padding-left: 18px;
}

/* ---------- Page CTA ---------- */

.page-cta {
  background: var(--navy-darkest);
  padding: 64px 0;
  text-align: center;
}

.page-cta h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--off-white);
  margin-bottom: 12px;
}

.page-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---------- Authors full page ---------- */

.authors-full {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-hair);
  padding: 24px 0 72px;
}

.authors-full-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-width);
}

.authors-full .author-image-container img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.authors-full .author-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.authors-full .author-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

/* ---------- Mission grid (authors page) ---------- */

.mission {
  background: var(--navy);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

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

.mission-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-hair);
  border-radius: 6px;
}

.mission-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Meet the Authors + Living the Facets (homepage) ---------- */

.authors-living-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.meet-authors {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.author-photo-small {
  flex: 0 0 130px;
}

.author-photo-small img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-hair);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.meet-authors-text h2,
.deeper-calling h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.meet-authors-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.text-link {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--off-white);
}

.deeper-calling p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 8px;
  max-width: 420px;
}

.deeper-calling {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.deeper-calling-logo {
  flex: 0 0 130px;
  height: 130px;
  width: 130px;
  object-fit: contain;
  margin-bottom: 0;
  border-radius: 3px;
  align-self: center;
}

.deeper-calling-text {
  flex: 1;
}

.deeper-calling .btn {
  font-size: 0.8rem;
  padding: 10px 20px;
  margin-top: 4px;
}

/* ---------- Homepage authors teaser button spacing ---------- */

.authors .author-text .btn {
  margin-top: 8px;
  display: inline-block;
}

/* ---------- Intro (image + text, Program Overview) ---------- */

.intro-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.intro-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.intro-text .page-hero-description {
  margin: 0 0 16px;
  max-width: none;
}

.page-hero-emphasis {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ---------- Tenets photo grid ---------- */

.tenets-row-1 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.tenets-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.tenet-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
  border: none;
}

/* ---------- How It Works (text + image) ---------- */

.how-it-works-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.how-it-works-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--off-white);
  margin: 10px 0 18px;
}

.how-it-works-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.how-it-works-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- 90-Day Framework diagram ---------- */

.framework {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-hair);
  padding: 72px 0;
}

.framework-diagram {
  max-width: 820px;
  margin: 0 auto 24px;
}

.framework-diagram img {
  width: 100%;
  border-radius: 6px;
}

.framework-caption {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--off-white);
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.framework-step-blue {
  border-top: 3px solid #2166ae;
}

.framework-step-orange {
  border-top: 3px solid #dc4a21;
}

.framework-step-green {
  border-top: 3px solid #598c2e;
}

.framework-step-blue,
.framework-step-orange,
.framework-step-green {
  padding-top: 20px;
}

/* ---------- FAQ (image + content) ---------- */

.faq-container {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.faq-image img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
}

.section-title-left {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--off-white);
  text-align: left;
  margin: 6px 0 14px;
}

.faq-intro {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.faq-content .faq-list {
  margin: 0;
  max-width: none;
}

/* ==========================================================
   PROGRAM OVERVIEW — "po-light" theme
   A light, white-background scope that mirrors the visual
   design of deepercalling.org/the-5-facets-of-wealth-program
   Scoped entirely under .po-light so it never affects the
   rest of the (navy/gold) site.
   ========================================================== */

.po-light {
  --po-white: #ffffff;
  --po-gray-bg: #f6f8f9;
  --po-heading: #42474c;
  --po-body: #5c656d;
  --po-accent: #223352;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--po-white);
  color: var(--po-body);
}

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

.po-white {
  background: var(--po-white);
}

.po-gray {
  background: var(--po-gray-bg);
}

.po-no-top {
  padding-top: 0;
}

.po-tight-bottom {
  padding-bottom: 60px;
}

.po-tall {
  padding: 130px 0 60px;
}

.po-margin-top {
  margin-top: 60px;
}

.po-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--po-body);
  margin-bottom: 10px;
}

.po-eyebrow-small {
  font-size: 0.78rem;
}

.po-h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 2.1rem;
  line-height: 1.3;
  color: var(--po-heading);
  margin: 0 0 16px;
}

.po-center {
  text-align: center;
}

.po-rule {
  width: 75px;
  height: 1px;
  background: #d9e0e4;
  margin: 0 0 20px;
}

.po-rule-center {
  margin-left: auto;
  margin-right: auto;
}

.po-body {
  color: var(--po-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.po-lede {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.po-emphasis {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--po-body);
  margin-bottom: 20px;
}

.po-btn {
  display: inline-block;
  background: var(--po-accent);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.po-btn:hover {
  background: #16233d;
  transform: translateY(-1px);
}

/* Intro / How-it-works two-column (reuses .intro-container / .how-it-works-container grids) */

.po-light .intro-container,
.po-light .how-it-works-container {
  align-items: center;
}

.po-light .intro-image img,
.po-light .how-it-works-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #e7ebee;
}

/* Tenets */

.po-tenets-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.po-tenets-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.po-tenet img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 20px;
}

.po-tenet p {
  text-align: center;
  color: var(--po-body);
  font-size: 1rem;
  line-height: 1.6;
}

/* 90-Day framework diagram */

.framework-diagram {
  max-width: 806px;
  margin: 0 auto 24px;
}

.framework-diagram img {
  width: 100%;
  border-radius: 4px;
}

.po-framework-caption {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--po-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Three phase color blocks (full width) */

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

.po-phase {
  padding: 55px 10%;
  color: #ffffff;
}

.po-phase h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.po-phase p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.95;
}

.po-phase-blue {
  background: #2166ae;
}

.po-phase-orange {
  background: #dc4a21;
}

.po-phase-green {
  background: #598c2e;
}

/* Who is it for — banners */

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

.po-banner {
  padding: 90px 12%;
  color: #ffffff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.po-banner-1 {
  background: linear-gradient(160deg, #274b7a, #16233d);
}

.po-banner-2 {
  background: linear-gradient(160deg, #3a5f8a, #1b2f4d);
}

.po-banner-3 {
  background: linear-gradient(160deg, #4a6f96, #223352);
}

.po-banner h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.po-banner-divider {
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto 18px;
  opacity: 0.7;
}

.po-banner p {
  font-size: 1.02rem;
  line-height: 1.55;
}

/* FAQ (light) */

.po-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.po-faq-item {
  background: var(--po-gray-bg);
  border-radius: 4px;
  padding: 16px 22px;
}

.po-faq-item summary {
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--po-body);
  list-style: none;
}

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

.po-faq-item summary::before {
  content: "▸";
  display: inline-block;
  width: 18px;
  color: var(--po-accent);
}

.po-faq-item[open] summary {
  color: var(--po-accent);
}

.po-faq-item[open] summary::before {
  content: "▾";
}

.po-faq-item p {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--po-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Fade-in animation on load — pure CSS, no JavaScript dependency.
   This guarantees content is never left invisible even if a host's
   Content-Security-Policy blocks inline scripts or JS otherwise fails. */

@keyframes po-fade-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes po-fade-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes po-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.po-animate {
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.po-animate.po-left {
  animation-name: po-fade-left;
}

.po-animate.po-right {
  animation-name: po-fade-right;
}

.po-animate.po-up {
  animation-name: po-fade-up;
}

@media (prefers-reduced-motion: reduce) {
  .po-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */

@media (max-width: 960px) {
  .po-light .intro-container,
  .po-light .how-it-works-container,
  .po-light .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .po-tenets-row,
  .po-tenets-row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .po-phases,
  .po-banners {
    grid-template-columns: 1fr;
  }

  .po-rule {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .po-tenets-row,
  .po-tenets-row-2 {
    grid-template-columns: 1fr;
  }

  .po-section {
    padding: 60px 0;
  }

  .po-tall {
    padding: 90px 0 40px;
  }
}

/* ---------- Program Overview: light quote bar + footer override ---------- */

.po-quote-light {
  background: var(--po-gray-bg, #f6f8f9) !important;
  border-top: 1px solid #e7ebee !important;
  border-bottom: 1px solid #e7ebee !important;
}

.po-quote-light .footer-quote {
  color: var(--po-accent, #223352) !important;
}

.po-footer-light {
  background: #f0f3f4 !important;
}

.po-footer-light .footer-nav a {
  color: #5c656d !important;
}

.po-footer-light .footer-nav a:hover {
  color: #223352 !important;
}

.po-footer-light .footer-meta {
  color: #5c656d !important;
}

.po-footer-light .footer-meta a {
  color: #223352 !important;
}

.po-footer-light .sub-footer .footer-links a {
  color: #223352 !important;
}

.po-footer-light .sub-footer .divider {
  background: #d9e0e4 !important;
}

.po-footer-light .sub-footer p {
  color: #5c656d !important;
}

/* ---------- Sub-footer (privacy / terms / copyright) ---------- */

.sub-footer {
  text-align: center;
  padding-top: 22px;
}

.sub-footer .footer-links {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sub-footer .footer-links a {
  color: var(--gold-light);
  transition: color 0.2s ease;
}

.sub-footer .footer-links a:hover {
  color: var(--off-white);
  text-decoration: underline;
}

.sub-footer .divider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: var(--border-hair);
  margin: 14px auto;
}

.sub-footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-container,
  .authors-container,
  .authors-full-container,
  .authors-living-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .meet-authors {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .deeper-calling {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .deeper-calling-logo {
    width: 220px;
    height: 220px;
  }

  .author-photo-small img {
    width: 220px;
    height: 220px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .author-image-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .authors-full .author-text p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pillars-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .tenets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tenets-row-1,
  .tenets-row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .intro-container,
  .how-it-works-container,
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .how-it-works-image,
  .intro-image {
    order: -1;
  }

  .faq-image img {
    margin: 0 auto;
  }

  .section-title-left,
  .faq-intro {
    text-align: center;
  }

  .framework-steps,
  .audience-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .tenets-row-1,
  .tenets-row-2 {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .dropdown {
    display: flex;
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 0;
    margin-top: 6px;
    align-items: center;
  }

  nav ul li.has-dropdown > a::after {
    display: none;
  }

  .dropdown a {
    padding: 6px 0;
    font-size: 0.7rem;
    opacity: 0.85;
  }
}
