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

    :root {
      --navy: #1a2a3a;
      --navy-deep: #0f1c28;
      --accent: #e8722a;
      --accent-light: #f5923e;
      --accent-pale: rgba(232,114,42,0.08);
      --accent-glow: #ff8e3c;
      --teal: #2a8a7a;
      --teal-light: #3aad9a;
      --cream: #fffaf1;
      --cream-dark: #f8f0e3;
      --warm-white: #fff;
      --text: #2c3a43;
      --text-light: #6a7a85;
      --text-muted: #99a7b0;
      --border: rgba(0,0,0,0.06);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 24px rgba(0,0,0,0.07);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
      --radius: 8px;
      --radius-lg: 16px;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 90px; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      line-height: 1.65;
      font-size: 18px;
      background: var(--cream);
    }

    /* ── Navigation ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: var(--shadow-md); }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img { height: 48px; }
    .nav-logo { text-decoration: none; }

    .nav-links {
      display: flex;
      gap: 0.3rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.88rem;
      font-weight: 500;
      padding: 0.5rem 0.9rem;
      border-radius: 6px;
      transition: all 0.2s;
    }
    .nav-links a:hover {
      background: var(--accent-pale);
      color: var(--accent);
    }

    .nav-cta {
      background: var(--accent) !important;
      color: #fff !important;
      font-weight: 600 !important;
      border-radius: 50px !important;
      padding: 0.55rem 1.4rem !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--accent-light) !important;
      transform: translateY(-1px);
    }

    /* ── Dropdowns ── */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .nav-dropdown > a::after {
      content: '';
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      opacity: 0.5;
      transition: transform 0.2s;
    }
    .nav-dropdown:hover > a::after { transform: rotate(180deg); }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 50%;
      transform: translateX(-50%);
      min-width: 240px;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      padding: 0.6rem;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(8px);
      transition: all 0.25s ease;
      z-index: 200;
    }

    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.65rem 0.8rem !important;
      border-radius: var(--radius) !important;
      font-size: 0.85rem !important;
      color: var(--text) !important;
      transition: background 0.15s !important;
    }
    .dropdown-menu a:hover {
      background: var(--cream) !important;
      color: var(--accent) !important;
    }

    .dropdown-icon {
      width: 34px; height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .dropdown-text {
      display: flex;
      flex-direction: column;
    }
    .dropdown-text strong {
      font-weight: 600;
      font-size: 0.85rem;
      line-height: 1.3;
    }
    .dropdown-text span {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    .dropdown-divider {
      height: 1px;
      background: var(--border);
      margin: 0.3rem 0.5rem;
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      margin: 5px 0;
      border-radius: 2px;
    }

    /* ── Utility ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 6rem 0; }
    .section-cream { background: var(--cream); }
    .section-white { background: #fff; }

    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-pale);
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1rem;
    }

    .heading-lg {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .heading-md {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .subtext {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.7;
      max-width: 560px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 2px 12px rgba(232,114,42,0.25);
    }
    .btn-primary:hover {
      background: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,114,42,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
    }
    .btn-outline:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-white {
      background: #fff;
      color: var(--navy);
    }
    .btn-white:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .highlight-text {
      position: relative;
      display: inline;
      background: linear-gradient(to top, rgba(232,114,42,0.15) 35%, transparent 35%);
    }

    /* ── Hero ── */
    .hero {
      padding: 10rem 0 5rem;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text .heading-lg {
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      margin-bottom: 1.2rem;
    }

    .hero-text .subtext {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

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

    .hero-logo-wrap {
      position: relative;
      width: 100%;
      max-width: 440px;
    }

    .hero-logo-wrap img {
      width: 100%;
      filter: drop-shadow(0 20px 60px rgba(232,114,42,0.15));
      animation: heroFade 1s ease-out;
    }

    .hero-logo-bg {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 110%;
      height: 110%;
      background: radial-gradient(circle, rgba(232,114,42,0.06) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
    }

    @keyframes heroFade {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }



    .hero-scripture {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      font-style: italic;
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 500px;
    }
    .hero-scripture strong { color: var(--accent); font-style: normal; }

    /* ── Two-Column Sections (New Life style) ── */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .split.reverse { direction: rtl; }
    .split.reverse > * { direction: ltr; }

    .split-visual {
      background: var(--cream-dark);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 340px;
      position: relative;
      overflow: hidden;
    }

    .split-visual .icon-graphic {
      font-size: 6rem;
      opacity: 0.9;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
    }

    .split-visual.tinted {
      background: linear-gradient(135deg, rgba(232,114,42,0.08), rgba(42,138,122,0.06));
    }

    .split-content .list-checks {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }
    .split-content .list-checks li {
      padding: 0.45rem 0;
      padding-left: 1.8rem;
      position: relative;
      font-size: 0.98rem;
      color: var(--text);
    }
    .split-content .list-checks li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.7rem;
      width: 10px;
      height: 10px;
      background: var(--accent);
      border-radius: 50%;
    }

    /* ── Recovery Residence (Program) ── */
    .program-intro {
      background: linear-gradient(135deg, #1a2a3a, #1a3845, #1d4a5a);
      padding: 6rem 0;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .program-intro::before {
      content: '';
      position: absolute;
      top: -50%; right: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,114,42,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .program-intro .label { background: rgba(232,114,42,0.2); }
    .program-intro .heading-lg { color: #fff; }
    .program-intro .subtext { color: rgba(255,255,255,0.7); max-width: 640px; }
    .program-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 3rem;
    }
    .program-intro-text p {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .program-intro-text .highlight {
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
    }
    .program-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      margin-top: 1rem;
    }
    .program-badge span { color: var(--accent-light); font-weight: 600; }
    .program-photo-placeholder {
      background: rgba(255,255,255,0.04);
      border: 1px dashed rgba(255,255,255,0.15);
      border-radius: var(--radius-lg);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 0.9rem;
      gap: 0.75rem;
    }
    .program-photo-placeholder .icon-graphic { font-size: 3rem; opacity: 0.5; }

    .program-pillars {
      padding: 5rem 0;
      background: #fff;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .pillar-card {
      padding: 2.2rem;
      background: var(--cream);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
    }
    .pillar-card:nth-child(1)::before { background: var(--accent); }
    .pillar-card:nth-child(2)::before { background: var(--teal); }
    .pillar-card:nth-child(3)::before { background: #5e8fd5; }
    .pillar-card:nth-child(4)::before { background: #a87ec8; }
    .pillar-img {
      width: 100%; height: 140px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 1.2rem;
    }
    .pillar-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .pillar-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .program-expect {
      padding: 5rem 0;
      background: var(--cream);
    }
    .expect-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    .expect-list {
      list-style: none;
    }
    .expect-list li {
      padding: 1rem 0;
      padding-left: 2.2rem;
      position: relative;
      border-bottom: 1px solid var(--border);
      font-size: 0.98rem;
    }
    .expect-list li:last-child { border-bottom: none; }
    .expect-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal);
      font-weight: 700;
      font-size: 1.1rem;
    }
    .expect-list li strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.2rem;
      color: var(--text);
    }
    .expect-list li span {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .program-cta {
      text-align: center;
      padding: 4rem 0 5rem;
      background: #fff;
    }
    .program-cta h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .program-cta p {
      color: var(--text-light);
      font-size: 1rem;
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ── Podcast Section ── */
    .podcast-section {
      padding: 6rem 0;
      background: #fff;
      overflow: hidden;
    }
    .podcast-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 3.5rem;
      align-items: center;
    }
    .podcast-artwork {
      position: relative;
    }
    .podcast-artwork img {
      width: 100%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      transition: transform 0.4s;
    }
    .podcast-artwork:hover img {
      transform: scale(1.02);
    }
    .podcast-artwork::after {
      content: '';
      position: absolute;
      bottom: -12px; left: 8%; right: 8%;
      height: 40px;
      background: rgba(232,114,42,0.15);
      border-radius: 50%;
      filter: blur(20px);
      z-index: -1;
    }
    .podcast-content h2 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 0.75rem;
      color: var(--navy);
    }
    .podcast-content .tagline {
      font-size: 1.1rem;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .podcast-content p {
      color: var(--text-light);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .podcast-player-preview {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .podcast-player-top {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .podcast-play-btn {
      width: 52px; height: 52px;
      min-width: 52px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 15px rgba(232,114,42,0.3);
    }
    .podcast-play-btn:hover {
      background: var(--accent-light);
      transform: scale(1.05);
    }
    .podcast-ep-info h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.15rem;
    }
    .podcast-ep-info span {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .podcast-progress {
      height: 4px;
      background: rgba(0,0,0,0.06);
      border-radius: 4px;
      overflow: hidden;
    }
    .podcast-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
      border-radius: 4px;
    }
    .podcast-coming-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(232,114,42,0.08);
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .podcast-subscribe {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .podcast-subscribe .btn {
      font-size: 0.88rem;
      padding: 0.6rem 1.4rem;
    }
    .podcast-subscribe .btn-outline {
      font-size: 0.85rem;
      border-width: 1.5px;
    }

    /* ── Values (dark gradient section) ── */
    .values {
      background: linear-gradient(135deg, var(--navy-deep), var(--navy), #1a3845);
      padding: 6rem 0;
      color: #fff;
    }

    .values-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .values-header .label { background: rgba(232,114,42,0.15); }
    .values-header .heading-lg { color: #fff; }
    .values-header .subtext { color: rgba(255,255,255,0.6); margin: 0 auto; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .value-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      transition: transform 0.3s, background 0.3s;
    }
    .value-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.08);
    }

    .value-icon {
      width: 64px; height: 64px;
      background: rgba(232,114,42,0.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 1.6rem;
    }

    .value-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      letter-spacing: 0.02em;
    }

    .value-card p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    /* ── Events ── */
    .event-list { max-width: 820px; margin: 0 auto; }

    .event-card {
      display: grid;
      grid-template-columns: 85px 1fr auto;
      gap: 1.5rem;
      align-items: center;
      padding: 1.4rem 1.5rem;
      background: #fff;
      border-radius: var(--radius-lg);
      margin-bottom: 0.8rem;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .event-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .event-date-block {
      text-align: center;
      background: var(--navy);
      border-radius: 12px;
      padding: 0.65rem 0.3rem;
    }
    .event-date-block .month {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-glow);
    }
    .event-date-block .day {
      font-size: 1.7rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
    }

    .event-info h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.15rem;
    }
    .event-info p {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 0.3rem;
    }
    .event-info .event-meta {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .event-cta { text-align: center; margin-top: 2.5rem; }

    /* ── Team ── */
    .team-grid {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .team-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 2.2rem 2rem;
      text-align: center;
      width: 300px;
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .team-avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.4rem;
      color: #fff;
    }

    .team-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }

    .team-role {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.8rem;
    }

    .team-bio {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    .team-join {
      text-align: center;
      padding: 2rem;
      background: var(--accent-pale);
      border-radius: var(--radius-lg);
      max-width: 550px;
      margin: 0 auto;
    }
    .team-join p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 1rem;
    }

    /* ── Story (Testimony) ── */
    .story-quote {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.75;
      position: relative;
      padding: 0 1rem;
    }
    .story-quote::before {
      content: '\201C';
      font-size: 5rem;
      color: var(--accent);
      opacity: 0.2;
      position: absolute;
      top: -2.5rem;
      left: 50%;
      transform: translateX(-50%);
      line-height: 1;
    }
    .story-attrib {
      margin-top: 1.2rem;
      font-style: normal;
      font-weight: 700;
      color: var(--navy);
      font-size: 0.95rem;
    }
    .story-attrib span { color: var(--text-muted); font-weight: 400; }

    /* ── Donate ── */
    .donate-box {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .donate-amounts {
      display: flex;
      gap: 0.6rem;
      justify-content: center;
      flex-wrap: wrap;
      margin: 2rem 0 1.5rem;
    }

    .donate-amt {
      width: 80px; height: 52px;
      border-radius: 8px;
      border: 2px solid var(--border);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      cursor: pointer;
      transition: all 0.2s;
    }
    .donate-amt:hover, .donate-amt.active {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-pale);
    }

    .donate-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 1.5rem;
    }

    /* ── Contact ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-card {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      color: #fff;
    }
    .contact-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .contact-card > p {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.85);
    }
    .contact-icon {
      width: 38px; height: 38px;
      background: rgba(232,114,42,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { color: var(--accent-glow); width: 16px; height: 16px; }

    .contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
    .contact-form label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: -0.3rem;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 2px solid #e8e4dd;
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      background: #fff;
      transition: border-color 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--accent);
    }
    .contact-form textarea { resize: vertical; min-height: 120px; }

    /* ── Read Full Story (expandable) ── */
    .story-full {
      max-width: 760px;
      margin: 0 auto;
    }
    .story-full-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease;
    }
    .story-full-content.open {
      max-height: 5000px;
    }
    .story-full-content p {
      margin-bottom: 1.4rem;
      font-size: 1.02rem;
      color: #444;
      line-height: 1.85;
    }
    .story-full-content .highlight {
      background: var(--accent-pale);
      border-left: 4px solid var(--accent);
      padding: 1.2rem 1.5rem;
      margin: 2rem 0;
      font-weight: 600;
      color: var(--navy);
      border-radius: 0 var(--radius) var(--radius) 0;
      font-size: 1.08rem;
    }
    .story-toggle {
      text-align: center;
      margin-top: 1.5rem;
    }

    /* ── Footer ── */
    footer {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.5);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand img { height: 50px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }

    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1rem;
    }
    .footer-col a {
      display: block;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      padding: 0.25rem 0;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--accent-glow); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: var(--accent-glow); text-decoration: none; }

    /* ── Reveal animation ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── Centered section headers ── */
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-header .subtext { margin: 0 auto; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .split.reverse { direction: ltr; }
      .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .program-intro-grid { grid-template-columns: 1fr; }
      .pillars-grid { grid-template-columns: 1fr; }
      .expect-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 1rem 1.5rem;
        gap: 0.15rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        max-height: 80vh;
        overflow-y: auto;
      }
      .nav-links.open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 0.5rem;
        min-width: auto;
        display: none;
      }
      .nav-links.open .nav-dropdown.open .dropdown-menu {
        display: block;
      }
      .nav-dropdown > a::after { display: inline-block; }
      .mobile-toggle { display: block; }
      .section { padding: 4rem 0; }
      .hero { padding: 6rem 0 3rem; }
      body { font-size: 16px; }
      .hero-visual { order: -1; }
      .hero-logo-wrap { max-width: 300px; margin: 0 auto; }
      .event-card { grid-template-columns: 70px 1fr; }
      .event-card .btn { display: none; }
      .podcast-grid { grid-template-columns: 1fr; text-align: center; }
      .podcast-artwork { max-width: 300px; margin: 0 auto; }
      .podcast-subscribe { justify-content: center; }
    }

    /* ── Collapsible program accordions ── */
    .accordion {
      max-width: 840px;
      margin: 0 auto;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .accordion + .accordion { margin-top: 1.25rem; }
    .accordion-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.5rem 2rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      transition: background 0.25s ease;
    }
    .accordion-trigger:hover { background: var(--accent-pale); }
    .accordion-head { display: flex; flex-direction: column; align-items: flex-start; }
    .accordion-head .label { margin-bottom: 0.55rem; }
    .accordion-head .heading-lg { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 0; }
    .accordion-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--accent-pale);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; line-height: 1;
      transition: transform 0.45s ease, background 0.25s ease, color 0.25s ease;
    }
    .accordion.open .accordion-icon { transform: rotate(180deg); background: var(--accent); color: #fff; }
    .accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.6s ease; }
    .accordion.open .accordion-panel { max-height: 3200px; }
    .accordion-panel-inner { padding: 0 2rem 2.2rem; }
    .accordion-panel-inner .subtext { margin-top: 0; }
    .accordion-panel-inner .pillars-grid,
    .accordion-panel-inner .expect-grid { margin-top: 1.75rem; }
    @media (max-width: 600px) {
      .accordion-trigger { padding: 1.25rem 1.25rem; }
      .accordion-panel-inner { padding: 0 1.25rem 1.75rem; }
    }

    /* ── Recovery Residence painted "Coming Soon" tag ── */
    .program-intro .container { position: relative; }
    .coming-graffiti {
      position: absolute;
      top: -0.6rem;
      right: 1.5rem;
      z-index: 4;
      transform: rotate(-9deg);
      transform-origin: center;
      pointer-events: none;
      user-select: none;
      text-align: center;
    }
    .coming-graffiti .cg-text {
      font-family: 'Permanent Marker', cursive;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 0.86;
      color: #fff;
      letter-spacing: 0.01em;
      text-shadow: 0 1px 0 rgba(0,0,0,0.30), 4px 6px 16px rgba(0,0,0,0.45);
      display: block;
    }
    .coming-graffiti svg {
      display: block;
      width: 88%;
      height: 22px;
      margin: -0.1rem auto 0;
      filter: drop-shadow(0 3px 5px rgba(0,0,0,0.35));
    }
    @media (max-width: 900px) {
      .coming-graffiti { top: -1.3rem; right: 0.5rem; transform: rotate(-8deg); }
      .coming-graffiti .cg-text { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    }
    @media (max-width: 520px) {
      .coming-graffiti { top: -1.5rem; right: 0.25rem; }
      .coming-graffiti .cg-text { font-size: 1.55rem; }
      .coming-graffiti svg { height: 15px; }
    }

    /* ── Our Programs ── */
    .programs { padding: 6rem 0; }
    .programs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
    .program-card {
      flex: 1 1 300px; max-width: 360px;
      display: flex; flex-direction: column;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 2.1rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .pc-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: var(--accent-pale); color: var(--accent);
      display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
    }
    .pc-icon svg { width: 28px; height: 28px; }
    .program-card h3 { font-size: 1.18rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.25; }
    .program-card p { color: var(--text-light); font-size: 0.97rem; line-height: 1.65; flex: 1; }
    .pc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
    .pc-badge {
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--accent-pale); color: var(--accent);
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.4rem 0.85rem; border-radius: 50px;
    }
    .pc-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
    .pc-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; text-decoration: none; white-space: nowrap; }
    .pc-link:hover { text-decoration: underline; }
    @media (max-width: 720px) { .program-card { flex: 1 1 100%; max-width: 460px; } }

    /* ── Programs: blue cards + graffiti restyle ── */
    .program-card {
      background: linear-gradient(150deg, #1a2a3a, #1a3845, #1d4a5a);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 30px rgba(15,28,40,0.18);
    }
    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 44px rgba(15,28,40,0.34);
      border-color: rgba(232,114,42,0.45);
    }
    .program-card h3 { color: #fff; }
    .program-card p { color: rgba(255,255,255,0.72); }
    .pc-icon { background: rgba(232,114,42,0.18); color: #fff; }
    .pc-icon svg { filter: url(#graffiti-rough); stroke-width: 2.2; width: 30px; height: 30px; }
    .pc-link { color: var(--accent-light); }
    .pc-foot { align-items: center; }
    .pc-graffiti { display: inline-block; transform: rotate(-3deg); transform-origin: left center; }
    .pc-graffiti .g-text {
      font-family: 'Permanent Marker', cursive;
      font-size: 1.45rem; line-height: 1; color: #fff; letter-spacing: 0.01em;
      display: block; text-shadow: 0 1px 6px rgba(0,0,0,0.45);
    }
    .pc-graffiti svg { display: block; width: 100%; height: 11px; margin-top: -1px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }

    /* ── Give / Donation ── */
    .heading-sm { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
    .give-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; margin-top: 1rem; }
    .give-narrative .give-lead { color: var(--navy); font-size: 1.18rem; font-weight: 600; line-height: 1.5; margin-bottom: 1.1rem; }
    .give-narrative p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.1rem; font-size: 1.02rem; }
    .give-makes h4 { color: var(--navy); font-size: 1.05rem; margin: 1.6rem 0 1rem; }
    .give-list { list-style: none; display: grid; gap: 0.75rem; }
    .give-list li {
      position: relative; padding-left: 2rem; color: var(--text); line-height: 1.5; font-weight: 500;
    }
    .give-list li::before {
      content: ""; position: absolute; left: 0; top: 0;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--accent-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8722a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
    }
    .give-card {
      position: sticky; top: 100px;
      background: linear-gradient(150deg, #1a2a3a, #1a3845, #1d4a5a);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); padding: 2.2rem;
      box-shadow: var(--shadow-lg); color: #fff;
    }
    .give-card h3 { font-size: 1.35rem; margin-bottom: 1.2rem; color: #fff; }
    .give-freq { display: flex; background: rgba(255,255,255,0.08); border-radius: 50px; padding: 0.3rem; gap: 0.3rem; margin-bottom: 1rem; }
    .freq-btn { flex: 1; padding: 0.6rem; border: none; background: none; color: rgba(255,255,255,0.7); font-weight: 600; font-family: inherit; border-radius: 50px; cursor: pointer; transition: all 0.25s; font-size: 0.92rem; }
    .freq-btn.active { background: var(--accent); color: #fff; }
    .give-freq-note { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 1.4rem; line-height: 1.5; min-height: 2.5em; }
    .give-amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.5rem; }
    .give-amt { padding: 0.9rem 0; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: #fff; font-weight: 700; font-size: 1.05rem; border-radius: 10px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
    .give-amt:hover { border-color: var(--accent-light); }
    .give-amt.active { background: var(--accent); border-color: var(--accent); }
    .give-custom { grid-column: 1 / -1; display: flex; align-items: center; gap: 0.3rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 0 0.9rem; background: rgba(255,255,255,0.05); }
    .give-custom span { color: rgba(255,255,255,0.6); font-weight: 700; font-size: 1.05rem; }
    .give-custom input { flex: 1; background: none; border: none; color: #fff; font-family: inherit; font-size: 1.05rem; font-weight: 700; padding: 0.85rem 0.3rem; outline: none; }
    .give-custom input::placeholder { color: rgba(255,255,255,0.45); font-weight: 500; }
    .give-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1.02rem; }
    .give-secure { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 1.1rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
    .give-secure svg { width: 14px; height: 14px; flex-shrink: 0; }
    .give-tax { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.8rem; line-height: 1.5; }
    .give-funds { margin-top: 4.5rem; }
    .give-funds-head { text-align: center; margin-bottom: 2.2rem; }
    .fund-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    .fund-card { text-align: center; padding: 2rem 1.2rem; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform 0.3s, box-shadow 0.3s; }
    .fund-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .fund-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-pale); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
    .fund-icon svg { width: 26px; height: 26px; }
    .fund-card h4 { color: var(--navy); font-size: 1rem; line-height: 1.35; }
    .give-verse { margin-top: 3.5rem; text-align: center; }
    .give-verse p { font-style: italic; color: var(--text-light); font-size: 1.08rem; max-width: 640px; margin: 0 auto; line-height: 1.6; }
    .give-verse strong { color: var(--accent); font-style: normal; }
    @media (max-width: 900px) {
      .give-layout { grid-template-columns: 1fr; gap: 2.2rem; }
      .give-card { position: static; }
    }
    @media (max-width: 820px) { .fund-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .fund-grid { grid-template-columns: 1fr; } }

    /* ── Mission statement ── */
    .mission-statement { max-width: 880px; margin: 2rem auto 0; position: relative; padding: 0 1rem; }
    .mission-statement::before {
      content: "\201C";
      position: absolute; top: -2.4rem; left: 50%; transform: translateX(-50%);
      font-size: 4.5rem; line-height: 1; color: var(--accent); opacity: 0.28;
      font-family: Georgia, "Times New Roman", serif;
    }
    .mission-statement p { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.5; font-weight: 500; font-style: italic; color: #fff; }
    .mission-statement .ms-accent { color: var(--accent-light); font-style: normal; font-weight: 700; }
    .mission-sub { margin: 1.6rem auto 0; max-width: 620px; color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.6; }
    .dropdown-menu a { white-space: nowrap; }

    /* ── Programs: varied navy→teal shades (palette only) ── */
    .programs-grid > .program-card:nth-child(1) { background: linear-gradient(150deg, #1a2a3a, #0f1c28); }
    .programs-grid > .program-card:nth-child(2) { background: linear-gradient(150deg, #163a52, #0e2636); }
    .programs-grid > .program-card:nth-child(3) { background: linear-gradient(150deg, #1a4a57, #123a45); }
    .programs-grid > .program-card:nth-child(4) { background: linear-gradient(150deg, #1b5a52, #103f3b); }
    .programs-grid > .program-card:nth-child(5) { background: linear-gradient(150deg, #20675a, #123f37); }

    /* ── Compact program accordion + simplified give card ── */
    .prog-accordion { max-width: 720px; margin: 1.75rem auto 0; }
    .accordion.prog { background:#fff; }
    .prog + .prog { margin-top: 0.65rem; }
    .prog .accordion-trigger { padding: 1.05rem 1.3rem; gap: 1rem; }
    .prog-left { display:flex; align-items:center; gap:0.85rem; min-width:0; }
    .prog-ic { flex-shrink:0; width:40px; height:40px; border-radius:11px; background:var(--accent-pale); color:var(--accent); display:flex; align-items:center; justify-content:center; }
    .prog-ic svg { width:21px; height:21px; }
    .prog-name { font-weight:700; color:var(--navy); font-size:1.04rem; line-height:1.25; }
    .prog-right { display:flex; align-items:center; gap:0.9rem; flex-shrink:0; }
    .prog-soon { font-size:0.6rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--accent); background:var(--accent-pale); padding:0.3rem 0.65rem; border-radius:50px; white-space:nowrap; }
    .prog .accordion-panel-inner { padding: 0 1.3rem 1.4rem; }
    .prog-panel { padding-top:0.2rem; }
    .prog-panel p { color:var(--text-light); line-height:1.6; font-size:0.97rem; }
    .prog-panel .pc-link { display:inline-block; margin-top:0.7rem; color:var(--accent); font-weight:600; font-size:0.92rem; text-decoration:none; }
    .prog-panel .pc-link:hover { text-decoration:underline; }
    .give-card-lead { color: rgba(255,255,255,0.80); font-size:0.98rem; line-height:1.6; margin-bottom:1.5rem; }
    @media (max-width:480px){ .prog-soon { display:none; } .prog .accordion-trigger { padding:0.95rem 1rem; } .prog-name{ font-size:0.97rem; } }

    /* ── Program rows: faded orange → teal fade ── */
    .prog-accordion > .prog:nth-child(1) { background:#f8ddca; }
    .prog-accordion > .prog:nth-child(2) { background:#ead9c2; }
    .prog-accordion > .prog:nth-child(3) { background:#c9d6c2; }
    .prog-accordion > .prog:nth-child(4) { background:#a3c7ba; }
    .prog-accordion > .prog:nth-child(5) { background:#79b3a4; }
    .prog .prog-ic { background: rgba(255,255,255,0.55); }
    .prog .prog-soon { background: rgba(255,255,255,0.5); }
    .prog .accordion-icon { background: rgba(255,255,255,0.5); }
    .prog .accordion-trigger:hover { background: rgba(255,255,255,0.28); }
    .prog-panel p { color: var(--text); }

    /* ── Mission goal tags (replaced value cards) ── */
    .values .values-header { margin-bottom: 0; }
    .mission-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:0.6rem 0.9rem; margin-top:1.9rem; }
    .mission-tags span {
      font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
      color: var(--accent-light);
      background: rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.14);
      padding:0.45rem 1.1rem; border-radius:50px;
    }
  

/* ───────── Multi-page additions ───────── */
.hero-tagline { font-family:'Permanent Marker',cursive; color:var(--accent); font-size:1.5rem; margin:-0.3rem 0 1.1rem; }
.home-prog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:1rem; margin-top:1.5rem; }
.home-prog { display:block; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.5rem; text-decoration:none; transition:transform .2s, box-shadow .2s; box-shadow:var(--shadow-sm); }
.home-prog:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.home-prog .prog-ic { width:46px; height:46px; border-radius:12px; background:var(--accent-pale); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:0.9rem; }
.home-prog .prog-ic svg { width:24px; height:24px; }
.home-prog h3 { color:var(--navy); font-size:1.05rem; margin-bottom:0.35rem; }
.home-prog p { color:var(--text-light); font-size:0.9rem; line-height:1.5; }
.home-podcast { display:grid; grid-template-columns:300px 1fr; gap:2.5rem; align-items:center; }
.home-podcast-art img { width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.give-band { background:linear-gradient(135deg,#1a2a3a,#1a3845,#1d4a5a); color:#fff; }
.give-band .heading-lg { color:#fff; }
.give-band .subtext { color:rgba(255,255,255,0.85); }
.give-band .label { color:var(--accent-light); }
.vision-line { text-align:center; max-width:760px; margin:0 auto 2.5rem; font-size:1.2rem; font-style:italic; color:var(--text); line-height:1.7; }
.faith-list { list-style:none; max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:0.9rem 2.2rem; }
.faith-list li { position:relative; padding-left:1.7rem; color:var(--text); line-height:1.55; }
.faith-list li::before { content:"\2726"; position:absolute; left:0; top:0.1rem; color:var(--accent); }
body.subpage main > section:first-child { padding-top:7rem; }
@media (max-width:760px){ .home-podcast { grid-template-columns:1fr; gap:1.5rem; } .home-podcast-art { max-width:300px; margin:0 auto; } }
@media (max-width:680px){ .faith-list { grid-template-columns:1fr; } }


/* Home program cards — orange→teal gradients */
.home-prog { border: 1px solid rgba(255,255,255,0.45); }
.home-prog-grid > .home-prog:nth-child(1) { background: linear-gradient(140deg,#f9e1d0,#efdcc8); }
.home-prog-grid > .home-prog:nth-child(2) { background: linear-gradient(140deg,#efdcc8,#d6d8c2); }
.home-prog-grid > .home-prog:nth-child(3) { background: linear-gradient(140deg,#d6d8c2,#b3cdbd); }
.home-prog-grid > .home-prog:nth-child(4) { background: linear-gradient(140deg,#b3cdbd,#8fbcad); }
.home-prog-grid > .home-prog:nth-child(5) { background: linear-gradient(140deg,#8fbcad,#6aa996); }
.home-prog .prog-ic { background: rgba(255,255,255,0.6); }
.home-prog p { color: var(--text); }
