:root {
            /* Legacy aliases — forward to canonical brand tokens declared in /brand.css */
            --bg-soft-white:      var(--bg);
            --off-white:          var(--surface);
            --deep-forest:        var(--brand);
            --harvest-amber:      var(--accent);
            --harvest-amber-hover:var(--accent-hover);
            --charcoal:           var(--ink);
            --charcoal-mid:       var(--ink-mid);
            --midnight-forest:    var(--brand-deep);

            --white:              #FFFFFF;
            --panel:              #EBE8E0;
            --deep:               var(--brand-deep);
            --stone:              #D9D3C7;
            --stone-mid:          #B8B0A2;
            --accent:             var(--harvest-amber);
            --accent-dim:         rgba(201,122,50,0.10);
            --border:             var(--line);
            --border-mid:         var(--line-strong);
            --text-hi:            var(--charcoal);
            --text-mid:           var(--charcoal-mid);
            --text-dim:           rgba(36,36,36,0.5);
            --field:              var(--harvest-amber);
            --field-dim:          rgba(201,122,50,0.10);
        }

        /* ========================
           NAV
        ======================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 200;
            padding: 0 2rem;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(24px) saturate(180%);
            background: rgba(248,247,243,0.94);
            border-bottom: 1px solid var(--line);
        }

        .logo {
            display: block;
            height: 32px;
            width: auto;
        }

        .logo img {
            height: 32px;
            width: auto;
            max-height: 44px;
            display: block;
            transition: height 0.2s;
        }

        @media (max-width: 768px) {
            .logo img { height: 38px; }
        }

        @media (max-width: 480px) {
            .logo img { height: 42px; }
        }

        .nav-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-back {
            font-family: var(--font-sans);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--charcoal-mid);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }

        .nav-back:hover { color: var(--deep-forest); }

        .nav-cta {
            background: transparent;
            color: var(--deep-forest);
            padding: 0.5rem 1.3rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all 0.2s;
            border: 1px solid var(--deep-forest);
        }

        .nav-cta:hover { background: rgba(18,54,41,0.05); }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
            z-index: 210;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: var(--bg-soft-white);
            z-index: 150;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .mobile-menu.active { display: flex; }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu a:hover { color: var(--deep-forest); }

        .mobile-menu a[style*="accent"] { color: var(--harvest-amber); }

        /* ========================
           HERO — restrained off-white surface, layered onto .sl-hero from /brand.css
        ======================== */
        .hero {
            background: var(--bg-soft-white);
            text-align: center;
        }

        /* Bricolage-style eyebrow — brand color, no dark pill */
        .hero .sl-hero__eyebrow {
            color: var(--deep-forest);
            background: transparent;
            border: none;
            padding: 0;
            border-radius: 0;
        }

        /* light hero — dark text on top of shared .sl-hero__title / __sub */
        .hero .sl-hero__title { color: var(--charcoal); }
        .hero .sl-hero__sub {
            color: var(--charcoal-mid);
            opacity: 1;
            margin-inline: auto;
        }

        .workshop-inline {
            max-width: 460px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }

        .workshop-inline-row {
            display: flex;
            gap: 0.5rem;
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: 8px;
            padding: 0.4rem;
        }

        .workshop-inline input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: var(--charcoal);
            font-family: var(--font-sans);
            font-size: 0.95rem;
            padding: 0.75rem 0.9rem;
        }

        .workshop-inline input::placeholder {
            color: var(--charcoal-mid);
            opacity: 0.55;
        }

        .workshop-inline button {
            background: var(--harvest-amber);
            color: #fff;
            border: none;
            padding: 0.85rem 1.4rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
        }

        .workshop-inline button:hover {
            background: var(--harvest-amber-hover);
        }

        .workshop-inline button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .workshop-inline-hint, .workshop-inline-msg {
            font-size: 0.78rem;
            color: var(--charcoal-mid);
            opacity: 0.75;
            margin-top: 0.6rem;
            text-align: center;
        }

        .workshop-inline-msg.success { color: var(--harvest-amber); }
        .workshop-inline-msg.error { color: #B36B2B; }

        .hero-proof {
            max-width: 980px;
            margin: 0 auto 2rem;
            padding: 1.5rem 1rem 1rem;
            position: relative;
            z-index: 1;
        }
        .hero-proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        .hero-proof-card {
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: 10px;
            padding: 1rem 1.1rem;
            margin: 0;
        }
        .hero-proof-card blockquote {
            font-family: var(--font-display);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 0.7rem;
            color: var(--charcoal);
            quotes: none;
        }
        .hero-proof-card blockquote::before { content: none; }
        .hero-proof-card figcaption {
            font-size: 0.78rem;
            color: var(--charcoal-mid);
            line-height: 1.4;
        }
        .hero-proof-card figcaption strong {
            display: block;
            color: var(--harvest-amber);
            font-weight: 600;
            margin-bottom: 1px;
        }
        .hero-proof-card figcaption span {
            display: block;
            color: var(--charcoal-mid);
            opacity: 0.7;
        }
        @media (max-width: 880px) {
            .hero-proof-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .workshop-inline-row { flex-direction: column; }
            .workshop-inline button { width: 100%; }
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3.5rem;
        }

        .hero-trust {
            display: flex;
            gap: 2.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-sans);
            font-size: 0.82rem;
            color: var(--charcoal-mid);
        }

        .hero-trust-item::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
        }

        /* ========================
           RESOURCES PROMO
        ======================== */
        .resources-promo {
            background: var(--deep-forest);
            border-top: 1px solid rgba(18,54,41,0.14);
            border-bottom: 1px solid rgba(255,255,255,0.10);
            padding: 4rem 2rem;
        }

        .resources-promo-inner {
            max-width: 1060px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2.5rem;
        }

        .resources-promo-copy { max-width: 700px; }

        .resources-promo .section-label {
            color: var(--harvest-amber);
            margin-bottom: 1rem;
        }

        .resources-promo .section-label::before { background: currentColor; }

        .resources-promo h2 {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3.4vw, 2.3rem);
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .resources-promo-copy > p {
            color: rgba(255,255,255,0.76);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        .resources-promo-action {
            flex-shrink: 0;
            text-align: center;
        }

        .resources-promo .btn-outline {
            color: rgba(255,255,255,0.92);
            border-color: rgba(255,255,255,0.38);
            white-space: nowrap;
        }

        .resources-promo .btn-outline:hover {
            background: rgba(255,255,255,0.10);
            border-color: rgba(255,255,255,0.72);
        }

        .resources-promo-note {
            color: rgba(255,255,255,0.56);
            font-size: 0.76rem;
            line-height: 1.5;
            margin: 0.85rem 0 0;
        }

        /* ========================
           WHAT YOU'LL GET
        ======================== */
        .deliverables {
            padding-block: var(--s-section-y);
            padding-inline: 2rem;
            background: var(--bg-soft-white);
            position: relative;
        }

        .deliverables-inner {
            max-width: 1060px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
        }

        .section-header h2 em {
            font-style: normal;
            color: var(--deep-forest);
        }

        .section-header p {
            font-size: 1rem;
            color: var(--charcoal-mid);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.75;
        }

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

        .deliverable-card {
            padding: 2rem 2.2rem;
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: 12px;
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            transition: border-color 0.2s;
        }

        .deliverable-card:hover {
            border-color: var(--harvest-amber);
        }

        .deliverable-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(201,122,50,0.10);
            border: 1px solid rgba(201,122,50,0.20);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .deliverable-text h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.4rem;
        }

        .deliverable-text p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--charcoal-mid);
        }

        /* ========================
           HOW IT WORKS
        ======================== */
        .how-it-works {
            padding-block: var(--s-section-y);
            padding-inline: 2rem;
            background: var(--white);
            position: relative;
        }

        .steps-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .step-card {
            padding: 2.5rem 2rem;
            background: var(--bg-soft-white);
            border: 1px solid var(--stone);
            border-radius: 12px;
            text-align: center;
            position: relative;
            transition: border-color 0.2s;
        }

        .step-card:hover { border-color: var(--harvest-amber); }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--harvest-amber);
            color: #FFFFFF;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        .step-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }

        .step-card p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--charcoal-mid);
        }

        .step-connector {
            display: none;
        }

        @media (min-width: 768px) {
            .step-connector {
                display: block;
                position: absolute;
                top: 34px;
                right: -1.3rem;
                color: var(--accent);
                font-size: 1.3rem;
                opacity: 0.5;
                z-index: 2;
            }
        }

        /* ========================
           WHAT MAKES THIS DIFFERENT
        ======================== */
        .different-section {
            padding-block: var(--s-section-y);
            padding-inline: 2rem;
            background: var(--bg-soft-white);
            position: relative;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .diff-card {
            padding: 2rem;
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: 12px;
            transition: border-color 0.2s;
        }

        .diff-card:hover { border-color: var(--harvest-amber); }

        .diff-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }

        .diff-card p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--charcoal-mid);
        }

        /* ========================
           PRICING
        ======================== */
        .pricing-section {
            padding: 7rem 2rem;
            background: var(--white);
            position: relative;
        }

        .pricing-inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-soft-white);
            border: 1.5px solid var(--stone);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
        }

        .pricing-badge {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: var(--harvest-amber);
            color: #FFFFFF;
            padding: 0.35rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }

        .pricing-card h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }

        .pricing-card > p {
            font-size: 1rem;
            color: var(--charcoal-mid);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .pricing-credit-box {
            background: rgba(201,122,50,0.08);
            border: 1px solid rgba(201,122,50,0.20);
            border-radius: 10px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-credit-box strong {
            display: block;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--harvest-amber);
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .pricing-credit-box p {
            font-size: 0.88rem;
            color: var(--charcoal-mid);
            line-height: 1.65;
        }

        /* ========================
           FAQ
        ======================== */
        .faq-section {
            padding: 7rem 2rem;
            background: var(--bg-soft-white);
            position: relative;
        }

        .faq-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--stone);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.4rem 0;
            cursor: pointer;
            user-select: none;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
        }

        .faq-question h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--charcoal);
            padding-right: 1rem;
            line-height: 1.4;
        }

        .faq-toggle {
            font-size: 1.4rem;
            color: var(--harvest-amber);
            flex-shrink: 0;
            transition: transform 0.3s;
            font-weight: 300;
        }

        .faq-item.active .faq-toggle { transform: rotate(45deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .faq-item.active .faq-answer { max-height: 400px; }

        .faq-answer p {
            font-size: 0.93rem;
            line-height: 1.8;
            color: var(--charcoal-mid);
            padding-bottom: 1.4rem;
        }

        /* ========================
           CLOSING CTA
        ======================== */
        .closing-section {
            padding: 8rem 2rem;
            background: var(--midnight-forest);
            text-align: center;
            position: relative;
        }

        .closing-inner {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .closing-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 600;
            color: #FFFFFF;
            line-height: 1.08;
            letter-spacing: -0.025em;
            margin-bottom: 1.2rem;
        }

        .closing-section h2 em {
            font-style: normal;
            color: var(--harvest-amber);
        }

        .closing-section > .closing-inner > p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            margin-bottom: 2.5rem;
            line-height: 1.75;
        }

        .closing-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Closing section buttons */
        .closing-section .btn-primary {
            background: var(--harvest-amber);
            color: #FFFFFF;
        }
        .closing-section .btn-primary:hover {
            background: var(--harvest-amber-hover);
        }
        .closing-section .btn-outline {
            color: rgba(255,255,255,0.85);
            border-color: rgba(255,255,255,0.35);
        }
        .closing-section .btn-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.65);
        }

        /* ========================
           CONTACT FORM
        ======================== */
        .contact-section {
            background: var(--midnight-forest);
            color: #FFFFFF;
            padding: 7rem 2rem;
        }

        .contact-inner {
            max-width: 640px;
            margin: 0 auto;
        }

        .contact-section h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            font-weight: 600;
            letter-spacing: -0.025em;
            color: #FFFFFF;
            margin-bottom: 0.75rem;
        }

        .contact-section > .contact-inner > p {
            color: rgba(255,255,255,0.65);
            font-size: 0.98rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 6px;
            padding: 0.75rem 1rem;
            font-size: 0.925rem;
            font-family: var(--font-sans);
            color: #FFFFFF;
            transition: border-color 0.2s, background 0.2s;
            outline: none;
            -webkit-appearance: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: rgba(201,122,50,0.5);
            background: rgba(255,255,255,0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .contact-submit button {
            background: var(--harvest-amber);
            color: #FFFFFF;
            border: none;
            border-radius: 6px;
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            font-family: var(--font-sans);
            cursor: pointer;
            transition: background 0.2s;
            letter-spacing: 0.01em;
            margin-top: 0.4rem;
        }

        .contact-submit button:hover { background: var(--harvest-amber-hover); }
        .contact-submit button:active { transform: scale(0.98); }
        .contact-submit button:disabled { opacity: 0.5; cursor: not-allowed; }

        /* ========================
           FOOTER
        ======================== */
        footer {
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            background: var(--midnight-forest);
        }

        .footer-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-brand {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.1rem;
            color: #FFFFFF;
            text-decoration: none;
        }

        .footer-brand span { color: var(--harvest-amber); }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #FFFFFF; }

        .footer-copy {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
        }

        /* ========================
           TOAST
        ======================== */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(120%);
            background: var(--bg-soft-white);
            color: var(--charcoal);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: var(--font-sans);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            white-space: nowrap;
        }

        .toast.show { transform: translateX(-50%) translateY(0); }

        .toast-icon {
            width: 22px;
            height: 22px;
            background: var(--harvest-amber);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .toast-icon svg { width: 13px; height: 13px; }

        /* ========================
           RESPONSIVE
        ======================== */
        @media (max-width: 768px) {
            .deliverables-grid { grid-template-columns: 1fr; }
            .steps-row { grid-template-columns: 1fr; }
            .diff-grid { grid-template-columns: 1fr; }
            .resources-promo-inner { align-items: flex-start; flex-direction: column; }
            .resources-promo-action { text-align: left; }
        }

        @media (max-width: 640px) {
            nav { padding: 0 1.25rem; }
            .nav-right .nav-back { display: none; }
            .hamburger { display: flex; }
            .nav-cta { display: none; }
            .hero { padding-inline: 1.25rem; }
            .hero-trust { gap: 1.2rem; flex-direction: column; align-items: center; }
            .pricing-card { padding: 2rem 1.5rem; }
            .closing-ctas { flex-direction: column; align-items: center; }
            .form-row { grid-template-columns: 1fr; }
            footer { padding: 2.5rem 1.25rem; }
            .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .resources-promo { padding: 3rem 1.25rem; }
            .resources-promo .btn-outline { white-space: normal; }
        }

