        /* ── New Static Hero ─────────────────────────────────────────── */
        .hero-new {
            display: grid;
            grid-template-rows: 1fr auto;
            min-height: 90vh;
        }

        /* Full-width text column — dark green background */
        .hero-new-text {
            grid-row: 1;
            background: var(--secondary, #234e48);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 7rem 0 5rem;
            position: relative;
            overflow: hidden;
        }

        /* Decorative rings */
        .hero-new-text::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            border: 1px solid rgba(245, 116, 80, .1);
            top: -250px;
            left: -200px;
            pointer-events: none;
        }

        .hero-new-text::after {
            content: '';
            position: absolute;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            border: 1px solid rgba(245, 116, 80, .07);
            bottom: -180px;
            right: -100px;
            pointer-events: none;
        }

        .hnt-10yr-badge {
            position: absolute;
            top: 7.5rem;
            left: 2rem;
            width: 130px;
            height: 130px;
            object-fit: contain;
            opacity: 1;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)) drop-shadow(0 0 20px rgba(255, 255, 255, .85)) drop-shadow(0 0 40px rgba(255, 255, 255, .6)) drop-shadow(0 0 70px rgba(255, 255, 255, .3));
            animation: hnt-10yr-float 4s ease-in-out infinite, hnt-10yr-pulse 3s ease-in-out infinite;
            pointer-events: none;
            z-index: 2;
        }

        @keyframes hnt-10yr-pulse {

            0%,
            100% {
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)) drop-shadow(0 0 20px rgba(255, 255, 255, .85)) drop-shadow(0 0 40px rgba(255, 255, 255, .6)) drop-shadow(0 0 70px rgba(255, 255, 255, .3));
            }

            50% {
                filter: drop-shadow(0 0 14px rgba(255, 255, 255, 1)) drop-shadow(0 0 32px rgba(255, 255, 255, 1)) drop-shadow(0 0 60px rgba(255, 255, 255, .75)) drop-shadow(0 0 100px rgba(255, 255, 255, .45));
            }
        }

        @keyframes hnt-10yr-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 600px) {
            .hnt-10yr-badge {
                width: 80px;
                height: 80px;
                top: 7rem;
                left: 1rem;
            }
        }

        .hnt-inner {
            position: relative;
            z-index: 1;
            padding: 0 2rem;
            max-width: 780px;
            width: 100%;
            text-align: center;
            animation: hnt-in .85s ease-out both;
        }

        @keyframes hnt-in {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hnt-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .18em;
            color: var(--primary, #f57450);
            border: 1px solid rgba(245, 116, 80, .35);
            background: rgba(245, 116, 80, .08);
            padding: .38rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.75rem;
        }

        .hnt-eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary, #f57450);
            animation: hnt-pulse 2.2s ease-in-out infinite;
        }

        @keyframes hnt-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(245, 116, 80, .5);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(245, 116, 80, 0);
            }
        }

        .hnt-title {
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: clamp(2.8rem, 3.8vw, 4.4rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.08;
            margin-bottom: .9rem;
        }

        .hnt-tagline {
            font-size: .82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .3em;
            color: rgba(255, 255, 255, .42);
            margin-bottom: 1.6rem;
        }

        .hnt-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, .72);
            line-height: 1.75;
            margin: 0 auto 2.25rem;
            max-width: 500px;
        }

        .hnt-ctas {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .hnt-ghost-btn {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            padding: .72rem 1.55rem;
            border: 2px solid rgba(255, 255, 255, .22);
            border-radius: 8px;
            color: rgba(255, 255, 255, .88);
            font-size: .92rem;
            font-weight: 600;
            background: rgba(255, 255, 255, .06);
            transition: all .2s;
        }

        .hnt-ghost-btn:hover {
            border-color: rgba(255, 255, 255, .55);
            background: rgba(255, 255, 255, .12);
            color: #fff;
        }

        .hnt-give-btn {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            padding: .72rem 1.55rem;
            border: 2px solid transparent;
            border-radius: 8px;
            color: #fff;
            font-size: .92rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f57450 0%, #e8431e 100%);
            box-shadow: 0 4px 18px rgba(245, 116, 80, .5);
            transition: all .2s;
            animation: give-pulse 2.4s ease-in-out infinite;
        }

        .hnt-give-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 24px rgba(245, 116, 80, .65);
            color: #fff;
            animation: none;
        }

        @keyframes give-pulse {

            0%,
            100% {
                box-shadow: 0 4px 18px rgba(245, 116, 80, .5);
            }

            50% {
                box-shadow: 0 4px 28px rgba(245, 116, 80, .85);
            }
        }

        .hnt-service-info {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, .1);
        }

        .hnt-si-item {
            display: flex;
            align-items: center;
            gap: .45rem;
            font-size: .85rem;
            color: rgba(255, 255, 255, .6);
        }

        .hnt-si-item i {
            color: var(--primary, #f57450);
        }

        .hnt-si-item strong {
            color: rgba(255, 255, 255, .88);
            font-weight: 600;
        }

        /* Stats strip */
        .hero-new-stats {
            grid-row: 2;
            background: var(--surface, #dbe1d2);
            border-top: 1px solid rgba(35, 78, 72, .12);
        }

        .hns-row {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            padding: 1.5rem 0;
            gap: 0;
        }

        .hns-item {
            text-align: center;
            padding: .35rem 3rem;
        }

        .hns-num {
            display: block;
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary, #f57450);
            line-height: 1;
        }

        .hns-label {
            display: block;
            font-size: .72rem;
            text-transform: uppercase;
            letter-spacing: .09em;
            color: var(--text-secondary, #5a6c57);
            margin-top: .3rem;
            font-weight: 600;
        }

        .hns-sep {
            width: 1px;
            height: 34px;
            background: rgba(35, 78, 72, .15);
        }

        @media (max-width: 768px) {
            .hero-new {
                min-height: auto;
            }

            .hero-new-text {
                padding: 7.5rem 0 3.5rem;
            }

            .hnt-title {
                font-size: 2.4rem;
            }

            .hns-item {
                padding: .35rem 1.4rem;
            }

            .hns-sep {
                display: none;
            }

            .hns-row {
                gap: .5rem;
            }

        }

        @media (max-width: 480px) {
            .hnt-title {
                font-size: 2rem;
            }

            .hnt-service-info {
                gap: .9rem;
            }
        }

        /* ── Home Devotion + Quick-Links Section ─────────────────────── */
        .home-devotion-section {
            position: relative;
            padding: 4.5rem 0;
            background: #f5f7f2;
            overflow: hidden;
        }

        .home-devotion-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(35, 78, 72, .04) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .hds-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        /* ── Devotion Card ───────────────────────────────────────────── */
        .hds-devotion-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 28px rgba(0, 0, 0, .07), 0 0 0 1px rgba(0, 0, 0, .04);
            overflow: hidden;
        }

        .hds-card-accent {
            height: 5px;
            background: linear-gradient(90deg, var(--primary, #f57450) 0%, var(--secondary, #234e48) 100%);
        }

        .hds-card-inner {
            padding: 2rem 2.5rem 2.5rem;
        }

        .hds-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: .5rem;
            margin-bottom: 1.1rem;
        }

        .hds-tag {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--primary, #f57450);
            background: rgba(245, 116, 80, .09);
            padding: .28rem .85rem;
            border-radius: 100px;
        }

        .hds-date {
            font-size: .85rem;
            color: #999;
            font-weight: 500;
        }

        .hds-title {
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: 1.55rem;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 1.3rem;
        }

        .hds-verse {
            background: linear-gradient(135deg, #fef8f1 0%, #fff5ec 100%);
            border-left: 3px solid var(--primary, #f57450);
            border-radius: 0 10px 10px 0;
            padding: 1.1rem 1.4rem;
            margin: 0 0 1.4rem;
        }

        .hds-verse p {
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: 1.05rem;
            font-style: italic;
            color: #2c2c2c;
            line-height: 1.75;
            margin: 0 0 .4rem;
        }

        .hds-verse footer {
            font-size: .85rem;
            color: var(--primary, #f57450);
            font-weight: 600;
        }

        .hds-excerpt {
            font-size: .97rem;
            color: #555;
            line-height: 1.72;
            margin-bottom: 1.6rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hds-cta {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-weight: 700;
            font-size: .92rem;
            color: var(--primary, #f57450);
            text-decoration: none;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
            transition: border-color .2s, gap .2s;
        }

        .hds-cta:hover {
            border-bottom-color: var(--primary, #f57450);
            gap: .7rem;
        }

        /* ── Quick Links ─────────────────────────────────────────────── */
        .hds-quicklinks {
            display: flex;
            flex-direction: column;
        }

        .hds-ql-heading {
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: #bbb;
            margin-bottom: .9rem;
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .hds-ql-heading-line {
            flex: 1;
            height: 1px;
            background: #e8e8e8;
        }

        .hds-ql-nav {
            display: flex;
            flex-direction: column;
            gap: .55rem;
        }

        .hds-ql-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: .9rem 1.15rem;
            background: #fff;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 1px 5px rgba(0, 0, 0, .055), 0 0 0 1px rgba(0, 0, 0, .04);
            transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .hds-ql-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
            background: #fff9f5;
            color: inherit;
        }

        .hds-ql-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--secondary, #234e48);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: .95rem;
            flex-shrink: 0;
            transition: background .18s ease;
        }

        .hds-ql-item:hover .hds-ql-icon {
            background: var(--primary, #f57450);
        }

        .hds-ql-text {
            flex: 1;
            line-height: 1.25;
        }

        .hds-ql-text strong {
            display: block;
            font-size: .92rem;
            color: #1a1a1a;
            font-weight: 600;
        }

        .hds-ql-text small {
            font-size: .78rem;
            color: #999;
        }

        .hds-ql-arrow {
            font-size: 1.35rem;
            color: #ddd;
            line-height: 1;
            transition: color .18s, transform .18s;
        }

        .hds-ql-item:hover .hds-ql-arrow {
            color: var(--primary, #f57450);
            transform: translateX(2px);
        }

        /* ── Responsive ──────────────────────────────────────────────── */
        @media (max-width: 900px) {
            .hds-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hds-card-inner {
                padding: 1.25rem 1.25rem 1.75rem;
            }

            .hds-title {
                font-size: 1.25rem;
            }

            .hds-skeleton {
                padding: 1.25rem;
            }
        }

        /* ── Devotion Popup Modal ─────────────────────────────────── */
        #devotion-popup {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            align-items: flex-end;
            justify-content: center;
            background: rgba(0, 0, 0, .55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        #devotion-popup.is-open {
            display: flex;
        }

        .dp-sheet {
            background: #fff;
            border-radius: 22px 22px 0 0;
            width: 100%;
            max-width: 540px;
            max-height: 90dvh;
            overflow-y: auto;
            padding-bottom: 2rem;
            position: relative;
            animation: dp-slide .4s cubic-bezier(.22, .68, 0, 1.2) both;
            box-shadow: 0 -8px 40px rgba(0, 0, 0, .18);
        }

        @keyframes dp-slide {
            from {
                transform: translateY(100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (min-width: 600px) {
            #devotion-popup {
                align-items: center;
                padding: 1rem;
            }

            .dp-sheet {
                border-radius: 22px;
                max-height: 85vh;
                animation-name: dp-scale;
            }
        }

        @keyframes dp-scale {
            from {
                transform: scale(.92) translateY(16px);
                opacity: 0;
            }

            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .dp-accent {
            height: 5px;
            background: linear-gradient(90deg, var(--primary, #f57450) 0%, var(--secondary, #234e48) 100%);
            border-radius: 22px 22px 0 0;
        }

        .dp-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, .07);
            color: #555;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .18s;
            line-height: 1;
        }

        .dp-close:hover {
            background: rgba(0, 0, 0, .14);
            color: #111;
        }

        .dp-theme-toggle {
            position: absolute;
            top: 1rem;
            right: 4.2rem;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(35, 78, 72, .14);
            border-radius: 999px;
            background: rgba(255, 255, 255, .94);
            color: var(--secondary, #234e48);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
            z-index: 3;
        }

        .dp-theme-toggle:hover {
            transform: translateY(-1px);
            border-color: rgba(245, 116, 80, .35);
            color: var(--primary, #f57450);
        }

        .dp-theme-icon {
            position: relative;
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .dp-theme-icon .fa-circle-half-stroke,
        .dp-theme-icon .fa-moon {
            position: absolute;
            font-size: 18px;
            line-height: 1;
            transition: opacity .2s ease, transform .2s ease;
        }

        .dp-theme-icon .fa-circle-half-stroke {
            opacity: 1;
            transform: scale(1);
        }

        .dp-theme-icon .fa-moon {
            opacity: 0;
            transform: scale(.7);
        }

        html[data-theme="dark"] .dp-theme-icon .fa-circle-half-stroke {
            opacity: 0;
            transform: scale(.7);
        }

        html[data-theme="dark"] .dp-theme-icon .fa-moon {
            opacity: 1;
            transform: scale(1);
        }

        .dp-inner {
            padding: 1.5rem 1.75rem 0;
        }

        .dp-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: .5rem;
            margin-bottom: 1rem;
        }

        .dp-tag {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--primary, #f57450);
            background: rgba(245, 116, 80, .09);
            padding: .26rem .8rem;
            border-radius: 100px;
        }

        .dp-date {
            font-size: .82rem;
            color: var(--text-muted, #aaa);
            font-weight: 500;
        }

        .dp-title {
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: clamp(1.3rem, 4vw, 1.6rem);
            color: var(--text-primary, #1a1a1a);
            line-height: 1.3;
            margin-bottom: 1.1rem;
            padding-right: 2rem;
        }

        .dp-verse {
            background: linear-gradient(135deg, #fef8f1 0%, #fff5ec 100%);
            border-left: 3px solid var(--primary, #f57450);
            border-radius: 0 10px 10px 0;
            padding: 1rem 1.25rem;
            margin: 0 0 1.1rem;
        }

        .dp-verse p {
            font-family: var(--font-display, 'Playfair Display', serif);
            font-size: 1rem;
            font-style: italic;
            color: var(--text-primary, #2c2c2c);
            line-height: 1.7;
            margin: 0 0 .35rem;
        }

        .dp-verse footer {
            font-size: .82rem;
            color: var(--primary, #f57450);
            font-weight: 600;
        }

        .dp-excerpt {
            font-size: .95rem;
            color: var(--text-secondary, #555);
            line-height: 1.72;
            margin-bottom: 1.4rem;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .dp-actions {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
            padding: 0 1.75rem;
        }

        .dp-btn-read {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            padding: .82rem 1.25rem;
            background: var(--secondary, #234e48);
            color: #fff;
            border-radius: 10px;
            font-size: .92rem;
            font-weight: 600;
            text-decoration: none;
            transition: background .2s, transform .15s;
            border: none;
            cursor: pointer;
        }

        .dp-btn-read:hover {
            background: #1a3d38;
            transform: translateY(-1px);
            color: #fff;
        }

        .dp-btn-share {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            padding: .82rem 1.25rem;
            background: rgba(245, 116, 80, .1);
            color: var(--primary, #f57450);
            border-radius: 10px;
            font-size: .92rem;
            font-weight: 600;
            border: 2px solid rgba(245, 116, 80, .25);
            cursor: pointer;
            transition: background .2s, border-color .2s, transform .15s;
        }

        .dp-btn-share:hover {
            background: rgba(245, 116, 80, .18);
            border-color: rgba(245, 116, 80, .5);
            transform: translateY(-1px);
        }

        .dp-copied-msg {
            display: none;
            font-size: .78rem;
            color: var(--secondary, #234e48);
            font-weight: 600;
            text-align: center;
            margin-top: .4rem;
            width: 100%;
        }

        @media (max-width: 400px) {
            .dp-theme-toggle {
                right: 3.9rem;
                width: 38px;
                height: 38px;
            }

            .dp-inner {
                padding: 1.25rem 1.25rem 0;
            }

            .dp-actions {
                padding: 0 1.25rem;
            }

            .dp-btn-read,
            .dp-btn-share {
                font-size: .88rem;
                padding: .75rem 1rem;
            }
        }

        html[data-theme="dark"] .home-devotion-section {
            background: var(--surface-soft);
        }

        html[data-theme="dark"] .home-devotion-section::before {
            background-image: radial-gradient(circle, rgba(157, 200, 249, .08) 1px, transparent 1px);
        }

        html[data-theme="dark"] .hds-devotion-card,
        html[data-theme="dark"] .hds-ql-item,
        html[data-theme="dark"] .dp-sheet {
            background: var(--card-bg);
            color: var(--text-primary);
            box-shadow: var(--shadow-medium);
            border-color: var(--border);
        }

        html[data-theme="dark"] .hds-verse,
        html[data-theme="dark"] .dp-verse {
            background: linear-gradient(135deg, rgba(245, 116, 80, .12) 0%, rgba(255, 255, 255, .03) 100%);
        }

        html[data-theme="dark"] .hds-date,
        html[data-theme="dark"] .hds-title,
        html[data-theme="dark"] .hds-excerpt,
        html[data-theme="dark"] .hds-verse p,
        html[data-theme="dark"] .hds-verse footer,
        html[data-theme="dark"] .hds-ql-text small,
        html[data-theme="dark"] .dp-date,
        html[data-theme="dark"] .dp-excerpt,
        html[data-theme="dark"] .dp-copied-msg {
            color: var(--text-secondary);
        }

        html[data-theme="dark"] .hds-title,
        html[data-theme="dark"] .dp-title {
            color: var(--text-primary);
        }

        html[data-theme="dark"] .dp-close {
            background: rgba(255, 255, 255, .08);
            color: var(--text-secondary);
        }

        html[data-theme="dark"] .dp-close:hover {
            background: rgba(255, 255, 255, .14);
            color: var(--text-primary);
        }

        html[data-theme="dark"] .dp-theme-toggle {
            background: rgba(255, 255, 255, .08);
            color: var(--text-secondary);
            border-color: rgba(255, 255, 255, .14);
        }

        html[data-theme="dark"] .dp-theme-toggle:hover {
            background: rgba(255, 255, 255, .12);
            color: var(--primary, #f57450);
            border-color: rgba(245, 116, 80, .35);
        }
