﻿.btp-reading-landing {
    --btp-ink: #4c4d4f;
    --btp-muted: #666769;
    --btp-green: #ff9770;
    --btp-green-dark: #b20229;
    --btp-coral: #b20229;
    --btp-gold: #ffeb7f;
    --btp-blue: #e98144;
    --btp-charcoal: #474747;
    --btp-age-light: #f0cdd4;
    --btp-peach: #ffdac1;
    --btp-soft: #fff4ee;
    --btp-line: #e6d5cd;
    --btp-shadow: 0 20px 55px rgba(76, 77, 79, 0.16);
    --btp-age-6-8: #cd702f;
    color: var(--btp-ink);
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

    .btp-reading-landing *,
    .btp-reading-landing *::before,
    .btp-reading-landing *::after {
        box-sizing: border-box;
    }

    .btp-reading-landing a {
        color: inherit;
        text-decoration: none;
    }

    .btp-reading-landing img {
        display: block;
        max-width: 100%;
    }

.btp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px 0 16px;
    color: #666769;
    font-size: 14px;
}

    .btp-breadcrumbs a:hover,
    .btp-text-link:hover {
        color: var(--btp-green);
    }

.btp-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    padding: clamp(42px, 6vw, 76px);
    padding-right: clamp(360px, 34vw, 500px);
    padding-bottom: 170px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg,
            rgba(255, 244, 238, 0.98) 0%,
            rgba(255, 244, 238, 0.94) 34%,
            rgba(255, 244, 238, 0.78) 52%,
            rgba(255, 218, 193, 0.18) 72%,
            rgba(255, 218, 193, 0.03) 100%
        ),
        url("https://images.movingbeyondthepage.com/images/reading-hero.png") 68% center / cover no-repeat;
}

.btp-hero-copy {
    width: 100%;
    max-width: 640px;
}

.btp-hero-text {
    max-width: 550px;
    color: #4c4d4f;
    font-size: 20px;
    line-height: 1.55;
}

.btp-hero-card {
    position: absolute;
    right: clamp(16px, 4vw, 48px);
    bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 520px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--btp-shadow);
}

    .btp-hero-card span {
        padding: 9px 12px;
        color: var(--btp-green-dark);
        font-size: 14px;
        font-weight: 800;
        background: var(--btp-age-light);
        border-radius: 7px;
    }

@media (max-width: 1320px) {
    /* Hero responsive overrides: keep the highlight card below the buttons on tablet/phone */
    .btp-hero {
        min-height: 0;
        align-items: start;
        padding-right: clamp(42px, 6vw, 76px);
        padding-bottom: clamp(42px, 6vw, 76px);
        background:
            linear-gradient(180deg,
                rgba(255, 244, 238, 0.97) 0%,
                rgba(255, 244, 238, 0.90) 46%,
                rgba(255, 244, 238, 0.74) 100%
            ),
            url("https://images.movingbeyondthepage.com/images/reading-hero.png") 56% center / cover no-repeat;
    }

    .btp-hero-copy {
        width: 100%;
        max-width: 640px;
    }

    .btp-hero-card {
        position: static !important;
        inset: auto !important;
        width: 100%;
        max-width: 640px;
        margin-top: 24px;
    }
}

@media (max-width: 1020px) {
    .btp-hero {
        min-height: 0;
        align-items: start;
        padding: 42px 24px 28px;
        background:
            linear-gradient(180deg,
                rgba(255, 244, 238, 0.97) 0%,
                rgba(255, 244, 238, 0.91) 50%,
                rgba(255, 244, 238, 0.80) 100%
            ),
            url("https://images.movingbeyondthepage.com/images/reading-hero.png") 48% center / cover no-repeat;
    }

    .btp-hero-copy,
    .btp-hero-text {
        max-width: 100%;
    }

    .btp-hero-card {
        position: static !important;
        inset: auto !important;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .btp-hero {
        min-height: 0;
        padding: 30px 12px 20px;
        background:
            linear-gradient(180deg,
                rgba(255, 244, 238, 0.98) 0%,
                rgba(255, 244, 238, 0.95) 46%,
                rgba(255, 244, 238, 0.88) 100%
            ),
            url("https://images.movingbeyondthepage.com/images/reading-hero.png") 42% center / cover no-repeat;
    }

    .btp-hero-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .btp-actions {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 10px;
    }

    .btp-button {
        width: 100%;
    }

    .btp-hero-card {
        position: static !important;
        inset: auto !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        padding: 10px;
    }

    .btp-hero-card span {
        display: block;
        width: 100%;
        font-size: 13px;
        text-align: left;
    }
}

.btp-reading-landing h1,
.btp-reading-landing h2,
.btp-reading-landing h3,
.btp-reading-landing p {
    margin-top: 0;
}

.btp-reading-landing h1 {
    margin-bottom: 22px;
    max-width: 630px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    letter-spacing: 0;
}

.btp-reading-landing .btp-hero-title {
    display: block !important;
    width: auto !important;
    max-width: 630px !important;
    min-height: 0 !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: var(--btp-ink) !important;
    background: transparent !important;
    border: 0 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(44px, 6vw, 76px) !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
    text-indent: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

    .btp-reading-landing .btp-hero-title::before,
    .btp-reading-landing .btp-hero-title::after {
        content: none !important;
        display: none !important;
    }

.btp-reading-landing h2 {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: 0;
}

.btp-reading-landing h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.18;
}

.btp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btp-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-weight: 700;
}

.btp-button-primary {
    color: #fff !important;
    background: var(--btp-green);
}

.btp-button-secondary {
    color: var(--btp-green-dark) !important;
    background: #fff;
    border: 1px solid var(--btp-line);
}

.btp-button-primary:hover {
    background: var(--btp-green-dark);
}

.btp-button-secondary:hover {
    border-color: var(--btp-green);
}

.btp-button-age-5-7 {
    background: var(--btp-coral);
}

.btp-button-age-5-7:hover {
    background: #8f0221;
}

.btp-button-age-6-8 {
    background: #cd702f;
}

.btp-button-age-6-8:hover {
    background: #b86124;
}

.btp-hero-card {
    position: absolute;
    right: clamp(16px, 4vw, 48px);
    bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 520px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--btp-shadow);
}

    .btp-hero-card span {
        padding: 9px 12px;
        color: var(--btp-green-dark);
        font-size: 14px;
        font-weight: 800;
        background: var(--btp-age-light);
        border-radius: 7px;
    }

.btp-section,
.btp-intro {
    padding: clamp(54px, 6vw, 78px) clamp(20px, 5vw, 72px);
}

.btp-intro {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    background: #fff;
}

    .btp-intro p:last-child,
    .btp-inside-copy p,
    .btp-kit-copy p,
    .btp-science p,
    .btp-final-cta p,
    .btp-timeline p,
    .btp-work-grid p,
    .btp-level-grid p {
        color: var(--btp-muted);
        font-size: 18px;
        line-height: 1.58;
    }

.btp-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0;
    background: var(--btp-green-dark);
}

    .btp-proof-strip div {
        min-height: 140px;
        padding: 30px;
        color: #fff;
        background: var(--btp-green-dark);
    }

    .btp-proof-strip strong,
    .btp-proof-strip span {
        display: block;
    }

    .btp-proof-strip strong {
        margin-bottom: 10px;
        font-size: 23px;
    }

    .btp-proof-strip span {
        color: #f7e6ea;
        line-height: 1.45;
    }

.btp-journey,
.btp-final-cta {
    background: #fff4ee;
}

.btp-section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.btp-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .btp-timeline article,
    .btp-work-grid article,
    .btp-level-grid article {
        background: #fff;
        border: 1px solid var(--btp-line);
        border-radius: 8px;
        box-shadow: 0 12px 32px rgba(76, 77, 79, 0.10);
    }

    .btp-timeline article {
        min-height: 240px;
        padding: 28px;
    }

.btp-step-number {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
    background: var(--btp-blue);
    border-radius: 50%;
}

.btp-works {
    background: #fff;
}

.btp-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

    .btp-work-grid article {
        overflow: hidden;
    }

    .btp-work-grid img {
        width: 100%;
        height: 240px;
        object-fit: contain;
        object-position: center center;
        padding: 12px;
        background: #f5f5f5;
    }

    .btp-work-grid h3,
    .btp-work-grid p {
        padding-right: 26px;
        padding-left: 26px;
    }

    .btp-work-grid h3 {
        padding-top: 24px;
    }

    .btp-work-grid p {
        padding-bottom: 28px;
    }

.btp-kit {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 5vw, 58px);
    align-items: center;
    background: #ffdac1;
}

.btp-kit-image {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--btp-line);
    border-radius: 8px;
    box-shadow: var(--btp-shadow);
}

    .btp-kit-image img {
        width: 100%;
        min-height: 360px;
        object-fit: cover;
    }

.btp-kit-copy {
    max-width: 620px;
}

.btp-kit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

    .btp-kit-list span {
        display: flex;
        min-height: 54px;
        align-items: center;
        padding: 12px 14px;
        color: var(--btp-green-dark);
        font-weight: 800;
        line-height: 1.25;
        background: #f0cdd4;
        border: 1px solid #dcb5bf;
        border-radius: 8px;
    }

.btp-science {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
    gap: 44px;
    align-items: center;
    color: var(--btp-ink);
    background: linear-gradient(180deg, #fff4ee 0%, #ffdac1 100%);
    border-top: 1px solid var(--btp-line);
    border-bottom: 1px solid var(--btp-line);
}

    .btp-science h2 {
        color: var(--btp-ink);
    }

    .btp-science p {
        color: var(--btp-muted);
    }

.btp-science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

    .btp-science-grid span {
        padding: 20px;
        color: var(--btp-green-dark);
        font-size: 18px;
        font-weight: 800;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid #f0cdd4;
        border-left: 8px solid var(--btp-coral);
        border-radius: 8px;
        box-shadow: 0 12px 26px rgba(76, 77, 79, 0.08);
    }

.btp-light-link {
    color: var(--btp-green-dark) !important;
}

.btp-levels {
    background: #f0cdd4;
}

.btp-level-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

    .btp-level-grid article {
        display: block;
        padding: 30px;
        background: #fff;
        border: 1px solid var(--btp-line);
        border-radius: 8px;
        box-shadow: 0 12px 32px rgba(76, 77, 79, 0.10);
        overflow: hidden;
    }

        .btp-level-grid article::after {
            content: "";
            display: block;
            clear: both;
        }

    .btp-level-grid img {
        float: right;
        width: 170px;
        height: 220px;
        object-fit: contain;
        margin: 6px 0 18px 26px;
        padding: 16px;
        background: #fffaf7;
        border: 1px solid var(--btp-line);
        border-radius: 8px;
    }

.btp-level-copy {
    display: block;
}

    .btp-level-copy h3 {
        margin-bottom: 12px;
    }

    .btp-level-copy > p {
        margin-bottom: 12px;
    }

.btp-level-list {
    margin: 0 0 18px 20px;
    padding: 0;
    color: var(--btp-muted);
}

    .btp-level-list li {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.45;
    }

.btp-level-label {
    margin-bottom: 8px;
    color: var(--btp-coral) !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.btp-text-link {
    color: var(--btp-green-dark) !important;
    font-weight: 800;
}

.btp-text-link-age-5-7 {
    color: var(--btp-coral) !important;
}

.btp-text-link-age-6-8 {
    color: var(--btp-age-6-8) !important;
}

.btp-text-link-age-5-7:hover {
    color: #8f0221 !important;
}

.btp-text-link-age-6-8:hover {
    color: #b86124 !important;
}

.btp-inside {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 40px;
    align-items: center;
    background: #fff;
}

.btp-product-stack {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
    margin-left: auto;
    align-items: stretch;
}

    .btp-product-stack img {
        width: 100%;
        min-height: 0;
        aspect-ratio: 3 / 4;
        object-fit: contain;
        padding: 14px;
        background: #fff4ee;
        border: 1px solid var(--btp-line);
        border-radius: 8px;
        box-shadow: 0 16px 30px rgba(76, 77, 79, 0.12);
    }

    .btp-product-stack img:nth-child(1),
    .btp-product-stack img:nth-child(2),
    .btp-product-stack img:nth-child(3) {
        grid-column: span 2;
    }

    .btp-product-stack img:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .btp-product-stack img:nth-child(5) {
        grid-column: 4 / span 2;
    }

.btp-testimonial {
    padding: clamp(52px, 6vw, 76px) clamp(20px, 5vw, 72px);
    color: #fff;
    background: var(--btp-green-dark);
}

.btp-quote {
    max-width: 980px;
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
}

.btp-quote-credit {
    margin: 0;
    color: #f7e6ea;
    font-weight: 800;
}

.btp-final-cta {
    text-align: center;
}

    .btp-final-cta h2,
    .btp-final-cta p {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .btp-final-cta .btp-actions {
        justify-content: center;
    }

.btp-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--btp-coral);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 1020px) {
    .btp-timeline,
    .btp-work-grid,
    .btp-proof-strip {
        grid-template-columns: 1fr;
    }

    .btp-level-grid,
    .btp-intro,
    .btp-inside,
    .btp-kit,
    .btp-science {
        grid-template-columns: 1fr;
    }

    .btp-hero {
        min-height: 710px;
        align-items: start;
        background: linear-gradient(180deg, rgba(255, 244, 238, 0.98) 0%, rgba(255, 244, 238, 0.94) 48%, rgba(255, 218, 193, 0.05) 100%), url("https://images.movingbeyondthepage.com/images/reading-hero.png") center bottom / cover no-repeat;
    }

    .btp-hero-card {
        left: 20px;
        right: 20px;
    }

    .btp-product-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
        margin: 0 auto;
    }

        .btp-product-stack img:nth-child(1),
        .btp-product-stack img:nth-child(2),
        .btp-product-stack img:nth-child(3),
        .btp-product-stack img:nth-child(4),
        .btp-product-stack img:nth-child(5) {
            grid-column: auto;
        }
}

@media (max-width: 640px) {
    .btp-hero {
        min-height: 800px;
        padding: 42px 20px;
    }

    .btp-reading-landing h1,
    .btp-reading-landing .btp-hero-title {
        font-size: clamp(42px, 13vw, 58px) !important;
    }

    .btp-hero-text {
        font-size: 18px;
    }

    .btp-section,
    .btp-intro,
    .btp-testimonial {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .btp-product-stack,
    .btp-kit-list,
    .btp-science-grid {
        grid-template-columns: 1fr;
    }

        
}
