/* ================================================
   FRANCISCA BOATENG — GLOBAL DESIGN SYSTEM
   High-frequency, sacred red, editorial elegance
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Tenor+Sans&family=Cinzel:wght@400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --red: #9f1c20;
  --red-deep: #7a0f12;
  --red-bright: #c4282e;
  --red-soft: rgba(159,28,32,0.12);
  --red-glow: rgba(159,28,32,0.06);
  --gold: #c9a84c;
  --gold-soft: rgba(201,168,76,0.15);
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-dark: #1a1a1a;
  --text-mid: #666;
  --text-light: #999;
  --border: rgba(159,28,32,0.12);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 32px rgba(159,28,32,0.20);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Tenor Sans', sans-serif;
  --font-cinzel: 'Cinzel', serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-display);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ================================================
   NAVIGATION
================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font-cinzel);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: 0.05em;
}
.logo-text span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--red-deep);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    gap: 2rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--red); transform: translateX(8px); }
  .nav-link { transition: transform 0.3s, color 0.3s; }
}

/* ================================================
   SHARED SECTION PATTERNS
================================================ */
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
}
.section-title em { color: var(--red); font-style: italic; }

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}
.btn-primary.btn-light {
  background: white;
  color: var(--red);
}
.btn-primary.btn-light:hover {
  background: rgba(255,255,255,0.9);
  color: var(--red-deep);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: 1.5px solid var(--red);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}
.btn-ghost.btn-ghost-light {
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-ghost.btn-ghost-light:hover {
  background: white;
  color: var(--red);
  border-color: white;
}
.text-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.text-link:hover { gap: 1rem; }

/* ================================================
   SIGNAL STRIP (marquee)
================================================ */
.signal-strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.signal-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 2rem;
}
.signal-inner span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
}
.signal-inner .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================
   INTRO SECTION
================================================ */
.intro-section {
  padding: 100px 5%;
  text-align: center;
  background: var(--white);
}
.intro-inner { max-width: 800px; margin: 0 auto; }
.intro-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.intro-label::before, .intro-label::after {
  content: '';
  position: absolute;
  top: 50%; width: 40px; height: 1px;
  background: var(--border);
}
.intro-label::before { right: calc(100% + 12px); }
.intro-label::after { left: calc(100% + 12px); }
.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
  quotes: '"' '"';
}
.intro-quote::before { content: open-quote; color: var(--red); }
.intro-quote::after { content: close-quote; color: var(--red); }
.intro-body {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ================================================
   IMPACT SECTION
================================================ */
.impact-section {
  padding: 80px 5%;
  background: var(--red);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: white;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1em;
}
.impact-number .plus {
  font-size: 0.55em;
  margin-top: 0.2em;
  color: rgba(255,255,255,0.7);
}
.impact-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.6rem;
}

/* ================================================
   PILLARS SECTION
================================================ */
.pillars-section {
  padding: 100px 5%;
  background: var(--off-white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pillar-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover, .pillar-card--featured {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.pillar-card--featured { border-top-color: var(--red); }
.pillar-icon {
  font-size: 1.6rem;
  color: var(--red);
}
.pillar-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
}
.pillar-card p {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.pillar-arrow {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.3s;
  display: inline-block;
}
.pillar-card:hover .pillar-arrow { transform: translateX(8px); }

/* ================================================
   PORTRAIT SECTION
================================================ */

.portrait-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  align-items: center;      /* Vertical center */
  justify-items: center;    /* Horizontal center inside each column */
}

/* Mobile */
@media (max-width: 768px) {
  .portrait-section {
    grid-template-columns: 1fr;
  }
}

/* ===== Image Side ===== */

.portrait-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effect */
.portrait-section:hover .portrait-image img {
  transform: scale(1.04);
}

/* ===== Text Side ===== */

.portrait-text {
  padding: 80px 8%;
  background: var(--white);

  display: flex;
  flex-direction: column;
  justify-content: center;   /* Vertical center */
  align-items: center;       /* Horizontal center */
  text-align: center;

  width: 100%;
  height: 100%;
  max-width: 750px;
}

.portrait-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
}

.portrait-text h2 em {
  color: var(--red);
  font-style: italic;
}

.portrait-text p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

/* ================================================
   CONTACT SECTION
================================================ */
.contact-section {
  padding: 100px 5%;
  background: var(--red);
  text-align: center;
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-section h2 em { font-style: italic; }
.contact-section p {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.contact-info-grid div {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info-grid i { color: rgba(255,255,255,0.4); }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 5% 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer-links-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 0.3rem;
}
.footer-links-col a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-links-col a:hover { color: white; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-image {
  position: absolute;
  inset: 0;
}
.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.page-hero-content {
  position: absolute;
  bottom: 60px;
  left: 5%;
  color: white;
  z-index: 2;
}
.page-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.8rem;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.page-hero-content h1 em { font-style: italic; color: rgba(255,255,255,0.7); }
.page-hero-content p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
}

/* ================================================
   ABOUT ORIGIN
================================================ */
.about-origin { padding: 100px 5%; background: var(--white); }
.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media(max-width: 768px) { .origin-inner { grid-template-columns: 1fr; gap: 3rem; } }
.origin-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 400;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
.origin-text p {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.origin-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.origin-portrait img { width: 100%; height: 520px; object-fit: cover; object-position: top center; }
.origin-accent-line {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 4px;
  background: var(--red);
}

/* ================================================
   TIMELINE
================================================ */
.timeline-section { padding: 100px 5%; background: var(--off-white); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
@media(max-width: 640px) {
  .timeline::before { left: 20px; }
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item.right .timeline-card { order: 3; }
.timeline-item.right .timeline-dot { order: 2; }
.timeline-item.right .timeline-card:last-child { order: 1; visibility: hidden; }
.timeline-item.left .timeline-card:last-child { display: none; }

@media(max-width: 640px) {
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
  .timeline-item.right .timeline-card { order: 2; }
  .timeline-item.right .timeline-dot { order: 1; }
  .timeline-item.right .timeline-card:last-child { display: none; }
}

.timeline-dot {
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--red);
  flex-shrink: 0;
}
.timeline-card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
  transition: box-shadow 0.3s;
}
.timeline-card:hover { box-shadow: var(--shadow-md); }
.timeline-year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.timeline-card p {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ================================================
   PILLAR DEEP ITEMS (About page)
================================================ */
.pillars-deep { padding: 100px 5%; background: var(--white); }
.pillar-deep-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.pillar-deep-item.reverse { direction: rtl; }
.pillar-deep-item.reverse > * { direction: ltr; }
@media(max-width: 768px) {
  .pillar-deep-item, .pillar-deep-item.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.pillar-deep-image {
  overflow: hidden;
  border-radius: 2px;
  height: 420px;
}
.pillar-deep-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 1.2s ease; }
.pillar-deep-image:hover img { transform: scale(1.05); }
.pillar-deep-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
}
.pillar-deep-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.pillar-deep-text p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pillar-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.pillar-list li {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pillar-list li i { color: var(--red); font-size: 0.75rem; }

/* ================================================
   FAITH SECTION
================================================ */
.faith-section {
  padding: 100px 5%;
  background: var(--off-white);
  text-align: center;
}
.faith-inner { max-width: 720px; margin: 0 auto; }
.faith-icon { font-size: 2.5rem; color: var(--red); margin-bottom: 1.5rem; }
.faith-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.faith-section p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.faith-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--text-dark);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  border-left: 3px solid var(--red);
  padding: 1rem 2rem;
  text-align: left;
  position: relative;
}
.faith-section cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-top: 1rem;
}

/* ================================================
   SPEAKLIFE WIDGET
================================================ */
.speaklife-widget {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.speaklife-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-deep);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.speaklife-toggle:hover { background: var(--red); transform: translateY(-2px); }
.speaklife-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  width: min(340px, 90vw);
  box-shadow: var(--shadow-md);
  display: none;
  animation: fadeUp 0.4s ease;
}
.speaklife-card.open { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.speaklife-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.speaklife-header i { color: var(--red); }
.speaklife-header span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  flex: 1;
}
.speaklife-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.speaklife-close:hover { color: var(--red); }
.speaklife-verse {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.speaklife-ref {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.speaklife-actions {
  display: flex;
  gap: 0.8rem;
}
.speaklife-share, .speaklife-next {
  flex: 1;
  padding: 0.5rem;
  border: 1.5px solid var(--border);
  background: none;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.3s;
}
.speaklife-share:hover { background: var(--red); color: white; border-color: var(--red); }
.speaklife-next:hover { background: var(--off-white); color: var(--text-dark); }

/* ================================================
   WHATSAPP
================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 900;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-icon { width: 28px; height: 28px; fill: white; }
.whatsapp-chat {
  position: fixed;
  bottom: 90px; right: 24px;
  width: min(340px, 92vw);
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 901;
  display: none;
  flex-direction: column;
  animation: fadeUp 0.3s ease;
}
.whatsapp-chat.open { display: flex; }
.chat-header { background: #075e54; padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 0.8rem; }
.chat-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: #1a8b6e; }
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-title { font-family: var(--font-display); font-size: 0.95rem; color: white; font-weight: 600; }
.chat-subtitle { font-family: var(--font-display); font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.close-btn { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.4rem; transition: color 0.2s; }
.close-btn:hover { color: white; }
.chat-body { padding: 1rem 1.2rem; background: #ece5dd; min-height: 120px; display: flex; flex-direction: column; gap: 0.5rem; }
.chat-time { text-align: center; font-family: var(--font-display); font-size: 0.72rem; color: #999; margin-bottom: 0.5rem; }
.message.received { align-self: flex-start; }
.message-bubble { background: white; padding: 0.7rem 1rem; border-radius: 0 10px 10px 10px; font-family: var(--font-display); font-size: 0.88rem; color: var(--text-dark); box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.message-time { font-family: var(--font-display); font-size: 0.7rem; color: #999; margin-top: 0.2rem; }
.chat-footer { padding: 1rem 1.2rem; background: #f0f0f0; display: flex; flex-direction: column; gap: 0.6rem; }
.message-input-container { display: flex; align-items: center; gap: 0.5rem; background: white; border-radius: 24px; padding: 0.4rem 0.4rem 0.4rem 1rem; }
.message-input { flex: 1; border: none; outline: none; resize: none; font-family: var(--font-display); font-size: 0.9rem; background: transparent; max-height: 80px; }
.send-btn { width: 36px; height: 36px; background: #25d366; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: background 0.2s; }
.send-btn:hover { background: #1da851; }
.start-chat-btn { background: #25d366; color: white; border: none; border-radius: 24px; padding: 0.65rem 1.2rem; font-family: var(--font-display); font-size: 0.85rem; width: 100%; font-weight: 500; transition: background 0.2s; }
.start-chat-btn:hover { background: #1da851; }

/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE UTILITIES
================================================ */
@media (max-width: 480px) {
  .portrait-section { min-height: auto; }
  .portrait-text { padding: 3rem 5%; }
  .speaklife-widget { left: 12px; bottom: 80px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-chat { right: 16px; }
}
