/* ==========================================================
   LITTLE HERO — PARENTING PAGE SYSTEM
   File: assets/css/banner-hero.css
========================================================== */


/* ==========================================================
   PARENTING BOOKS HERO
========================================================== */

.parenting-books-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #102d42;
}


/* ==========================================================
   BACKGROUND IMAGE
========================================================== */

.parenting-books-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}


/* ==========================================================
   CINEMATIC OVERLAY
========================================================== */

.parenting-books-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(8, 31, 48, 0.96) 0%,
            rgba(10, 39, 58, 0.91) 34%,
            rgba(13, 45, 65, 0.72) 56%,
            rgba(15, 48, 66, 0.25) 82%,
            rgba(15, 48, 66, 0.14) 100%),
        linear-gradient(180deg,
            rgba(7, 26, 40, 0.14) 0%,
            rgba(7, 26, 40, 0.18) 55%,
            rgba(7, 26, 40, 0.62) 100%);
}

.parenting-books-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 18% 24%,
            rgba(255, 255, 255, 0.08),
            transparent 34%),
        radial-gradient(circle at 78% 30%,
            rgba(245, 166, 35, 0.11),
            transparent 30%);
}


/* ==========================================================
   HERO CONTAINER
========================================================== */

.parenting-books-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
}


/* ==========================================================
   HERO LAYOUT
========================================================== */

.parenting-books-hero__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(340px, 0.85fr);

    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.parenting-books-hero__content {
    max-width: 760px;
    color: #ffffff;
}


/* ==========================================================
   EYEBROW
========================================================== */

.parenting-books-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    margin-bottom: 1.5rem;
    padding: 0.62rem 1rem;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 28px rgba(0, 0, 0, 0.14);
}

.parenting-books-hero__eyebrow i {
    color: #ff9a8f;
}


/* ==========================================================
   HERO TITLE
========================================================== */

.parenting-books-hero__content h1 {
    max-width: 900px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;

    text-wrap: balance;

    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.28);
}


/* ==========================================================
   HERO LEAD
========================================================== */

.parenting-books-hero__lead {
    max-width: 690px;
    margin: 1.75rem 0 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.75;

    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.2);
}


/* ==========================================================
   HERO ACTIONS
========================================================== */

.parenting-books-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;

    margin-top: 2.3rem;
}

/* ==========================================================
   PRIMARY BUTTON
========================================================== */

.parenting-books-hero__primary-button {

    position: relative;
    overflow: hidden;
    isolation: isolate;

    width: 240px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    padding: 0 1.5rem;

    border: 1px solid #a91f2d;
    border-radius: 999px;

    background:
        linear-gradient(180deg,
            #ef6c77 0%,
            #df4b58 42%,
            #c62f3d 72%,
            #a91f2d 100%);

    color: #fff;
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .45),
        inset 0 -3px 0 rgba(102, 18, 24, .20),
        0 10px 22px rgba(189, 54, 64, .28);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

/* Premium Gloss Highlight */

.parenting-books-hero__primary-button::before {

    content: "";

    position: absolute;

    top: 3px;
    left: 8%;
    right: 8%;

    height: 46%;

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .55),
            rgba(255, 255, 255, 0));

    pointer-events: none;

}

.parenting-books-hero__primary-button:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .50),
        inset 0 -3px 0 rgba(102, 18, 24, .24),
        0 16px 34px rgba(189, 54, 64, .38);

}


.parenting-books-hero__primary-button i {

    font-size: .95rem;

}

/* ==========================================================
   SECONDARY BUTTON
========================================================== */

.parenting-books-hero__secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0.95rem 1.55rem;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;
    text-decoration: none;

    font-size: 0.96rem;
    font-weight: 800;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.parenting-books-hero__secondary-button:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);

    color: #ffffff;
}


/* ==========================================================
   TRUST ROW
========================================================== */

.parenting-books-hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;

    margin-top: 2.4rem;
}

.parenting-books-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.88rem;
    font-weight: 700;
}

.parenting-books-hero__trust-item i {
    color: #ffb7ae;
    font-size: 0.95rem;
}


/* ==========================================================
   FEATURED BOOK AREA
========================================================== */

.parenting-books-hero__featured {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==========================================================
   FEATURED BOOK CARD
========================================================== */

.parenting-books-feature-card {
    position: relative;
    width: min(100%, 410px);
    padding: 1.35rem;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.07));

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 34px 80px rgba(3, 18, 29, 0.38);

    overflow: hidden;
}

.parenting-books-feature-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -100px;
    right: -90px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 174, 126, 0.24),
            transparent 70%);

    pointer-events: none;
}


/* ==========================================================
   FEATURE LABEL
========================================================== */

.parenting-books-feature-card__label {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    padding: 0.48rem 0.78rem;

    border-radius: 999px;

    background: rgba(13, 48, 69, 0.72);

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ==========================================================
   FEATURED BOOK IMAGE
========================================================== */

.parenting-books-feature-card__book {
    position: relative;
    z-index: 2;

    display: block;
    width: min(79%, 265px);
    margin: 0.9rem auto 0.75rem;

    filter:
        drop-shadow(0 24px 24px rgba(0, 0, 0, 0.34));

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.parenting-books-feature-card:hover .parenting-books-feature-card__book {
    transform: translateY(-7px) rotate(-1deg);

    filter:
        drop-shadow(0 30px 30px rgba(0, 0, 0, 0.4));
}


/* ==========================================================
   FEATURE CONTENT
========================================================== */

.parenting-books-feature-card__content {
    position: relative;
    z-index: 2;

    padding: 1.15rem 0.4rem 0.25rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);

    text-align: center;
}

.parenting-books-feature-card__content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.parenting-books-feature-card__content p {
    margin: 0.65rem auto 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 0.95rem;
    line-height: 1.6;
}


/* ==========================================================
   AMAZON LINK
========================================================== */

.parenting-books-feature-card__amazon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    margin-top: 1rem;
    padding: 0.78rem 1.15rem;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;
    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.parenting-books-feature-card__amazon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ==========================================================
   PARENTING BOOKS OUR PROMISE PANEL
========================================================== */

.parenting-promise-section {
    padding: clamp(5rem, 8vw, 7.5rem) 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fbfaf7 100%);
}


/* ==========================================================
   PANEL
========================================================== */

.parenting-promise-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);

    padding:
        clamp(3.5rem, 6vw, 5.5rem) clamp(2.25rem, 5vw, 4.75rem);

    border-radius: 34px;

    background:
        linear-gradient(135deg,
            #173548 0%,
            #214b68 100%);

    color: #ffffff;

    box-shadow:
        0 30px 75px rgba(16, 45, 64, 0.17);
}


/* ==========================================================
   BACKGROUND DEPTH
========================================================== */

.parenting-promise-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        radial-gradient(circle at 14% 18%,
            rgba(255, 255, 255, 0.09),
            transparent 34%),
        radial-gradient(circle at 88% 82%,
            rgba(244, 91, 105, 0.13),
            transparent 36%);
}

.parenting-promise-panel::after {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    top: -190px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.08),
            transparent 70%);

    z-index: -1;
    pointer-events: none;
}


/* ==========================================================
   LEFT SIDE
========================================================== */

.parenting-promise-panel__heading {
    max-width: 560px;
}

.parenting-promise-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    margin-bottom: 1.35rem;

    color: #ffd27f;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.parenting-promise-panel__eyebrow::before {
    content: "";

    width: 30px;
    height: 3px;

    border-radius: 999px;

    background: #ef5b73;
}

.parenting-promise-panel__heading h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(2.8rem, 4.8vw, 5rem);

    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;

    text-wrap: balance;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2);
}

.parenting-promise-panel__statement {
    margin: 1.6rem 0 0;

    color:
        rgba(255, 255, 255, 0.8);

    font-size:
        clamp(1.05rem, 1.8vw, 1.28rem);

    font-weight: 700;
    line-height: 1.75;
}


/* ==========================================================
   RIGHT SIDE
========================================================== */

.parenting-promise-panel__content {
    max-width: 620px;

    color:
        rgba(255, 255, 255, 0.82);
}

.parenting-promise-panel__content p {
    margin: 0;

    font-size:
        clamp(1rem, 1.5vw, 1.14rem);

    line-height: 1.85;
}

.parenting-promise-panel__content p+p {
    margin-top: 1.35rem;
}


/* ==========================================================
   BUTTON
========================================================== */

.parenting-promise-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    margin-top: 2rem;
    padding: 0.95rem 1.5rem;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            #ff8490 0%,
            #ed5269 55%,
            #ca2f49 100%);

    color: #ffffff;
    text-decoration: none;

    font-size: 0.94rem;
    font-weight: 800;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 16px 36px rgba(202, 47, 73, 0.34);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.parenting-promise-panel__button:hover {
    transform: translateY(-3px);

    color: #ffffff;

    filter: brightness(1.05);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 22px 44px rgba(202, 47, 73, 0.42);
}

.parenting-promise-panel__button i {
    transition:
        transform 0.25s ease;
}

.parenting-promise-panel__button:hover i {
    transform: translateX(4px);
}

/* ==========================================================
   LITTLE HERO PARENTING JOURNEY
========================================================== */

body.parenting-page .parenting-journey-section {
    position: relative;

    padding: 8rem 0 8.5rem;

    overflow: hidden;

    background:
        radial-gradient(circle at 8% 12%,
            rgba(222, 173, 80, 0.1),
            transparent 30%),
        radial-gradient(circle at 92% 48%,
            rgba(74, 131, 157, 0.08),
            transparent 32%),
        radial-gradient(circle at 10% 88%,
            rgba(211, 74, 98, 0.07),
            transparent 28%),
        linear-gradient(180deg,
            #fffdf8 0%,
            #f8fbfc 52%,
            #fffaf5 100%);
}

body.parenting-page .parenting-journey-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 48%,
            transparent 100%);

    opacity: 0.55;
}

/* ==========================================================
   JOURNEY HEADING
========================================================== */

body.parenting-page .parenting-journey-heading {
    position: relative;
    z-index: 2;

    max-width: 920px;
    margin: 0 auto 6.5rem;

    text-align: center;
}

body.parenting-page .parenting-journey-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.2rem;
    padding: 0.65rem 1.05rem;

    border: 1px solid rgba(211, 74, 98, 0.12);
    border-radius: 999px;

    background: rgba(255, 239, 242, 0.92);
    color: #cf3f59;

    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;

    box-shadow:
        0 10px 26px rgba(23, 63, 86, 0.07);
}

body.parenting-page .parenting-journey-heading h2 {
    max-width: 900px;
    margin: 0 auto 1.4rem;

    color: #153f57;

    font-size: clamp(2.7rem, 5vw, 4.9rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

body.parenting-page .parenting-journey-heading h2 span {
    display: block;

    color: #cf3f59;
}

body.parenting-page .parenting-journey-heading p {
    max-width: 720px;
    margin: 0 auto;

    color: #617286;

    font-size: 1.08rem;
    line-height: 1.85;
}

/* ==========================================================
   JOURNEY STEPS
========================================================== */

body.parenting-page .parenting-journey-step {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(3.5rem, 6vw, 6.5rem);

    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

/* Step 1 begins slightly toward the left */
body.parenting-page .parenting-journey-compass {
    transform: translateX(-2.25rem);
}

/* Step 2 moves slightly toward the right */
body.parenting-page .parenting-journey-tools {
    transform: translateX(2.25rem);
}

/* Step 3 returns toward the left */
body.parenting-page .parenting-journey-family {
    transform: translateX(-1.25rem);
}

/* ==========================================================
   JOURNEY ILLUSTRATIONS
========================================================== */

body.parenting-page .parenting-journey-media {
    position: relative;

    min-width: 0;
}

body.parenting-page .parenting-journey-image-frame {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(23, 63, 86, 0.1);
    border-radius: 30px;

    background: #f7f1e7;

    box-shadow:
        0 28px 65px rgba(23, 63, 86, 0.15);
}

body.parenting-page .parenting-journey-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: inherit;

    pointer-events: none;
}

body.parenting-page .parenting-journey-image-frame img {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    object-fit: cover;
    object-position: center;

    transition:
        transform 850ms ease,
        filter 850ms ease;
}

body.parenting-page .parenting-journey-media:hover .parenting-journey-image-frame img {
    transform: scale(1.025);
}

/* ==========================================================
   JOURNEY IMAGE NOTES
========================================================== */

body.parenting-page .parenting-journey-image-note {
    position: relative;
    z-index: 3;

    width: fit-content;
    max-width: calc(100% - 3rem);

    margin: -1.4rem auto 0;
    padding: 1rem 1.3rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;

    border: 1px solid rgba(23, 63, 86, 0.09);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.97);

    color: #153f57;

    box-shadow:
        0 18px 38px rgba(23, 63, 86, 0.14);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.parenting-page .parenting-journey-image-note i {
    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0cb;
    color: #b97618;

    font-size: 1rem;
}

body.parenting-page .parenting-journey-image-note span {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.45;
}

/* Tools note */
body.parenting-page .parenting-journey-tools .parenting-journey-image-note i {
    background: #e7f4ef;
    color: #34765c;
}

/* Family note */
body.parenting-page .parenting-journey-family .parenting-journey-image-note i {
    background: #fff0f3;
    color: #cf3f59;
}

/* ==========================================================
   JOURNEY COPY
========================================================== */

body.parenting-page .parenting-journey-copy {
    position: relative;

    min-width: 0;
    max-width: 560px;
}

body.parenting-page .parenting-step-number {
    position: absolute;
    top: -3.2rem;
    right: 0;

    color: rgba(21, 63, 87, 0.07);

    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;

    pointer-events: none;
}

body.parenting-page .parenting-step-label {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    margin-bottom: 1rem;
    padding: 0.58rem 0.95rem;

    border-radius: 999px;

    background: #fff1d4;
    color: #a96915;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;

    box-shadow:
        0 8px 20px rgba(23, 63, 86, 0.07);
}

body.parenting-page .parenting-journey-copy h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 1.25rem;

    color: #153f57;

    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

body.parenting-page .parenting-step-lead {
    margin: 0 0 1.1rem;

    color: #284f63;

    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.75;
}

body.parenting-page .parenting-journey-copy>p:not(.parenting-step-lead) {
    margin: 0 0 1.05rem;

    color: #617286;

    font-size: 1rem;
    line-height: 1.85;
}

/* ==========================================================
   STEP COLORS
========================================================== */

/* Compass */
body.parenting-page .parenting-journey-compass .parenting-step-label {
    background: #fff1d4;
    color: #a96915;
}

/* Tools */
body.parenting-page .parenting-journey-tools .parenting-step-label {
    background: #e8f5f0;
    color: #34765c;
}

/* Family */
body.parenting-page .parenting-journey-family .parenting-step-label {
    background: #fff0f3;
    color: #cf3f59;
}

/* ==========================================================
   JOURNEY QUOTES
========================================================== */

body.parenting-page .parenting-journey-copy blockquote {
    position: relative;

    margin: 1.8rem 0 0;
    padding: 1.2rem 1.35rem 1.2rem 1.55rem;

    border-left: 4px solid #d6a13a;
    border-radius: 0 16px 16px 0;

    background:
        linear-gradient(90deg,
            rgba(255, 244, 218, 0.9),
            rgba(255, 255, 255, 0.45));

    color: #153f57;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.7;
}

body.parenting-page .parenting-journey-tools .parenting-journey-copy blockquote {
    border-left-color: #5d9c7f;

    background:
        linear-gradient(90deg,
            rgba(232, 245, 240, 0.92),
            rgba(255, 255, 255, 0.45));
}

body.parenting-page .parenting-journey-family .parenting-journey-copy blockquote {
    border-left-color: #d84b65;

    background:
        linear-gradient(90deg,
            rgba(255, 240, 243, 0.94),
            rgba(255, 255, 255, 0.45));
}

/* ==========================================================
   JOURNEY CONNECTORS
========================================================== */

body.parenting-page .parenting-journey-connector {
    position: relative;
    z-index: 2;

    width: 120px;
    height: 110px;

    margin: 1.75rem auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: rgba(21, 63, 87, 0.35);
}

body.parenting-page .parenting-journey-connector span {
    width: 1px;
    height: 68px;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(21, 63, 87, 0.25),
            transparent);
}

body.parenting-page .parenting-journey-connector i {
    margin-top: -0.3rem;

    font-size: 0.8rem;
}

/* ==========================================================
   PARENTING JOURNEY PHILOSOPHY
========================================================== */

body.parenting-page .parenting-journey-philosophy {
    position: relative;
    z-index: 2;

    max-width: 980px;
    margin: 7rem auto 0;
    padding: 3.25rem 2.5rem;

    border: 1px solid rgba(23, 63, 86, 0.09);
    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 249, 239, 0.9));

    text-align: center;

    box-shadow:
        0 24px 58px rgba(23, 63, 86, 0.11);
}

body.parenting-page .parenting-journey-philosophy-label {
    display: block;

    margin-bottom: 2rem;

    color: #8a96a4;

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ==========================================================
   JOURNEY PATH
========================================================== */

body.parenting-page .parenting-journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    margin-bottom: 2.25rem;
}

body.parenting-page .parenting-journey-path>div {
    min-width: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 1.25rem 1rem;

    border: 1px solid rgba(23, 63, 86, 0.09);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.75);
}

body.parenting-page .parenting-journey-path>div>i {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 0.7rem;

    border-radius: 50%;

    background: #fff1d4;
    color: #a96915;

    font-size: 1rem;
}

body.parenting-page .parenting-journey-path>div:nth-of-type(2)>i {
    background: #e8f5f0;
    color: #34765c;
}

body.parenting-page .parenting-journey-path>div:nth-of-type(3)>i {
    background: #fff0f3;
    color: #cf3f59;
}

body.parenting-page .parenting-journey-path strong {
    color: #153f57;

    font-size: 0.95rem;
    font-weight: 900;
}

body.parenting-page .parenting-journey-path span {
    margin-top: 0.2rem;

    color: #758493;

    font-size: 0.78rem;
}

body.parenting-page .parenting-journey-path>i {
    color: rgba(21, 63, 87, 0.32);

    font-size: 0.85rem;
}

/* ==========================================================
   FINAL JOURNEY QUOTE
========================================================== */

body.parenting-page .parenting-journey-philosophy blockquote {
    max-width: 740px;
    margin: 0 auto;

    color: #153f57;

    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.55;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    /* Parenting Hero */
    .parenting-books-hero {
        min-height: auto;
    }

    .parenting-books-hero__container {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .parenting-books-hero__layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .parenting-books-hero__content,
    .parenting-books-hero__content h1 {
        max-width: 760px;
    }

    .parenting-books-hero__featured {
        justify-content: flex-start;
    }

    .parenting-books-feature-card {
        width: min(100%, 470px);
    }

    .parenting-books-hero__overlay {
        background:
            linear-gradient(90deg,
                rgba(8, 31, 48, 0.95) 0%,
                rgba(10, 39, 58, 0.88) 65%,
                rgba(10, 39, 58, 0.48) 100%),
            linear-gradient(180deg,
                rgba(7, 26, 40, 0.1) 0%,
                rgba(7, 26, 40, 0.6) 100%);
    }

    /* Parenting Promise */
    .parenting-promise-panel {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .parenting-promise-panel__heading,
    .parenting-promise-panel__content {
        max-width: 100%;
    }

    /* Parenting Journey */
    body.parenting-page .parenting-journey-section {
        padding: 6rem 0;
    }

    body.parenting-page .parenting-journey-heading {
        max-width: 760px;
        margin-bottom: 4.5rem;
        padding: 0 1rem;
    }

    body.parenting-page .parenting-journey-heading h2 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    body.parenting-page .parenting-journey-step {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        max-width: 760px;
        transform: none;
    }

    body.parenting-page .parenting-journey-copy,
    body.parenting-page .parenting-journey-media {
        width: 100%;
        max-width: none;
    }

    body.parenting-page .parenting-journey-compass .parenting-journey-media,
    body.parenting-page .parenting-journey-family .parenting-journey-media {
        order: 1;
    }

    body.parenting-page .parenting-journey-compass .parenting-journey-copy,
    body.parenting-page .parenting-journey-family .parenting-journey-copy {
        order: 2;
    }

    body.parenting-page .parenting-journey-tools .parenting-journey-copy {
        order: 1;
    }

    body.parenting-page .parenting-journey-tools .parenting-journey-media {
        order: 2;
    }

    body.parenting-page .parenting-step-number {
        top: -2rem;
        right: 1rem;
    }

    body.parenting-page .parenting-journey-connector {
        height: 85px;
        margin: 1rem auto;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    /* Parenting Hero */
    .parenting-books-hero__background {
        object-position: 68% center;
    }

    .parenting-books-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(7, 28, 43, 0.84) 0%,
                rgba(7, 28, 43, 0.93) 54%,
                rgba(7, 28, 43, 0.98) 100%);
    }

    .parenting-books-hero__container {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .parenting-books-hero__layout {
        gap: 2.75rem;
    }

    .parenting-books-hero__content h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: 1.01;
    }

    .parenting-books-hero__lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .parenting-books-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .parenting-books-hero__primary-button,
    .parenting-books-hero__secondary-button {
        width: 100%;
    }

    .parenting-books-hero__trust-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .parenting-books-hero__featured {
        justify-content: center;
    }

    .parenting-books-feature-card {
        width: 100%;
        border-radius: 24px;
    }

    /* Parenting Promise */
    .parenting-promise-section {
        padding: 4rem 0;
    }

    .parenting-promise-panel {
        padding: 2.8rem 1.5rem;
        border-radius: 26px;
    }

    .parenting-promise-panel__heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.6rem);
    }

    .parenting-promise-panel__content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .parenting-promise-panel__button {
        width: 100%;
        max-width: 320px;
    }

    /* Parenting Journey */
    body.parenting-page .parenting-journey-section {
        padding: 4.75rem 0;
    }

    body.parenting-page .parenting-journey-section .container {
        width: 100%;
        max-width: none;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    body.parenting-page .parenting-journey-heading {
        margin-bottom: 3.5rem;
        padding: 0;
    }

    body.parenting-page .parenting-journey-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    body.parenting-page .parenting-journey-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3.15rem);
        line-height: 1.08;
    }

    body.parenting-page .parenting-journey-heading p {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.parenting-page .parenting-journey-step {
        display: flex;
        flex-direction: column;
        gap: 2.25rem;
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }

    body.parenting-page .parenting-journey-media,
    body.parenting-page .parenting-journey-copy {
        width: 100%;
        max-width: none;
    }

    body.parenting-page .parenting-journey-step .parenting-journey-media {
        order: 1;
    }

    body.parenting-page .parenting-journey-step .parenting-journey-copy {
        order: 2;
    }

    body.parenting-page .parenting-journey-image-frame {
        width: 100%;
        border-radius: 24px;
    }

    body.parenting-page .parenting-journey-image-frame img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center;
    }

    body.parenting-page .parenting-journey-image-note {
        width: calc(100% - 2rem);
        max-width: none;
        margin: -1.15rem auto 0;
        padding: 0.9rem 1rem;
        justify-content: flex-start;
    }

    body.parenting-page .parenting-journey-image-note i {
        width: 42px;
        height: 42px;
    }

    body.parenting-page .parenting-journey-image-note span {
        font-size: 0.86rem;
    }

    body.parenting-page .parenting-journey-copy {
        padding: 0 0.25rem;
    }

    body.parenting-page .parenting-step-number {
        top: -0.75rem;
        right: 0;
        font-size: 4.75rem;
    }

    body.parenting-page .parenting-step-label {
        margin-bottom: 0.85rem;
    }

    body.parenting-page .parenting-journey-copy h3 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
    }

    body.parenting-page .parenting-step-lead {
        font-size: 1.03rem;
        line-height: 1.7;
    }

    body.parenting-page .parenting-journey-copy>p:not(.parenting-step-lead) {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    body.parenting-page .parenting-journey-copy blockquote {
        padding: 1.1rem 1.1rem 1.1rem 1.35rem;
        font-size: 0.96rem;
    }

    body.parenting-page .parenting-journey-connector {
        width: 70px;
        height: 70px;
        margin: 1.25rem auto;
    }

    body.parenting-page .parenting-journey-connector span {
        height: 48px;
    }

    body.parenting-page .parenting-journey-philosophy {
        margin-top: 4rem;
        padding: 2.25rem 1rem;
        border-radius: 24px;
    }

    body.parenting-page .parenting-journey-path {
        flex-direction: column;
        gap: 0.8rem;
    }

    body.parenting-page .parenting-journey-path>div {
        width: 100%;
        min-width: 0;
    }

    body.parenting-page .parenting-journey-path>i {
        transform: rotate(90deg);
    }

    body.parenting-page .parenting-journey-philosophy blockquote {
        font-size: 1.45rem;
        line-height: 1.55;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 479.98px) {

    .parenting-books-hero__container {
        padding-top: 3.8rem;
        padding-bottom: 3.8rem;
    }

    .parenting-books-hero__eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .parenting-books-feature-card {
        padding: 1rem;
    }

    .parenting-books-feature-card__book {
        width: min(86%, 250px);
    }

    body.parenting-page .parenting-journey-section .container {
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    body.parenting-page .parenting-journey-heading {
        margin-bottom: 3rem;
    }

    body.parenting-page .parenting-journey-heading h2 {
        font-size: 2.15rem;
    }

    body.parenting-page .parenting-journey-image-frame img {
        aspect-ratio: 4 / 3;
    }

    body.parenting-page .parenting-journey-image-note {
        width: calc(100% - 1rem);
        padding: 0.8rem 0.9rem;
    }

    body.parenting-page .parenting-journey-copy h3 {
        font-size: 2rem;
    }

    body.parenting-page .parenting-step-number {
        font-size: 4.25rem;
    }

    body.parenting-page .parenting-journey-philosophy blockquote {
        font-size: 1.3rem;
    }
}


/* ==========================================================
   DESKTOP HEIGHT REFINEMENT
========================================================== */

@media (min-width: 992px) {

    .parenting-books-hero {
        min-height: 650px;
    }

    .parenting-books-hero__container {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .parenting-books-hero__layout {
        gap: clamp(2.5rem, 5vw, 5rem);
    }

    .parenting-books-hero__content h1 {
        font-size: clamp(3rem, 5vw, 4.8rem);
    }

    .parenting-books-feature-card {
        width: min(100%, 380px);
        padding: 1.1rem;
    }

    .parenting-books-feature-card__book {
        width: min(76%, 250px);
        margin-top: 1rem;
        margin-bottom: 0.8rem;
    }

    .parenting-books-feature-card__content {
        padding-top: 0.9rem;
    }

    .parenting-books-feature-card__content h2 {
        font-size: clamp(1.45rem, 2vw, 1.9rem);
    }

    .parenting-books-feature-card__content p {
        font-size: 0.88rem;
    }

    .parenting-books-hero__trust-row {
        margin-top: 1.7rem;
    }

    body.parenting-page .parenting-journey-compass {
        transform: translateX(-2.25rem);
    }

    body.parenting-page .parenting-journey-tools {
        transform: translateX(2.25rem);
    }

    body.parenting-page .parenting-journey-family {
        transform: translateX(-1.25rem);
    }
}


/* ==========================================================
   ACCESSIBILITY AND REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .parenting-books-hero__primary-button,
    .parenting-books-hero__secondary-button,
    .parenting-books-feature-card__book,
    .parenting-books-feature-card__amazon,
    .parenting-promise-panel__button,
    .parenting-promise-panel__button i,
    body.parenting-page .parenting-journey-image-frame img {
        transition: none;
    }

    .parenting-books-hero__primary-button:hover,
    .parenting-books-hero__secondary-button:hover,
    .parenting-books-feature-card:hover .parenting-books-feature-card__book,
    .parenting-books-feature-card__amazon:hover,
    .parenting-promise-panel__button:hover,
    .parenting-promise-panel__button:hover i,
    body.parenting-page .parenting-journey-media:hover .parenting-journey-image-frame img {
        transform: none;
    }
}