/* ============================================
   An Essential Guide through Cancer
   Website Styles
   Soft, elegant, healing aesthetic
   ============================================ */

:root {
  --rose-50: #fdf2f8;
  --rose-100: #fce7f3;
  --rose-200: #fbcfe8;
  --rose-300: #f9a8d4;
  --rose-400: #f472b6;
  --rose-500: #ec4899;
  --rose-600: #db2777;
  --rose-700: #be185d;
  --rose-800: #9d174d;
  --rose-900: #831843;
  
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --gold-700: #a16207;
  
  --cream: #fefaf7;
  --cream-dark: #f8f1eb;
  --soft-white: #fffbf8;
  --charcoal: #2d2a2a;
  --soft-gray: #5c5656;
  --light-gray: #8a8383;
  
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;
  
  --shadow-soft: 0 4px 20px rgba(190, 24, 93, 0.08);
  --shadow-medium: 0 8px 30px rgba(190, 24, 93, 0.12);
  --shadow-large: 0 20px 50px rgba(190, 24, 93, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--rose-700);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--rose-500);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--rose-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.1rem;
  color: var(--soft-gray);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose-600);
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--cream) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-300), var(--gold-400), var(--rose-300));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ========== Header / Nav ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 207, 232, 0.4);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rose-800);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-500);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-400);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--rose-600);
}

.nav-cta {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: white !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.35);
  color: white !important;
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-700);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(252, 231, 243, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(254, 249, 195, 0.4) 0%, transparent 40%),
    linear-gradient(180deg, var(--soft-white) 0%, var(--rose-50) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 207, 232, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--rose-200);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 0.5rem;
  color: var(--rose-900);
}

.hero h1 span {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--rose-600);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--soft-gray);
  margin: 1.2rem 0 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  color: white;
  box-shadow: 0 6px 20px rgba(190, 24, 93, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(190, 24, 93, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--rose-700);
  border: 2px solid var(--rose-200);
}

.btn-secondary:hover {
  background: var(--rose-50);
  border-color: var(--rose-300);
  color: var(--rose-800);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-large);
  border: 6px solid white;
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
}

/* ========== Quote Banner ========== */
.quote-banner {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-900));
  color: white;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 12rem;
  font-family: var(--font-serif);
  opacity: 0.08;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.5;
  color: white;
}

.quote-author {
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

/* ========== Features / Pillars ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(251, 207, 232, 0.5);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.3rem;
  background: linear-gradient(135deg, var(--rose-100), var(--rose-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.pillar-card h3 {
  color: var(--rose-800);
  margin-bottom: 0.7rem;
}

.pillar-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========== About Series ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 5px solid white;
}

.about-content h2 {
  text-align: left;
}

.about-content .divider {
  margin-left: 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--rose-50), white);
  border-left: 4px solid var(--rose-400);
  padding: 1.3rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-style: italic;
  color: var(--charcoal);
}

/* ========== Authors ========== */
.authors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.author-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(251, 207, 232, 0.4);
  transition: var(--transition);
}

.author-card:hover {
  box-shadow: var(--shadow-medium);
}

.author-header {
  background: linear-gradient(135deg, var(--rose-100), var(--rose-50));
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--rose-100);
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-300), var(--rose-500));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  border: 4px solid white;
  box-shadow: var(--shadow-soft);
}

.author-header h3 {
  margin-bottom: 0.3rem;
}

.author-role {
  font-size: 0.9rem;
  color: var(--rose-600);
  font-weight: 600;
}

.author-body {
  padding: 1.8rem 2rem 2rem;
}

.author-body p {
  font-size: 0.95rem;
}

.author-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rose-700);
  border-top: 1px solid var(--rose-100);
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}

/* ========== Book Section ========== */
.book-showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

.book-cover-wrap {
  position: sticky;
  top: 100px;
}

.book-cover {
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
  border: 5px solid white;
}

.book-details h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.book-details .divider {
  margin-left: 0;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.meta-tag {
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-700);
}

.excerpt-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(251, 207, 232, 0.4);
}

.excerpt-card h4 {
  color: var(--rose-800);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.excerpt-card p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.excerpt-card p:last-child {
  margin-bottom: 0;
}

/* ========== Philosophy ========== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.philosophy-item {
  background: white;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--rose-100);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.philosophy-item:hover {
  border-color: var(--rose-300);
  box-shadow: var(--shadow-soft);
}

.philosophy-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.philosophy-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ========== CTA Section ========== */
.cta-section {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-900));
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

.cta-section .btn-primary {
  background: white;
  color: var(--rose-800);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
  background: var(--rose-50);
  color: var(--rose-900);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--charcoal);
  color: #d4d0d0;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-main {
  color: white;
  font-size: 1.3rem;
}

.footer-brand .logo-sub {
  color: var(--rose-300);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #a8a3a3;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #b0aaaa;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--rose-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8a8383;
}

.footer-heart {
  color: var(--rose-400);
}

/* ========== Utility ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .book-showcase,
  .authors-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image-wrap {
    order: -1;
  }
  
  .hero-image {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .book-cover-wrap {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .pillars {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--rose-100);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
}

/* ========== Page specific: inner pages ========== */
.page-hero {
  padding: 6.5rem 0 2rem;
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--soft-white) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
}

.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block p {
  font-size: 1.05rem;
}

.content-block h3 {
  margin-top: 2.5rem;
}

.signature {
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose-700);
}

.signature strong {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin-top: 0.3rem;
}

/* ========== Soft Rose Corner Decorations ========== */
.rose-corners {
  position: relative;
  overflow: hidden; /* home hero keeps clip */
}
.page-hero.rose-corners {
  overflow: visible; /* prevent rose cutoff on other pages */
  padding-bottom: 3rem;
}

.rose-corner {
  position: absolute;
  width: clamp(100px, 15vw, 180px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.rose-corner.tl { top: 0; left: 0; }
.rose-corner.tr { top: 0; right: 0; }
.rose-corner.bl { bottom: 0; left: 0; }
.rose-corner.br { bottom: 0; right: 0; }

/* Homepage hero — ORIGINAL larger roses (the ones you loved) */
.hero.rose-corners .rose-corner {
  width: clamp(130px, 20vw, 240px);
  opacity: 0.82;
}

.hero.rose-corners .rose-corner.tl,
.hero.rose-corners .rose-corner.tr {
  top: 58px;
}

/* Other pages — same rose size & feel as home page */
.page-hero.rose-corners .rose-corner {
  width: clamp(130px, 20vw, 240px);
  opacity: 0.82;
}

.page-hero.rose-corners .rose-corner.tl,
.page-hero.rose-corners .rose-corner.tr {
  top: 0;
  left: 0;
  max-height: 200px;
  object-fit: contain;
  object-position: top left;
}
.page-hero.rose-corners .rose-corner.tr {
  left: auto;
  right: 0;
  object-position: top right;
}

/* Bottom roses on other pages — pinned to true bottom, modest size */
.page-hero.rose-corners .rose-corner.bl,
.page-hero.rose-corners .rose-corner.br {
  display: block;
  width: clamp(90px, 12vw, 160px);
  max-height: 140px;
  object-fit: contain;
  object-position: bottom;
  opacity: 0.78;
  bottom: 0;
  top: auto;
}

/* Gold–rose filigree vines connecting upper corner roses on other pages */
.page-filigree {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: clamp(24px, 3.5vw, 48px);
  height: auto;
  max-height: 45%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}
.page-filigree.left { left: 4px; }
.page-filigree.right { right: 4px; }


@media (max-width: 768px) {
  .rose-corner {
    width: clamp(90px, 28vw, 160px);
    opacity: 0.75;
  }
  .hero.rose-corners .rose-corner,
  .page-hero.rose-corners .rose-corner {
    width: clamp(110px, 32vw, 180px);
    opacity: 0.85;
  }
}


/* ========== Tree of Life Divider ========== */
.tree-of-life-divider {
  text-align: center;
  padding: 0.5rem 0 0.5rem;
  background: linear-gradient(180deg, var(--soft-white) 0%, white 100%);
}

.tree-of-life-img {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 4px 12px rgba(190, 24, 93, 0.08));
}

/* Decorative element helpers */
.decorative-emblem {
  text-align: center;
  margin: 2rem auto;
}

.decorative-emblem img {
  max-width: 180px;
  height: auto;
  opacity: 0.9;
}

.decorative-emblem.small img {
  max-width: 120px;
}

@media (max-width: 768px) {
  .tree-of-life-img {
    width: clamp(110px, 32vw, 160px);
  }
}

/* ========== Authors page decorative bridge ========== */
.authors-bridge {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  padding: 1.5rem 1rem 0.5rem;
  background: white;
}

.bridge-hummingbird {
  width: clamp(70px, 12vw, 110px);
  height: auto;
  opacity: 0.85;
  transform: scaleX(-1); /* face toward the rose */
}

.bridge-citrine {
  width: clamp(90px, 15vw, 140px);
  height: auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .authors-bridge {
    gap: 1.2rem;
  }
  .bridge-hummingbird {
    width: 65px;
  }
  .bridge-citrine {
    width: 85px;
  }
}


/* Tree of Life on authors page */
.tree-of-life-feature {
  text-align: center;
  margin: 0.75rem auto 1.25rem;
  max-width: 240px;
  padding: 0 1rem;
}
.tree-of-life-feature img {
  width: 100%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 6px 16px rgba(190, 24, 93, 0.1));
}

/* Bridge between Monique and Windi */
.authors-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.5rem;
  max-width: 280px;
  padding: 0 1rem;
}
.authors-bridge-line {
  width: 140px;
  height: 4px;
  margin-bottom: 1.25rem;
  border-radius: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    #e8b4c8 15%,
    #d4a017 40%,
    #f0d78c 50%,
    #d4a017 60%,
    #e8b4c8 85%,
    transparent 100%);
}
.authors-bridge .bridge-citrine {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(190, 24, 93, 0.12));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Homepage blog preview cards */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.home-blog-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(251, 207, 232, 0.45);
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.home-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  color: inherit;
}
.home-blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.home-blog-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.home-blog-card-body .blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: 0.45rem;
}
.home-blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--rose-900);
}
.home-blog-card-body p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--soft-gray);
}
