/*
 * ln-home.css — Latina Network Homepage Styles
 * Enqueued only on is_front_page() — depends on ln-master.css.
 *
 * Sections:
 *   01 · Hero
 *   02 · Section Shared Utilities (home-specific overrides)
 *   03 · Business Section
 *   04 · Money Section + Stat Blocks
 *   05 · Latina Visionaries Section + Scroll Cards
 *   06 · Join the Network Section
 *   07 · Wellness Section
 *   08 · Culture Mosaic Section
 *   09 · Power Section
 *   10 · Voices Section + Podcast Cards
 *   11 · Events Section + Event Cards
 *   12 · Responsive Breakpoints
 */


/* ── 01  HERO ──────────────────────────────────────────────────────────────── */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Base background gradient */
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    #1a0d18 0%,
    var(--plum-dark) 45%,
    var(--plum) 100%
  );
}

/* Featured image — sits above base gradient at 25% opacity */
.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.25;
}

/* Overlay gradient — near-opaque Plum at bottom, transparent at top */
.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(61, 29, 52, 0.98) 0%,
    rgba(61, 29, 52, 0.85) 25%,
    rgba(61, 29, 52, 0.50) 55%,
    rgba(61, 29, 52, 0.10) 100%
  );
}

/* Content layer — above both image and overlays */
.home-hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 88px 56px 80px; /* top clears nav + gradient band */
}

/* Two-column editorial grid */
.home-hero-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: flex-end;
}

/* ── Hero: Left editorial column ── */

.home-hero-editorial {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

/* Category badge */
.home-hero-cat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 18px;
  transition: opacity 0.2s;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.15s;
}

.home-hero-cat:hover {
  opacity: 0.75;
}

/* Headline */
.home-hero-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--crema);
  margin: 0 0 20px;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.28s;
}

.home-hero-headline a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.home-hero-headline a:hover {
  opacity: 0.85;
}

/* Dek */
.home-hero-dek {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 237, 216, 0.72);
  margin: 0 0 28px;
  max-width: 560px;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.42s;
}

/* Byline */
.home-hero-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.55s;
}

.home-hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 237, 216, 0.25);
  display: block;
  flex-shrink: 0;
}

.home-hero-byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero-byline-author {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--crema);
}

.home-hero-byline-author a {
  color: inherit;
  text-decoration: none;
}

.home-hero-byline-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.45);
}

/* Read Story button */
.home-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--tierra);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background 0.2s, gap 0.2s;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.68s;
}

.home-hero-btn:hover {
  background: var(--tierra-light);
  gap: 12px;
}


/* ── Hero: Right sidebar ── */

.home-hero-sidebar {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.5s;
}

.home-hero-sidebar-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 237, 216, 0.08);
}

.home-hero-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-hero-sidebar-post {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 237, 216, 0.07);
  animation: fadeUp 0.6s ease both;
}

.home-hero-sidebar-post:last-child {
  border-bottom: none;
}

.home-hero-sidebar-img {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: rgba(245, 237, 216, 0.08);
  flex-shrink: 0;
}

.home-hero-sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.25s;
}

.home-hero-sidebar-post:hover .home-hero-sidebar-img img {
  filter: saturate(1);
}

.home-hero-sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.home-hero-sidebar-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.home-hero-sidebar-title {
  font-family: var(--font-serif) !important;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.home-hero-sidebar-title a {
  color: rgba(245, 237, 216, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.home-hero-sidebar-title a:hover {
  color: var(--crema);
}

.home-hero-sidebar-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.35);
}


/* ── Hero: Scroll indicator ── */

.home-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: both;
}

@keyframes scrollRevealBounce {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.4; }
  50%  { opacity: 0.4; transform: translateY(6px); }
  100% { opacity: 0.4; transform: translateY(0); }
}

.home-hero-scroll {
  animation: scrollRevealBounce 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.home-hero-scroll-line {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(245, 237, 216, 0.3);
}

.home-hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.3);
}


/* ── 02  SECTION SHARED UTILITIES ─────────────────────────────────────────── */

/* All homepage editorial sections share this foundation */
.home-section {
  padding: 88px 56px;
}

.home-section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* Background modifiers */
.home-section--crema    { background: var(--crema); }
.home-section--white    { background: #fff; }
.home-section--plum     { background: var(--plum); }
.home-section--plum-dark { background: var(--plum-dark); }
.home-section--tierra   { background: var(--tierra); }


/* ── 03  BUSINESS SECTION ──────────────────────────────────────────────────── */

.home-business-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

/* Wide feature card — larger image ratio */
.home-business-grid > :first-child .card-img {
  aspect-ratio: 5 / 4;
}

/* Hover accent uses Business color (Tierra) */
.home-section-business .card:hover .card-headline {
  color: var(--tierra);
}


/* ── 04  MONEY SECTION + STAT BLOCKS ──────────────────────────────────────── */

.home-money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.home-money-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Horizontal cards on dark background */
.home-section--plum-dark .card--horizontal .card-h-body {
  color: var(--crema);
}

.home-section--plum-dark .card--horizontal .card-headline--sm a {
  color: rgba(245, 237, 216, 0.9);
}

.home-section--plum-dark .card--horizontal .card-headline--sm a:hover {
  color: var(--oro);
}

.home-section--plum-dark .card--horizontal .card-cat--inline {
  color: var(--crema);
}

.home-section--plum-dark .card--horizontal .card-meta {
  color: rgba(245, 237, 216, 0.4);
}

.home-section--plum-dark .card--horizontal .card-h-img {
  background: rgba(245, 237, 216, 0.06);
}

/* Stat blocks */
.home-money-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 40px;
  border-left: 1px solid rgba(212, 168, 83, 0.2);
}

.home-stat-block {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.home-stat-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--oro);
  margin: 0 0 8px;
}

.home-stat-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 237, 216, 0.5);
  margin: 0;
}


/* ── 05  LATINA VISIONARIES SECTION ───────────────────────────────────────── */

.home-section-visionaries .home-section-inner {
  overflow: visible;
}

.home-vis-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(92, 45, 78, 0.1);
}

.home-vis-header-left {
  max-width: 520px;
}

.home-vis-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--plum);
  margin: 8px 0 12px;
}

.home-vis-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(92, 45, 78, 0.6);
  margin: 0;
}

/* Horizontal scroll container */
.home-vis-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Extend scroll area to bleed past section padding */
  margin: 0 -56px;
  padding-left: 56px;
  padding-right: 56px;
}

.home-vis-scroll::-webkit-scrollbar {
  height: 3px;
}

.home-vis-scroll::-webkit-scrollbar-track {
  background: rgba(92, 45, 78, 0.06);
}

.home-vis-scroll::-webkit-scrollbar-thumb {
  background: rgba(196, 98, 45, 0.3);
  border-radius: 2px;
}

/* Individual Visionary card — stable markup contract for plugin swap */
.home-vis-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--crema);
  border: 1px solid rgba(92, 45, 78, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-vis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 29, 52, 0.12);
}

.home-vis-avatar-link {
  display: block;
}

.home-vis-avatar-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--plum-dark);
}

.home-vis-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.3s, transform 0.5s;
}

.home-vis-card:hover .home-vis-avatar {
  filter: saturate(1);
  transform: scale(1.03);
}

.home-vis-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
}

/* Tier badge overlays image bottom */
.home-vis-tier-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px;
  background: rgba(61, 29, 52, 0.85);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oro);
  text-align: center;
}

/* Card body */
.home-vis-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.home-vis-name {
  font-family: var(--font-serif) !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.home-vis-name a {
  color: var(--plum);
  text-decoration: none;
  transition: color 0.2s;
}

.home-vis-name a:hover {
  color: var(--tierra);
}

.home-vis-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(92, 45, 78, 0.55);
  margin: 0;
}

.home-vis-location {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(92, 45, 78, 0.38);
  margin: 0;
}

.home-vis-show {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--tierra);
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-vis-show-icon {
  font-size: 8px;
}

/* Category tags */
.home-vis-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.home-vis-cat-tag {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cat-tag-color, var(--tierra));
  border: 1px solid var(--cat-tag-color, var(--tierra));
  opacity: 0.7;
}

/* View Profile CTA */
.home-vis-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tierra);
  text-decoration: none;
  transition: gap 0.2s;
}

.home-vis-cta:hover {
  gap: 8px;
}

/* Empty state */
.home-vis-empty {
  text-align: center;
  padding: 56px 0;
}

.home-vis-empty-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: rgba(92, 45, 78, 0.45);
  margin-bottom: 24px;
}

.home-vis-apply-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tierra);
  text-decoration: none;
}


/* ── 06  JOIN THE NETWORK SECTION ──────────────────────────────────────────── */

.home-section-join {
  background: var(--tierra);
}

.home-join-header {
  text-align: center;
  margin-bottom: 56px;
}

.home-join-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.6);
  margin: 0 0 12px;
}

.home-join-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--crema);
  margin: 0 0 16px;
}

.home-join-urgency {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.65);
  margin: 0;
}

/* Three-tier grid */
.home-join-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.home-join-tier {
  background: rgba(245, 237, 216, 0.08);
  padding: 40px 32px;
  border: 1px solid rgba(245, 237, 216, 0.1);
  transition: background 0.2s;
}

.home-join-tier:hover {
  background: rgba(245, 237, 216, 0.13);
}

/* Middle tier featured */
.home-join-tier--featured {
  background: rgba(245, 237, 216, 0.15);
  border-color: rgba(245, 237, 216, 0.25);
  position: relative;
}

.home-join-tier--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crema);
  color: var(--tierra);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 16px;
}

.home-join-tier-number {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(245, 237, 216, 0.4);
  margin: 0 0 12px;
}

.home-join-tier-name {
  font-family: var(--font-serif) !important;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--crema);
  margin: 0 0 16px;
  line-height: 1.1;
}

.home-join-tier-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 237, 216, 0.65);
  margin: 0 0 20px;
}

.home-join-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-join-tier-perks li {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.55);
  padding-left: 16px;
  position: relative;
}

.home-join-tier-perks li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(245, 237, 216, 0.3);
}

/* CTA row */
.home-join-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-join-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--crema);
  color: var(--tierra);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.home-join-cta-btn:hover {
  background: transparent;
  color: var(--crema);
  border-color: var(--crema);
}

.home-join-cta-note {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.5);
  text-align: center;
  margin: 0;
}


/* ── 07  WELLNESS SECTION ──────────────────────────────────────────────────── */

.home-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.home-wellness-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-wellness-list .card--horizontal {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 45, 78, 0.08);
}

.home-wellness-list .card--horizontal:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-wellness-feature .card-img {
  aspect-ratio: 3 / 4;
}

/* Hover accent: Teal for Wellness */
.home-section-wellness .card:hover .card-headline {
  color: var(--teal);
}


/* ── 08  CULTURE MOSAIC SECTION ────────────────────────────────────────────── */

/* Mosaic grid: 3 columns, alternating wide/narrow */
.home-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 4px;
  margin-top: 40px;
}

/* Alternating wide positions */
.home-culture-card:nth-child(1) { grid-column: 1 / 3; } /* Wide: row 1 left */
.home-culture-card:nth-child(2) { grid-column: 3; }      /* Narrow: row 1 right */
.home-culture-card:nth-child(3) { grid-column: 1; }      /* Narrow: row 2 left */
.home-culture-card:nth-child(4) { grid-column: 2 / 4; }  /* Wide: row 2 right */

/* Overlay card structure */
.home-culture-card {
  position: relative;
  overflow: hidden;
}

.home-culture-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.home-culture-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--plum);
}

.home-culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease, filter 0.3s;
}

.home-culture-card:hover .home-culture-img img {
  transform: scale(1.04);
  filter: saturate(1);
}

.home-culture-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
}

/* Gradient overlay — darkens bottom for text legibility */
.home-culture-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(61, 29, 52, 0.95) 0%,
    rgba(61, 29, 52, 0.5) 45%,
    rgba(61, 29, 52, 0.1) 100%
  );
}

/* Text body — overlays gradient at bottom */
.home-culture-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 28px 24px;
}

.home-culture-body .card-cat {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(92, 45, 78, 0.7);
}

.home-culture-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--crema);
  margin: 0 0 10px;
  transition: color 0.2s;
}

.home-culture-card:hover .home-culture-headline {
  color: rgba(245, 237, 216, 0.85);
}

.home-culture-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.45);
}

/* Section header on Plum bg */
.home-section-culture .section-title {
  color: var(--crema);
}


/* ── 09  POWER SECTION ─────────────────────────────────────────────────────── */

.home-power-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  margin-top: 40px;
  align-items: start;
}

.home-power-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Hover accent: Plum Dark for Power */
.home-section-power .card:hover .card-headline {
  color: var(--plum-dark);
}

/* Sidebar */
.home-power-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home-power-pullquote {
  border-left: 3px solid var(--plum-dark);
  padding: 16px 0 16px 24px;
}

.home-power-pullquote-text {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--plum);
  margin: 0 0 12px;
}

.home-power-pullquote-cite {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(92, 45, 78, 0.4);
  font-style: normal;
}

.home-power-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(92, 45, 78, 0.1);
}

.home-power-stat {}

.home-power-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1;
  color: var(--plum-dark);
  margin: 0 0 6px;
}

.home-power-stat-label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(92, 45, 78, 0.55);
  margin: 0;
}

.home-power-sidebar-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.home-power-sidebar-link:hover {
  color: var(--tierra);
}


/* ── 10  VOICES SECTION + PODCAST CARDS ───────────────────────────────────── */

.home-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* Podcast card */
.home-voices-card {
  display: flex;
  flex-direction: column;
  background: rgba(245, 237, 216, 0.04);
  border: 1px solid rgba(245, 237, 216, 0.08);
  transition: background 0.25s, transform 0.3s;
}

.home-voices-card:hover {
  background: rgba(245, 237, 216, 0.07);
  transform: translateY(-2px);
}

/* Show art / featured image */
.home-voices-card-art {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(245, 237, 216, 0.06);
  position: relative;
}

.home-voices-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.3s, transform 0.5s;
}

.home-voices-card:hover .home-voices-card-art img {
  filter: saturate(1);
  transform: scale(1.03);
}

.home-voices-art-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--plum), rgba(92, 45, 78, 0.3));
}

/* Play icon overlay */
.home-voices-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(196, 98, 45, 0.85);
  color: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.home-voices-card:hover .home-voices-play {
  background: var(--tierra);
  transform: scale(1.1);
}

/* Card body */
.home-voices-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.home-voices-host {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oro);
  margin: 0;
}

.home-voices-host a {
  color: inherit;
  text-decoration: none;
}

.home-voices-title {
  font-family: var(--font-serif) !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.home-voices-title a {
  color: rgba(245, 237, 216, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.home-voices-title a:hover {
  color: var(--crema);
}

.home-voices-excerpt {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 237, 216, 0.45);
  margin: 0;
}

.home-voices-listen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tierra);
  text-decoration: none;
  padding-top: 12px;
  transition: gap 0.2s;
}

.home-voices-listen:hover {
  gap: 9px;
}

.home-voices-listen-icon {
  font-size: 8px;
}

/* Section header on Plum Dark */
.home-section-voices .section-title {
  color: var(--crema);
}


/* ── 11  EVENTS SECTION + EVENT CARDS ─────────────────────────────────────── */

.home-events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 45, 78, 0.1);
}

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Event card */
.home-event-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(92, 45, 78, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61, 29, 52, 0.08);
}

/* Image wrapper with date badge */
.home-event-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--plum-dark);
}

.home-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.3s, transform 0.5s;
}

.home-event-card:hover .home-event-img {
  filter: saturate(1);
  transform: scale(1.03);
}

.home-event-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
}

/* Date badge — absolute position over image, top-left */
.home-event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  background: var(--tierra);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 4px;
}

.home-event-date-day {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--crema);
}

.home-event-date-month {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.75);
}

/* Card body */
.home-event-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #fff;
}

.home-event-type {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tierra);
  margin: 0;
}

.home-event-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.home-event-title a {
  color: var(--plum);
  text-decoration: none;
  transition: color 0.2s;
}

.home-event-title a:hover {
  color: var(--tierra);
}

.home-event-location {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(92, 45, 78, 0.5);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-event-location-icon {
  font-size: 6px;
  color: var(--tierra);
}

.home-event-rsvp {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: var(--tierra);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}

.home-event-rsvp:hover {
  background: var(--tierra-light);
}


/* ── 12  RESPONSIVE BREAKPOINTS ─────────────────────────────────────────────── */

/* 1200px */
@media (max-width: 1200px) {
  .home-hero-main {
    grid-template-columns: 1fr 300px;
    gap: 56px;
  }

  .home-business-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
  }

  .home-join-tiers {
    gap: 1px;
  }

  .home-join-tier {
    padding: 32px 24px;
  }
}

/* 1100px */
@media (max-width: 1100px) {
  .home-section { padding: 72px 40px; }

  .home-hero-content { padding: 80px 40px 64px; }

  .home-power-grid {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }

  .home-vis-scroll {
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-culture-grid {
    grid-auto-rows: 320px;
  }
}

/* 900px */
@media (max-width: 900px) {
  .home-hero { min-height: 600px; }

  .home-hero-content { padding: 72px 24px 56px; }

  .home-hero-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hide sidebar on tablet/mobile — editorial column takes full width */
  .home-hero-sidebar { display: none; }

  .home-hero-headline { font-size: clamp(36px, 6vw, 52px); }

  .home-hero-scroll { display: none; }

  .home-section { padding: 56px 24px; }

  .home-business-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-business-grid > :first-child {
    grid-column: 1 / -1;
  }

  .home-money-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-money-stats {
    border-left: none;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    padding-left: 0;
    padding-top: 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-stat-block {
    flex: 1 1 140px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .home-join-tiers {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .home-join-tier--featured::before { display: none; }

  .home-wellness-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-culture-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }
  /* Reset mosaic — simple 2-col alternating on mobile */
  .home-culture-card:nth-child(1),
  .home-culture-card:nth-child(2),
  .home-culture-card:nth-child(3),
  .home-culture-card:nth-child(4) {
    grid-column: auto;
  }
  .home-culture-card:nth-child(odd) { grid-column: 1; }
  .home-culture-card:nth-child(even) { grid-column: 2; }

  .home-power-grid {
    grid-template-columns: 1fr;
  }
  .home-power-sidebar {
    position: static;
    border-top: 1px solid rgba(92, 45, 78, 0.1);
    padding-top: 32px;
  }

  .home-voices-grid { grid-template-columns: 1fr 1fr; }

  .home-events-grid { grid-template-columns: 1fr 1fr; }

  .home-vis-scroll {
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-vis-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* 640px */
@media (max-width: 640px) {
  .home-hero { min-height: 540px; }
  .home-hero-headline { font-size: 34px; }
  .home-hero-dek { font-size: 16px; }
  .home-hero-content { padding: 64px 20px 48px; }

  .home-section { padding: 48px 20px; }

  .home-business-grid { grid-template-columns: 1fr; }

  .home-culture-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .home-culture-card:nth-child(n) { grid-column: 1; }

  .home-voices-grid { grid-template-columns: 1fr; }

  .home-events-grid { grid-template-columns: 1fr; }

  .home-join-header { margin-bottom: 40px; }
  .home-join-headline { font-size: 38px; }

  .home-vis-scroll {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-vis-card { flex: 0 0 220px; }
}
