/* =========================================================
   QUITIRED WEBSITE — MAIN STYLESHEET
   =========================================================

   PURPOSE:
   This is the primary stylesheet for the Quitired website.

   BRAND DIRECTION:
   - Teal + lavender
   - Clean white space
   - Warm, welcoming retirement/lifestyle feel
   - No navy or blue

   IMPORTANT:
   Keep this file organized in the same general order that
   sections appear in index.html.

   The website uses system fonts and includes a few temporary
   image/video placeholders that can be replaced as final assets
   are added.
   ========================================================= */


/* =========================================================
   1. BRAND COLORS
   ========================================================= */
:root {
    --teal: #08778A;
    --teal-dark: #117272;

    --lavender: #A98AD4;
    --lavender-dark: #8F6BC3;
    --lavender-light: #EEE7F7;

    --white: #FFFFFF;
    --off-white: #FAFAF8;

    --text-dark: #333333;
    --text-soft: #666666;

    --border-light: #E8E8E8;
}


/* =========================================================
   2. BASIC RESET
   =========================================================

   These rules give us a predictable starting point across
   different browsers.
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}


/* =========================================================
   3. SHARED PAGE CONTAINER
   =========================================================

   Most homepage sections use this class to keep content
   centered and prevent it from becoming too wide.
   ========================================================= */

.container {
    width: min(92%, 1240px);
    margin: 0 auto;
}


/* =========================================================
   4. SHARED TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
    color: var(--teal);
    font-weight: 700;
}

p {
    margin-bottom: 18px;
}


/* Small uppercase labels used above major headings */

.eyebrow {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}


/* =========================================================
   5. SHARED BUTTONS
   ========================================================= */

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

    padding: 13px 24px;

    border-radius: 8px;
    border: 2px solid transparent;

    font-weight: bold;
    line-height: 1.2;

    cursor: pointer;

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

.button:hover {
    transform: translateY(-2px);
}


/* Primary teal button */

.button-primary {
    background-color: var(--teal);
    color: var(--white);
}

.button-primary:hover {
    background-color: var(--teal-dark);
}


/* Secondary outlined button */

.button-secondary {
    background-color: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.button-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
}


/* =========================================================
   6. SITE HEADER
   ========================================================= */

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid #EEEEEE;

    position: relative;
    z-index: 100;
}

.header-container {
    width: min(94%, 1320px);
    margin: 0 auto;

    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}
/* QUITIRED LOGO
   Controls the size of the actual logo image in the header.
   Change the width below if the logo needs to be larger or smaller.
*/

.site-logo img {
    display: block;
    width: 260px;
    height: auto;
}

/* ---------------------------------------------------------
   TEMPORARY TEXT LOGO

   This will later be replaced with the actual Quitired logo
   image. Do not spend time perfecting this text version.
   --------------------------------------------------------- */

.site-logo {
    color: var(--teal);
    font-size: 2rem;
    font-weight: bold;
    white-space: nowrap;
}


/* Main navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-navigation a {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;

    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--teal);
}


/* Lavender Start Here button in the header */

.start-here-button {
    background-color: var(--lavender);
    color: var(--white) !important;

    padding: 11px 19px;
    border-radius: 7px;
}

.start-here-button:hover {
    background-color: var(--teal);
}

/* =========================================================
   MOBILE MENU BUTTON
   ---------------------------------------------------------
   Hidden on desktop.

   On smaller screens, this becomes the three-line
   hamburger button used to open the mobile navigation.

   JavaScript controls the open/close behavior.
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background-color: var(--teal);

    border-radius: 999px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION MENU
   ---------------------------------------------------------
   Hidden by default.

   JavaScript will later add the "is-open" class when the
   visitor clicks the hamburger button.
   ========================================================= */

.mobile-navigation {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    background-color: var(--white);
    padding: 18px 24px 22px;
    border-top: 1px solid var(--border-light);
    border-bottom: 3px solid var(--lavender);
}
.mobile-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;

    padding: 10px 0;

    transition: color 0.2s ease;
}    
.mobile-navigation a:hover {
    color: var(--teal);
}


/* When JavaScript adds the "is-open" class,
   the mobile navigation becomes visible. */




/* =========================================================
   7. HOMEPAGE HERO
   ========================================================= */

.hero-section {
    background-color: var(--off-white);
    padding: 100px 0 105px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: center;
    gap: 75px;
}


/* ---------------------------------------------------------
   HERO TEXT
   --------------------------------------------------------- */
.hero-eyebrow {
    color: var(--lavender);
}

.hero-content h1 {
    color: var(--teal);

    font-size: clamp(3rem, 6vw, 3.2rem);
    line-height: 1.02;

    margin-bottom: 28px;
}

.hero-teal {
    display: block;
    color: var(--teal);
}


/* Lavender italic accent treatment used in the hero. */

.hero-script {
    display: block;

    color: var(--lavender);

    font-style: italic;

    font-size: 0.72em;
    font-weight: 400;
    line-height: 1.1;

    margin-top: 14px;
}

.hero-description {
    color: var(--text-soft);

    font-size: 1.1rem;

    max-width: 620px;

    margin-bottom: 32px;
}

/* Important Quitired brand idea in the hero */
.hero-quit-line {
    color: var(--teal);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 28px;
    margin-bottom: 36px;
}

/* Hero buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------------------------------------------------------
   HOMEPAGE HERO — BEFORE YOU RETIRE CALLOUT
   --------------------------------------------------------- */

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-lifestyle-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-pre-retirement-callout {
    width: 100%;
    margin-top: 24px;
    padding: 22px 24px;

    background-color: var(--lavender-light);
    border-radius: 16px;

    text-align: center;
}

.hero-pre-retirement-question {
    color: var(--teal);

    font-size: 1.15rem;
    font-weight: 700;

    margin-bottom: 8px;
}

.hero-pre-retirement-text {
    color: var(--text-soft);

    font-size: 0.92rem;
    line-height: 1.6;

    margin-bottom: 16px;
}

.hero-pre-retirement-button {
    font-size: 0.9rem;
}
/* ---------------------------------------------------------
   HERO IMAGE PLACEHOLDER

   This will later be replaced by an actual Quitired
   lifestyle photograph.
   --------------------------------------------------------- */

.hero-placeholder {
    min-height: 520px;

    background-color: var(--lavender-light);

    border-radius: 28px;

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

    text-align: center;

    padding: 40px;
}

.hero-placeholder p {
    color: var(--lavender);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}


/* =========================================================
   8. FEATURED "START HERE" VIDEO
   =========================================================

   This is the major welcome video for visitors who are new
   to Quitired.

   CURRENT MESSAGE:
   "So, you retired ... now what?"

   The video explains Jackie's story and introduces the
   12-month Quitired journey.

   IMPORTANT:
   Visitors begin with Month 1 whenever THEY are ready.
   They then move through the 12 themes in order at their
   own pace.
   ========================================================= */

.welcome-video-section {
    background-color: var(--white);
    padding: 95px 0 105px;
}

.welcome-video-container {
    max-width: 1050px;
}


/* Heading above video */

.welcome-video-heading {
    text-align: center;

    max-width: 780px;

    margin: 0 auto 45px;
}
/* Standard eyebrow color used across homepage sections */
.section-eyebrow {
    color: var(--lavender);
}


.welcome-video-heading .section-eyebrow {
    color: var(--lavender);
}

.welcome-video-heading h2 {
    color: var(--teal);

    font-size: clamp(2.6rem, 5vw, 3.1rem);
    line-height: 1.08;

    margin-bottom: 24px;
}

.welcome-video-heading h2 span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
}

.welcome-video-intro {
    color: var(--text-soft);

    font-size: 1.12rem;

    max-width: 700px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   VIDEO PLACEHOLDER

   Temporary until the finished welcome video is embedded.
   --------------------------------------------------------- */

.featured-video-placeholder {
    min-height: 520px;

    background-color: var(--lavender-light);

    border: 1px solid #E4D9F2;
    border-radius: 24px;

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

    text-align: center;

    padding: 40px;

    margin-bottom: 45px;
}


/* Circular play symbol */

.video-play-button {
    width: 88px;
    height: 88px;

    border-radius: 50%;

    background-color: var(--teal);
    color: var(--white);

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

    font-size: 2rem;

    padding-left: 5px;
    margin-bottom: 20px;
}

.featured-video-placeholder p {
    color: var(--lavender);

    font-size: 1.05rem;
    font-weight: bold;

    margin: 0;
}


/* ---------------------------------------------------------
   MESSAGE BELOW VIDEO
   --------------------------------------------------------- */

.welcome-video-message {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}
.quitired-also-context {
    color: var(--lavender);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.quitired-also-heading {
    color: var(--teal);
    font-size: clamp(2.3rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 10px;
}
/* "But I Also..." accent heading */

.quitired-also-intro {
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 1.8rem;
}
/* Four "But I Also" statements */

.quitired-also-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-top: 30px;
    margin-bottom: 35px;
}
.quitired-also-item {
    position: relative;
    
    background-color: var(--lavender-light);
    border: 1px solid var(--lavender);
    border-radius: 18px;

    padding: 24px 18px;

    min-height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quitired-also-item p {
    color: var(--lavender-dark);
    font-size: 1.2rem;
    line-height: 1.45;
}
.quit-word {
    color: var(--teal);
    font-weight: 700;
}
.quitired-also-arrow {
    color: var(--lavender);
    font-size: 1.8rem;
    line-height: 1;

    position: absolute;
    top: -42px;
}


.welcome-video-message > p {
    color: var(--text-soft);
    font-size: 1.08rem;
}


/* "I quit my job..." statement */

.welcome-video-quote {
    color: var(--teal) !important;

    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: bold;
    line-height: 1.2;

    margin-bottom: 28px;
}

.welcome-video-quote span {
    display: block;

    color: var(--lavender);

    font-family:
        "Snell Roundhand",
        "Brush Script MT",
        cursive;

    font-weight: 400;

    margin-top: 8px;
}


/* Closing "start when you're ready" statement */

.welcome-video-start {
    margin-top: 30px;

    color: var(--teal) !important;
}

.welcome-video-start .start-lavender {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
}


/* =========================================================
   9. 12-MONTH JOURNEY INTRODUCTION
   =========================================================

   This introduces the structure of Quitired.

   IMPORTANT CONCEPT:
   Everyone begins with Month 1.

   Visitors do NOT need to begin when Jackie began.
   They can discover Quitired at any time and start Month 1
   whenever they are ready.
   ========================================================= */

.months-intro-section {
    background-color: var(--off-white);

    padding: 65px 0 45px;
}

.months-intro-container {
    max-width: 1050px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: start;
}


/* Main journey heading */

.months-intro-heading h2 {
    color: var(--teal);

    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.08;

    margin-bottom: 0;
}

.months-intro-heading h2 span {
    display: block;

    color: var(--lavender);

    font-style: italic;
    font-weight: 500;

    margin-top: 8px;
}


/* Explanatory copy */

.months-intro-copy > p {
    color: var(--text-soft);

    font-size: 1.05rem;

    margin-top: 0;
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   START WHEN YOU'RE READY CALLOUT

   This does NOT mean visitors can skip to any month.

   It means:
   Start Month 1 whenever you're ready, then move through
   the 12 themes sequentially at your own pace.
   --------------------------------------------------------- */

.start-where-you-are {
    background-color: var(--lavender-light);

    border-radius: 16px;

    padding: 24px 26px;

    margin-top: 25px;
}

.start-where-you-are .start-label {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.start-where-you-are p {
    color: var(--text-soft);

    font-size: 0.95rem;

    margin: 0;
}
/* =========================================================
   10. 12-MONTH ROADMAP
   =========================================================

   PURPOSE:
   Displays all twelve Quitired monthly themes.

   IMPORTANT:
   The journey is sequential.

   Everyone begins with Month 1, then moves through the
   twelve themes in order at their own pace.

   DESKTOP LAYOUT:
   6 cards across

   SMALLER DESKTOP:
   4 cards across

   TABLET:
   2 cards across

   PHONE:
   1 card across
   ========================================================= */

.months-roadmap-section {
    background-color: var(--off-white);
    padding: 20px 0 110px;
}


/* ---------------------------------------------------------
   MONTH GRID
   --------------------------------------------------------- */

.months-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
}


/* ---------------------------------------------------------
   INDIVIDUAL MONTH CARD
   --------------------------------------------------------- */

.month-card {
    position: relative;

    background-color: var(--white);

    border: 1px solid var(--border-light);
    border-radius: 16px;

    min-height: 235px;

    padding: 20px 16px 0;

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

    text-align: center;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.month-card:hover {
    transform: none;

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.07);
}


/* Month 1 receives a soft lavender background because
   this is where every Quitired journey begins.
*/

.month-card:first-child {
    background-color: var(--lavender-light);
    border-color: transparent;
}


/* ---------------------------------------------------------
   MONTH NUMBER CIRCLE
   --------------------------------------------------------- */

.month-number {
    width: 34px;
    height: 34px;

    border-radius: 50%;

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

    color: var(--white);

    font-size: 0.8rem;
    font-weight: bold;

    margin-bottom: 10px;
}


/* Alternating number-circle colors */

.month-lavender .month-number {
    background-color: var(--lavender);
}

.month-teal .month-number {
    background-color: var(--teal);
}


/* ------------------------------------------------------------
   MONTH ROADMAP ILLUSTRATIONS

   These replace the original temporary symbol icons.

   IMPORTANT:
   style.css lives inside the /css folder, so the image paths
   use ../ to move back to the main Website folder before
   entering assets/images.

   All 12 illustrations use the same size and positioning so
   the roadmap remains visually consistent.
------------------------------------------------------------ */

.month-icon {
    width: 100px;
    height: 100px;

    margin: 0 auto 11px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    /* Hides the old temporary symbol inside the HTML */
    font-size: 0;
    line-height: 0;
}


/* MONTH 1 — DECOMPRESSION */
.month-card:nth-child(1) .month-icon {
    background-image: url("../assets/images/month-01-decompression.png");
}


/* MONTH 2 — RECOVERY FROM BUSY */
.month-card:nth-child(2) .month-icon {
    background-image: url("../assets/images/month-02-recovery-from-busy.png");
}


/* MONTH 3 — HEALTH & ENERGY */
.month-card:nth-child(3) .month-icon {
    background-image: url("../assets/images/month-03-health-energy.png");
}


/* MONTH 4 — REWIRED */
.month-card:nth-child(4) .month-icon {
    background-image: url("../assets/images/month-04-rewired.png");
}


/* MONTH 5 — PURPOSE */
.month-card:nth-child(5) .month-icon {
    background-image: url("../assets/images/month-05-purpose.png");
}


/* MONTH 6 — RELATIONSHIPS */
.month-card:nth-child(6) .month-icon {
    background-image: url("../assets/images/month-06-relationships.png");
}


/* MONTH 7 — FUN */
.month-card:nth-child(7) .month-icon {
    background-image: url("../assets/images/month-07-fun.png");
}


/* MONTH 8 — CURIOSITY */
.month-card:nth-child(8) .month-icon {
    background-image: url("../assets/images/month-08-curiosity.png");
}


/* MONTH 9 — CONTRIBUTION */
.month-card:nth-child(9) .month-icon {
    background-image: url("../assets/images/month-09-contribution.png");
}


/* MONTH 10 — ADVENTURE */
.month-card:nth-child(10) .month-icon {
    background-image: url("../assets/images/month-10-adventure.png");
}


/* MONTH 11 — IMPACT */
.month-card:nth-child(11) .month-icon {
    background-image: url("../assets/images/month-11-impact.png");
}


/* MONTH 12 — THE ENCORE */
.month-card:nth-child(12) .month-icon {
    background-image: url("../assets/images/month-12-the-encore.png");
}


/* ---------------------------------------------------------
   MONTH TITLE
   --------------------------------------------------------- */

.month-card h3 {
    color: var(--teal);

    font-size: 1.05rem;
    line-height: 1.15;

    margin-bottom: 8px;
}


/* ---------------------------------------------------------
   MONTH TAGLINE
   --------------------------------------------------------- */

.month-tagline {
    color: var(--text-soft);

    font-size: 0.8rem;
    line-height: 1.35;

    margin-bottom: 16px;

    flex-grow: 1;
}


/* ---------------------------------------------------------
   BOTTOM STATUS RIBBON
   --------------------------------------------------------- */

.month-status {
    display: block;

    width: calc(100% + 32px);

    margin-left: -16px;
    margin-right: -16px;

    padding: 10px 8px;

    color: var(--white);

    font-size: 0.65rem;
    font-weight: bold;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* Alternate ribbon colors */

.month-lavender .month-status {
    background-color: var(--lavender);
}

.month-teal .month-status {
    background-color: var(--teal);
}


/* Month 1 BEGIN HERE ribbon */

.month-status-open {
    background-color: var(--lavender);
}


/* ---------------------------------------------------------
   CLOSING MESSAGE BELOW ROADMAP
   --------------------------------------------------------- */

.roadmap-closing {
    text-align: center;

    margin-top: 35px;
}

.roadmap-closing p {
    color: var(--teal);

    font-size: 1.15rem;
    font-weight: 500;

    margin: 0;
}
/* Lavender italic emphasis in roadmap closing message */
.roadmap-closing p span {
    display: block;
    color: var(--lavender);
    font-style: italic;
}
/* Button linking the homepage roadmap to the full 12-month journey */
.roadmap-journey-button {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 24px;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
}
/* Hover effect for the 12-month journey button */
.roadmap-journey-button:hover {
    background-color: var(--lavender);
    color: var(--white);
}

/* Keyboard focus state */
.roadmap-journey-button:focus-visible {
    outline: 3px solid var(--lavender);
    outline-offset: 3px;
}
/* =========================================================
   11. QUITIRED COMPANION SECTION
   =========================================================

   PURPOSE:
   Introduces the monthly Quitired Companion.

   LEFT:
   Explanation and button

   RIGHT:
   Temporary Companion artwork/product placeholder

   Each month will eventually have its own Companion page
   and purchase/download experience.
   ========================================================= */

.companion-section {
    background-color: var(--white);

    padding: 110px 0;
}

.companion-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;

    align-items: center;

    gap: 80px;
}


/* Companion headline */

.companion-content h2 {
    color: var(--teal);

    font-size: clamp(2.3rem, 3.5vw, 2.7rem);
    line-height: 1.1;

    margin-bottom: 28px;
}

.companion-content h2 span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
}


/* Companion description */
.companion-content .section-eyebrow {
    color: var(--lavender);
}
.companion-content > p {
    color: var(--text-soft);

    font-size: 1.08rem;

    margin-bottom: 20px;
}

.companion-content .button {
    margin-top: 15px;
}

/* ---------------------------------------------------------
   COMPANION PRODUCT PREVIEW

   Creates a soft lavender display card behind the Companion
   mockup so the white pages stand out from the white website.
--------------------------------------------------------- */

.companion-visual {
    background-color: var(--lavender-light);
    border-radius: 24px;
    padding: 30px;
    width: 115%;
}
/* ---------------------------------------------------------
   COMPANION VISUAL PLACEHOLDER

   This will later be replaced by an image/mockup of the
   actual Quitired Companion.
   --------------------------------------------------------- */

.companion-placeholder {
    min-height: 360px;

    background-color: var(--lavender-light);

    border-radius: 24px;

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

    text-align: center;

    padding: 35px;
}

.companion-placeholder p {
    color: var(--lavender);

    font-size: 1.25rem;
    font-weight: bold;

    margin: 0;
}


/* =========================================================
   12. EXPLORE QUITIRED
   =========================================================

   PURPOSE:
   Introduces three additional areas of the Quitired site:

   1. Resources
   2. Community
   3. Shop

   The cards use slightly different visual treatments while
   remaining within the teal + lavender brand.
   ========================================================= */

.explore-section {
    background-color: var(--off-white);

    padding: 110px 0;
}


/* Section heading */

.explore-heading {
    max-width: 1000px;

    margin-bottom: 55px;
}

.explore-heading h2 {

    color: var(--teal);

    font-size: clamp(2.4rem, 3.5vw, 3rem);
    line-height: 1.1;

    margin-bottom: 20px;
}

.explore-heading h2 span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 0.9em;
}
/* ---------------------------------------------------------
   EXPLORE CARD GRID
   --------------------------------------------------------- */

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* ---------------------------------------------------------
   STANDARD EXPLORE CARD
   --------------------------------------------------------- */

.explore-card {
    background-color: var(--white);

    border: 1px solid #EEEEEE;
    border-radius: 20px;

    min-height: 340px;

    padding: 38px;

    display: flex;
    flex-direction: column;
}

/* Community illustration is slightly smaller for visual balance */
.explore-illustration-lower img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
/* Small number above card title */

.explore-number {
    color: var(--lavender);

    font-size: 0.8rem;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


/* Card heading */

.explore-card h3 {
    color: var(--teal);

    font-size: 1.8rem;

    margin-bottom: 20px;
}


/* Main card description */

.explore-card > p {
    color: var(--text-soft);

    flex-grow: 1;
}


/* ---------------------------------------------------------
   COMMUNITY CARD — LIGHT LAVENDER
   --------------------------------------------------------- */

.explore-card-lavender {
    background-color: var(--lavender-light);
    border-color: transparent;
}


/* ---------------------------------------------------------
   SHOP CARD — TEAL
   ---------------------------------------------------------

   The Shop receives the strongest treatment of the three.

   This introduces future paid products while keeping the
   overall homepage from feeling overly commercial.
   --------------------------------------------------------- */

.explore-card-teal {
    background-color: var(--teal);
    border-color: var(--teal);
}

.explore-card-teal .explore-number,
.explore-card-teal h3,
.explore-card-teal > p {
    color: var(--white);
}


/* ---------------------------------------------------------
   EXPLORE LINKS
   --------------------------------------------------------- */

.explore-link {
    color: var(--teal);

    font-weight: bold;

    margin-top: 25px;
}

.explore-link::after {
    content: " →";
}

.explore-link:hover {
    color: var(--lavender);
}

.explore-card-teal .explore-link {
    color: var(--white);
}

.explore-card-teal .explore-link:hover {
    color: var(--lavender-light);
}


/* =========================================================
   13. ROADMAP RESPONSIVE LAYOUT
   ========================================================= */


/* Smaller desktops / laptops:
   4 month cards across.
*/

@media (max-width: 1150px) {

    .months-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
        /* Keep the Companion preview inside smaller desktop/laptop screens */
    .companion-visual {
        width: 100%;
    }

}


/* Tablets:
   2 month cards across.
*/

@media (max-width: 760px) {

    .months-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    /* Keep the Companion preview inside tablet screens */
    .companion-visual {
        width: 100%;
    }
}


/* Phones:
   1 month card across.
*/

@media (max-width: 520px) {

    .months-grid {
        grid-template-columns: 1fr;
    }

    /* Phone-only hero text sizing */
    .hero-heading {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .hero-accent {
        font-size: 1.8rem;
        line-height: 1.12;
    }
    /* Stack the four "I Quit" cards on phones */
    .quitired-also-grid {
        grid-template-columns: 1fr;
    }
    .quitired-also-item {
        min-height: 0;
        padding: 22px 20px;
    }
    .quitired-also-arrow {
        display: none;
    }
    /* Keep the Companion preview inside the phone screen */
    .companion-visual {
        width: 100%;
        padding: 20px;
    }
    /* Makes the Meet Jackie heading fit comfortably on phones */
    .jackie-content h2 {
        font-size: 2rem;
        line-height: 1.08;
    }
}


/* =========================================================
   14. MEET JACKIE SECTION
   =========================================================

   PURPOSE:
   Introduces Jackie and establishes the personal story
   behind Quitired.

   The goal is not to position Jackie as someone who has
   retirement completely figured out.

   She is going through the journey herself and sharing
   what she learns along the way.
   ========================================================= */

.jackie-section {
    background-color: var(--white);
    padding: 110px 0;
}

.jackie-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;
    gap: 80px;
}


/* ---------------------------------------------------------
   JACKIE PHOTO PLACEHOLDER

   This will later be replaced with an actual photograph.
   --------------------------------------------------------- */

.jackie-placeholder {
    min-height: 500px;

    background-color: var(--lavender-light);

    border-radius: 24px;

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

    text-align: center;

    padding: 35px;
}

.jackie-placeholder p {
    color: var(--lavender);

    font-size: 1.1rem;
    font-weight: bold;

    margin: 0;
}
/* =========================================================
   JACKIE PHOTO COLLAGE
   ---------------------------------------------------------
   Three overlapping photos that tell the story of:
   work, retirement, and life beyond work.

   The original image files are not cropped or edited.
   CSS controls which portion of each photo is visible.
   ========================================================= */

.jackie-photo-collage {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 520px;
    margin: 0 auto;
}

.jackie-photo {
    position: absolute;
    display: block;
    object-fit: cover;
    background-color: var(--white);
    border: 10px solid var(--white);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}


/* WORKING PHOTO - back left */
.jackie-photo-working {
    width: 175px;
    height: 305px;
    left: 5px;
    top: 0;
    object-position: 50% 50%;
    transform: rotate(-7deg);
    z-index: 2;
}


/* 10K PHOTO - back right */
.jackie-photo-10k {
    width: 175px;
    height: 305px;
    right: 5px;
    top: 0;
    object-position: -35% 45%;
    transform: rotate(7deg);
    z-index: 2;
}


/* RETIREMENT / QUITTER PHOTO - front and center */
.jackie-photo-retirement {
    width: 220px;
    height: 365px;
    left: 50%;
    bottom: -45px;
    object-position: 50% 42%;
    transform: translateX(-50%) rotate(-1deg);
    z-index: 3;
}

/* ---------------------------------------------------------
   JACKIE CONTENT
   --------------------------------------------------------- */

.jackie-content h2 {
    color: var(--teal);

    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.1;

    margin-bottom: 28px;
}

.jackie-content h2 span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
}
/* Lavender eyebrow in the Meet Jackie section */
.jackie-content .section-eyebrow {
    color: var(--lavender);
}
.jackie-content > p {
    color: var(--text-soft);

    font-size: 1.05rem;
}


/* Signature question */

.jackie-question {
    color: var(--teal) !important;

    font-size: 1.45rem !important;
    font-weight: bold;

    line-height: 1.35;

    padding-left: 22px;

    border-left: 4px solid var(--lavender);

    margin: 30px 0;
}

.jackie-content .button {
    margin-top: 12px;
}


/* =========================================================
   15. RETIREMENT RESET
   =========================================================

   PURPOSE:
   Introduces the free Retirement Reset resource.

   FUTURE FUNCTION:
   The form will eventually connect to an email marketing
   service.

   The email service will:
   - collect first name + email
   - add the visitor to the Quitired mailing list
   - send a welcome email
   - deliver the Retirement Reset

   IMPORTANT:
   Email addresses should NOT be stored using front-end
   JavaScript.
   ========================================================= */

.reset-section {
    background-color: var(--teal);

    padding: 100px 0;
}

.reset-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;

    align-items: center;

    column-gap: 80px;
    row-gap: 40px;
    background-color: var(--white);
    border: 10px solid var(--teal);
    border-radius: 24px;
    padding: 50px;
}

/* RESET HEADING
   Spans the full width above the message and signup form.
*/
.reset-heading {
    grid-column: 1 / -1;
}

/* ---------------------------------------------------------
   RESET CONTENT
   --------------------------------------------------------- */

.reset-eyebrow {
    color: var(--lavender);
 
}

.reset-heading h2 {
    color: var(--teal);

    font-size: clamp(2.3rem, 3.5vw, 3rem);
    line-height: 1.1;

    margin-bottom: 28px;
}

.reset-heading h2 span {
    display: block;
    color: var(--lavender-dark);
    font-style: italic;
    font-weight: 500;
    font-size: 0.9em;
}

.reset-content > p {
    color: var(--text-soft);

    font-size: 1.08rem;
}

.reset-resource-name {
    color: var(--lavender-light) !important;

    font-size: 1.35rem !important;
    font-weight: bold;

    margin-top: 26px;
}


/* ---------------------------------------------------------
   SIGNUP FORM CARD
   --------------------------------------------------------- */

.signup-card {
    background-color: var(--white);

    border-radius: 22px;

    padding: 38px;
    margin-top: 20px
}

.signup-card h3 {
    color: var(--teal);

    font-size: 1.65rem;

    margin-bottom: 12px;
}

.signup-card > p {
    color: var(--text-soft);

    font-size: 0.95rem;
}


/* Form layout */

.signup-form {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 25px;
}

.signup-form label {
    color: var(--text-dark);

    font-size: 0.82rem;
    font-weight: bold;
}

.signup-form input {
    width: 100%;

    padding: 13px 14px;

    color: var(--text-dark);
    background-color: var(--white);

    border: 1px solid #DADADA;
    border-radius: 7px;

    outline: none;
}

.signup-form input:focus {
    border-color: var(--lavender);
}


/* Signup button */

.signup-form button {
    margin-top: 8px;

    border: none;

    background-color: var(--lavender);
    color: var(--white);

    padding: 14px 18px;

    border-radius: 7px;

    font-weight: bold;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.signup-form button:hover {
    background-color: var(--teal);
    transform: translateY(-2px);
}


/* Consent / privacy note */

.signup-note {
    color: var(--text-soft);

    font-size: 0.75rem;

    margin-top: 16px;
    margin-bottom: 0;
}


/* =========================================================
   16. SITE FOOTER
   =========================================================

   This is the ONE active footer design for Version 1.

   The footer contains:
   - Quitired branding
   - Explore links
   - Connect links
   - Begin links
   - Privacy / Terms
   ========================================================= */

.site-footer {
    background-color: var(--teal);
    color: var(--white);

    padding: 70px 0 30px;
}

/* Footer logo displayed on a clean white background */
.footer-logo-box {
    background-color: var(--white);
    width: 260px;
    padding: 14px;
    border-radius: 14px;
}

.footer-logo-image {
    display: block;
    width: 100%;
    height: auto;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;

    gap: 80px;
    align-items: start;
}


/* The three footer navigation columns live together
   inside the .footer-links wrapper in index.html.
   This grid spreads Explore, Connect and Begin evenly
   across the right side of the footer.
*/

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

/* ---------------------------------------------------------
   FOOTER BRANDING
   --------------------------------------------------------- */

.footer-brand h2 {
    color: var(--white);

    font-size: 2rem;

    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);

    max-width: 300px;

    font-size: 0.9rem;
}


/* ---------------------------------------------------------
   FOOTER LINK COLUMNS
   --------------------------------------------------------- */

.footer-column h3 {
    color: var(--lavender-light);

    font-size: 0.78rem;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.footer-column a {
    display: block;

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

    font-size: 0.88rem;

    margin-bottom: 10px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--lavender-light);
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.footer-bottom {
    width: min(92%, 1240px);

    margin: 50px auto 0;

    padding-top: 25px;

    border-top: 1px solid rgba(169, 138, 212, 0.45);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.78rem;

    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: var(--white);
}


/* =========================================================
   17. RESPONSIVE — LAPTOP / SMALL DESKTOP
   =========================================================

   This section adjusts the larger homepage layouts as the
   browser becomes narrower.

   NOTE:
   The month-card breakpoints are already defined above.
   ========================================================= */

@media (max-width: 1050px) {

    .hero-container {
        gap: 50px;
    }

    .hero-placeholder {
        min-height: 450px;
    }

    .companion-container,
    .jackie-container,
    .reset-container {
        gap: 55px;
    }

    .footer-container {
    grid-template-columns: 1fr;
}

.footer-brand {
    grid-column: auto;
}

.footer-links {
    grid-template-columns: repeat(3, 1fr);
}

}


/* =========================================================
   18. RESPONSIVE — TABLET
   ========================================================= */
/* Landscape tablet hero heading */
@media (min-width: 901px) and (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.9rem;
    }
    .companion-visual {
        width: 100%;
    }
}
@media (max-width: 900px) {

    /* -----------------------------------------------------
       HEADER

       Desktop navigation hides on smaller screens and the
       working hamburger navigation takes over.
       ----------------------------------------------------- */

    
    .header-container {
        min-height: 76px;
    }

/* Make the logo smaller on tablets and phones */
    .site-logo img {
        width: 205px;
    }

    .main-navigation,
    .start-here-button {
        display: none;
    }
    .mobile-navigation {
        display: none;
    }
    .mobile-navigation.is-open {
        display: flex;
    }

    

    /* Show the hamburger menu button on tablets and phones */
    .mobile-menu-button {
         display: block;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero-section {
        padding: 30px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: 760px;
    }
    /* Tablet/mobile hero text sizing */
    .hero-heading {
        font-size: 1.55rem;
        line-height: 1.12;
    }
    .hero-accent {
        font-size: 2.6rem;
        line-height: 1.12;
    }   
    .hero-placeholder {
        min-height: 400px;
    }


    /* -----------------------------------------------------
       WELCOME VIDEO
       ----------------------------------------------------- */

    .welcome-video-section {
        padding: 80px 0;
    }

    .featured-video-placeholder {
        min-height: 430px;
    }


    /* -----------------------------------------------------
       12-MONTH INTRODUCTION
       ----------------------------------------------------- */

    .months-intro-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* -----------------------------------------------------
       COMPANION
       ----------------------------------------------------- */

    .companion-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .companion-placeholder {
        min-height: 380px;
    }


    /* -----------------------------------------------------
       EXPLORE
       ----------------------------------------------------- */

    .explore-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .explore-card {
        min-height: 280px;
    }


    /* -----------------------------------------------------
       JACKIE
       ----------------------------------------------------- */

    .jackie-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .jackie-placeholder {
        min-height: 430px;
    }


    /* -----------------------------------------------------
       RETIREMENT RESET
       ----------------------------------------------------- */

    .reset-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-container {
        grid-template-columns: 1fr;
    }   

    .footer-brand {
        grid-column: auto;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   19. RESPONSIVE — PHONE
   ========================================================= */

@media (max-width: 600px) {

    /* Overall container */

    .container {
        width: min(90%, 1240px);
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .header-container {
        width: 90%;
    }

    .site-logo {
        font-size: 1.7rem;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero-section {
        padding: 60px 0 65px;
    }

    .hero-content h1 {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .button {
        width: 100%;
    }
    .hero-pre-retirement-callout {
    padding: 20px;
    }

    .hero-pre-retirement-button {
        width: 100%;
    }
    .hero-placeholder {
        min-height: 320px;

        border-radius: 20px;
    }


    /* -----------------------------------------------------
       WELCOME VIDEO
       ----------------------------------------------------- */

    .welcome-video-section {
        padding: 65px 0;
    }

    .welcome-video-heading {
        margin-bottom: 32px;
    }

    .welcome-video-heading h2 {
        font-size: 2.15rem;
        line-height: 1.08;
    }
    /* Keeps the welcome paragraph comfortable to read on phones */
    .welcome-video-intro {
        font-size: 1rem;
        line-height: 1.5;
    }

    .featured-video-placeholder {
        min-height: 300px;

        border-radius: 18px;

        padding: 25px;
    }

    .video-play-button {
        width: 70px;
        height: 70px;

        font-size: 1.6rem;
    }

    .welcome-video-quote {
        font-size: 1.75rem !important;
    }


    /* -----------------------------------------------------
       MONTH INTRODUCTION
       ----------------------------------------------------- */

    .months-intro-section {
        padding: 60px 0 35px;
    }

    .months-intro-heading h2 {
        font-size: 2.5rem;
    }

    .start-where-you-are {
        padding: 21px;
    }


    /* -----------------------------------------------------
       MONTH ROADMAP
       ----------------------------------------------------- */

    .months-roadmap-section {
        padding-bottom: 75px;
    }


    /* -----------------------------------------------------
       COMPANION
       ----------------------------------------------------- */

    .companion-section {
        padding: 75px 0;
    }

    .companion-content h2 {
        font-size: 2.45rem;
    }

    .companion-placeholder {
        min-height: 300px;

        border-radius: 18px;
    }


    /* -----------------------------------------------------
       EXPLORE
       ----------------------------------------------------- */

    .explore-section {
        padding: 75px 0;
    }

    .explore-heading {
        margin-bottom: 35px;
    }

    .explore-heading h2 {
        font-size: 2.4rem;
    }

    .explore-card {
        min-height: auto;

        padding: 30px;
    }


    /* -----------------------------------------------------
       JACKIE
       ----------------------------------------------------- */

    .jackie-section {
        padding: 75px 0;
    }

    .jackie-content h2 {
        font-size: 2.45rem;
    }

    .jackie-placeholder {
        min-height: 340px;

        border-radius: 18px;
    }

    .jackie-question {
        font-size: 1.25rem !important;
    }


    /* -----------------------------------------------------
       RETIREMENT RESET
       ----------------------------------------------------- */

    .reset-section {
        padding: 75px 0;
    }

    .reset-content h2 {
        font-size: 2.4rem;
    }

    .signup-card {
        padding: 28px 22px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .site-footer {
        padding-top: 55px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }   

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 40px;
    }

}


/* =========================================================
   END OF QUITIRED VERSION 1 HOMEPAGE STYLES
   =========================================================

   NEXT DEVELOPMENT STEPS:

   1. Confirm this cleaned stylesheet preserves the approved
      Version 1 homepage appearance.

   2. Complete a dedicated responsive/mobile review.

   3. Build the mobile hamburger navigation.

   4. Add the real Quitired logo and photography.

   5. Finalize fonts and exact brand colors.

   6. Build individual website pages, beginning with:
      - About Jackie
      - reusable monthly-theme page template

   ========================================================= */

/* ============================================================
   ABOUT JACKIE PAGE STYLES
   ============================================================

   The styles below are used for the separate About Jackie page.

   These class names were created specifically for about.html so
   changes here will not alter the approved Quitired homepage.

   We will continue adding About-page sections below this area
   as the page is built.
   ============================================================ */


/* ============================================================
   ABOUT JACKIE: OPENING / MEET JACKIE SECTION
   ============================================================ */

.about-jackie-intro {
    background-color: var(--white);
    padding: 85px 0 95px;
}


/*
Two-column layout:
Jackie's story is on the left.
Jackie's photograph will be on the right.
*/
.about-jackie-intro-container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 70px;
    align-items: center;
}


/* Keeps the written portion comfortable to read. */
.about-jackie-story {
    max-width: 760px;
}


/*
Main About-page heading.

"Hi, I'm Jackie." remains teal.
The second thought appears on its own line in lavender.
*/
.about-jackie-title {
    color: var(--teal);
    font-size: clamp(2.8rem, 5vw, 4.3rem);
    line-height: 1.04;
    margin: 12px 0 30px;
    letter-spacing: -0.03em;
}

.about-jackie-title span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 0.76em;
    margin-top: 10px;
    
}


/*
Body copy for Jackie's introduction.
Slightly larger than ordinary website copy so this section
feels conversational and easy to read.
*/
.about-jackie-story p:not(.section-eyebrow) {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 20px;
}


/*
Adds a little more emphasis to the very first sentence:
"For more than 30 years, I worked. A lot."
*/
.about-jackie-story p:not(.section-eyebrow):first-of-type {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--teal-dark);
}


/* ============================================================
   JACKIE PHOTO AREA
   ============================================================

   This is temporary styling for the photo placeholder.
   Once we select the actual Jackie photograph, we will replace
   the placeholder without rebuilding the surrounding layout.
   ============================================================ */

.about-jackie-photo {
    width: 100%;
    display: flex;
    justify-content: center;
}
/*
Main About Jackie photograph.

The photo is from Jackie's 60th birthday and retirement
celebration. We preserve the vertical composition so the
QUITTER sash remains visible as part of the story.
*/
.about-jackie-main-photo {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 28px;
}

.about-photo-placeholder {
    width: 100%;
    min-height: 520px;

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

    background-color: var(--lavender-light);
    border-radius: 28px;

    color: var(--lavender-dark);
    font-size: 1rem;
    font-weight: 600;
}


/* ============================================================
   ABOUT JACKIE: TABLET RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1000px) {

    .about-jackie-intro {
        padding: 70px 0 80px;
    }

    .about-jackie-intro-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-jackie-story {
        max-width: 800px;
    }

    .about-jackie-photo {
        max-width: 650px;
        margin: 0 auto;
    }

    .about-photo-placeholder {
        min-height: 450px;
    }
}


/* ============================================================
   ABOUT JACKIE: PHONE RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 600px) {

    .about-jackie-intro {
        padding: 55px 0 65px;
    }

    .about-jackie-intro-container {
        gap: 35px;
    }

    .about-jackie-title {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
        margin-bottom: 25px;
    }

    .about-jackie-story p:not(.section-eyebrow) {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .about-photo-placeholder {
        min-height: 360px;
        border-radius: 22px;
    }
}

/* ============================================================
   ABOUT JACKIE: RETIREMENT TURNING POINT
   ============================================================

   This section visually marks the transition from Jackie's
   working life into retirement.

   A soft lavender background separates this chapter from the
   opening Meet Jackie section.
   ============================================================ */

.about-retirement-turn {
    background-color: var(--lavender-light);
    padding: 90px 0 100px;
}


/*
Keeps this part of the story narrower than the opening section
so it feels more intimate and conversational.
*/
.about-retirement-turn .container {
    max-width: 1050px;
}


/* Main heading */
.about-retirement-title {
    color: var(--teal);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    margin: 12px 0 40px;
    letter-spacing: -0.025em;
}


/* Lavender second line of the heading */
.about-retirement-title span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 0.82em;
    margin-top: 8px;
}


/* Main story copy */
.about-retirement-copy {
    max-width: 820px;
}

.about-retirement-copy > p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 22px;
}


/* ============================================================
   THE THREE "NO..." LINES

   These are treated as quick conversational beats rather than
   ordinary paragraphs.
   ============================================================ */

.about-retirement-beats {
    margin: 12px 0;
    padding-left: 24px;
    border-left: 4px solid var(--teal);
}

.about-retirement-beats p {
    color: var(--teal-dark);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 10px;
}

.about-retirement-beats p:last-child {
    margin-bottom: 0;
}


/* "It was wonderful." and "It was also a little weird." */
.about-retirement-short {
    font-weight: 600;
}


/*
The word TIME becomes its own visual pause in the story.
*/
.about-retirement-copy .about-time-word {
    color: var(--lavender-dark);
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
    margin: 10px 0 28px;
}


/* ============================================================
   SIGNATURE QUESTION

   This is the central question behind Quitired, so it receives
   its own visual treatment rather than appearing as ordinary
   body copy.
   ============================================================ */

.about-big-question {
    margin-top: 55px;
    padding: 45px 55px;
    background-color: var(--white);
    border-radius: 24px;
    border-left: 6px solid var(--teal);
    max-width: 900px;
}

.about-big-question p {
    color: var(--teal);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
}

.about-big-question span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    margin-top: 5px;
}


/* ============================================================
   RETIREMENT SECTION: PHONE
   ============================================================ */

@media (max-width: 600px) {

    .about-retirement-turn {
        padding: 65px 0 75px;
    }

    .about-retirement-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        margin-bottom: 30px;
    }

    .about-retirement-copy > p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-retirement-beats {
        padding-left: 18px;
        margin: 30px 0;
    }

    .about-retirement-beats p {
        font-size: 1.05rem;
    }

    .about-big-question {
        margin-top: 40px;
        padding: 32px 26px;
    }

}

/* ============================================================
   ABOUT JACKIE: HOW QUITIRED BEGAN
   Styles the section explaining how Jackie's retirement
   question became the Quitired experiment.
   ============================================================ */

.about-quitired-beginning {
    background-color: var(--white);
    padding: 90px 0 100px;
}


/*
Keeps the section readable and gives it more of an editorial
feel than one very wide block of text.
*/
.about-quitired-beginning-container {
    max-width: 1120px;
}


/* Main heading */
.about-quitired-beginning-title {
    color: var(--teal);
    font-size: clamp(2.6rem, 4.5vw, 3.9rem);
    line-height: 1.08;
    margin: 12px 0 38px;
    letter-spacing: -0.025em;
}


/* Lavender second line */
.about-quitired-beginning-title span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 0.82em;
    margin-top: 8px;
}


/* Main story copy */
.about-quitired-beginning-copy {
    max-width: 840px;
}

.about-quitired-beginning-copy p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 22px;
}


/* ============================================================
   THE IDEA WAS SIMPLE
   ============================================================ */

.about-quitired-experiment {
    margin: 48px 0;
    padding: 42px 48px;
    background-color: var(--lavender-light);
    border-radius: 24px;
    max-width: 900px;
}


/* Small label above the main idea */
.about-experiment-label {
    color: var(--lavender-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}


/* "One month. One part of life." */
.about-experiment-main {
    color: var(--teal);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
}

.about-experiment-main span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    margin-top: 4px;
}


/* Supporting text inside the experiment box */
.about-quitired-experiment > p:last-child {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   I'M NOT THE RETIREMENT EXPERT
   ============================================================ */

.about-not-expert {
    margin-top: 58px;
    padding: 42px 48px;
    background-color: var(--off-white);
    border-radius: 24px;
    border-left: 6px solid var(--teal);
    max-width: 900px;
}


/* Main statement */
.about-not-expert-title {
    color: var(--teal);
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Supporting paragraphs */
.about-not-expert p:not(.about-not-expert-title) {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 16px;
}


/*
Gives "I'm the person willing to go first." more emphasis
without adding another heading to the section.
*/
.about-not-expert p:nth-of-type(2) {
    color: var(--lavender-dark);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 600;
}


/* Last paragraph does not need extra space below it. */
.about-not-expert p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   HOW QUITIRED BEGAN: TABLET
   ============================================================ */

@media (max-width: 900px) {

    .about-quitired-beginning {
        padding: 75px 0 85px;
    }

    .about-quitired-beginning-copy {
        max-width: 100%;
    }

    .about-quitired-experiment,
    .about-not-expert {
        max-width: 100%;
    }
}


/* ============================================================
   HOW QUITIRED BEGAN: PHONE
   ============================================================ */

@media (max-width: 600px) {

    .about-quitired-beginning {
        padding: 60px 0 70px;
    }

    .about-quitired-beginning-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        margin-bottom: 30px;
    }

    .about-quitired-beginning-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-quitired-experiment {
        margin: 36px 0;
        padding: 30px 26px;
    }

    .about-experiment-main {
        font-size: 2rem;
    }

    .about-quitired-experiment > p:last-child {
        font-size: 1rem;
    }

    .about-not-expert {
        margin-top: 40px;
        padding: 30px 26px;
    }

    .about-not-expert p:not(.about-not-expert-title) {
        font-size: 1rem;
    }

    .about-not-expert p:nth-of-type(2) {
        font-size: 1.25rem;
    }
}

/* ============================================================
   ABOUT JACKIE: THIS PART IS YOURS
   Moves the focus from Jackie's retirement to the reader's.
   This section stays open and spacious so it feels different
   from the boxed sections immediately above it.
   ============================================================ */

.about-your-retirement {
    background-color: var(--off-white);
    padding: 90px 0 100px;
}

.about-your-retirement .container {
    max-width: 1100px;
}


/* Main heading */
.about-your-retirement-title {
    color: var(--teal);
    font-size: clamp(2.6rem, 4.6vw, 4rem);
    line-height: 1.08;
    margin: 12px 0 38px;
    letter-spacing: -0.025em;
}


/* Lavender second line */
.about-your-retirement-title span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
    font-size: 0.82em;
    margin-top: 8px;
}


/* Main copy */
.about-your-retirement-copy {
    max-width: 850px;
}

.about-your-retirement-copy p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 22px;
}


/* Gives "That's not the point." a little conversational emphasis */
.about-your-retirement-copy p:nth-of-type(2) {
    color: var(--teal-dark);
    font-weight: 600;
}


/* ============================================================
   "ABSOLUTELY NOT, JACKIE."
   A playful visual beat in the section.
   ============================================================ */

.about-your-retirement-copy .absolutely-not-jackie {
    color: var(--lavender-dark);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
    margin: 26px 0 30px;
}


/* Emphasizes "your" in the paragraph about discovering your way */
.about-your-retirement-copy strong {
    color: var(--teal);
    font-weight: 700;
}


/* ============================================================
   ONE MONTH. ONE QUESTION. ONE EXPERIMENT.
   Closing visual statement for the section.
   ============================================================ */

.about-one-at-a-time {
    margin-top: 55px;
    padding-top: 38px;
    border-top: 1px solid var(--border-light);
}

.about-one-at-a-time p {
    margin: 0;
    line-height: 1.15;
}

.about-one-at-a-time .one-month {
    color: var(--teal);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
}

.about-one-at-a-time .one-question {
    color: var(--lavender);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-style: italic;
    font-weight: 500;
    margin-top: 5px;
}

.about-one-at-a-time .one-experiment {
    color: var(--teal);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-top: 5px;
}


/* ============================================================
   THIS PART IS YOURS: TABLET
   ============================================================ */

@media (max-width: 900px) {

    .about-your-retirement {
        padding: 75px 0 85px;
    }

    .about-your-retirement-copy {
        max-width: 100%;
    }
}


/* ============================================================
   THIS PART IS YOURS: PHONE
   ============================================================ */

@media (max-width: 600px) {

    .about-your-retirement {
        padding: 60px 0 70px;
    }

    .about-your-retirement-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        margin-bottom: 30px;
    }

    .about-your-retirement-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-your-retirement-copy .absolutely-not-jackie {
        font-size: 1.8rem;
        margin: 24px 0 28px;
    }

    .about-one-at-a-time {
        margin-top: 42px;
        padding-top: 30px;
    }
}
/* ============================================================
   ABOUT JACKIE: "THIS PART IS YOURS" HEADING ADJUSTMENT
   Slightly reduces this long heading so it stays consistent
   with the other major headings on the About page.
   ============================================================ */

.about-your-retirement-title {
    font-size: clamp(2.8rem, 4vw, 3.5rem);
}
/* ============================================================
   ABOUT JACKIE: ONE STEP AT A TIME

   Creates a small visual closing statement for the
   "This Part Is Yours" section.
   ============================================================ */

.about-one-at-a-time {
    margin-top: 55px;
    padding: 38px 48px;
    background-color: var(--lavender-light);
    border-radius: 22px;
    max-width: 720px;
}

.about-one-at-a-time p {
    margin: 0;
    line-height: 1.15;
}

.one-at-a-time-one {
    color: var(--teal);
    font-size: 2.1rem;
    font-weight: 700;
}

.one-at-a-time-two {
    color: var(--lavender-dark);
    font-size: 2.1rem;
    font-style: italic;
    margin-top: 5px !important;
}

.one-at-a-time-three {
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 14px !important;
}
/* ============================================================
   ABOUT JACKIE: CLOSING INVITATION

   Final section of the About Jackie page.
   Creates a strong visual ending that moves the reader from
   Jackie's story into beginning their own Quitired journey.
   ============================================================ */

.about-closing {
    background-color: var(--teal);
    padding: 100px 0;
}

.about-closing-container {
    max-width: 1120px;
    margin: 0 auto;
}

.about-closing-eyebrow {
    color: var(--lavender-light);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.about-closing-title {
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 48px;
}

.about-closing-title span {
    display: block;
    color: var(--lavender-light);
    font-style: italic;
    font-weight: 400;
    margin-top: 10px;
}

.about-closing-copy {
    max-width: 900px;
}

.about-closing-copy p {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-closing-emphasis {
    font-weight: 700;
}

.about-closing-final {
    color: var(--lavender) !important;
    font-size: 1.45rem !important;
    font-weight: 700;
    font-style: italic;
    margin-top: 34px;
}

.about-closing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 44px;
}

.about-closing-primary,
.about-closing-secondary {
    display: inline-block;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.about-closing-primary {
    background-color: var(--lavender);
    color: var(--white);
}

.about-closing-secondary {
    background-color: var(--white);
    color: var(--teal);
}


/* ============================================================
   ABOUT JACKIE: CLOSING INVITATION — MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .about-closing {
        padding: 70px 0;
    }

    .about-closing-container {
        width: 88%;
    }

    .about-closing-title {
        font-size: clamp(2.3rem, 10vw, 3rem);
        margin-bottom: 36px;
    }

    .about-closing-copy p {
        font-size: 1rem;
    }

    .about-closing-buttons {
        flex-direction: column;
    }

    .about-closing-primary,
    .about-closing-secondary {
        text-align: center;
    }
}
/* ============================================================
   ABOUT JACKIE: CLOSING HEADING REFINEMENT

   Reduces the closing headline so it stays consistent with
   the other major headings on the About page.

   Uses the stronger brand lavender against the teal background
   for better contrast.
   ============================================================ */

.about-closing-title {
    font-size: clamp(2.7rem, 4vw, 3.6rem);
}

.about-closing-title span {
    color: var(--lavender);
}
/* ============================================================
   ABOUT JACKIE: "AND THEN I RETIRED" BOTANICAL ACCENT

   Adds the soft lavender/teal watercolor botanical to the
   lower-right edge of the retirement section.

   This is decorative only and should stay behind the story.
   ============================================================ */

.about-retirement-turn {
    position: relative;
    overflow: hidden;
}

.about-retirement-turn::after {
    content: "";
    position: absolute;

    right: 75px;
    bottom: 25px;

    width: 360px;
    height: 360px;

    background-image: url("../assets/images/about-retired-botanical.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    opacity: 0.38;

    pointer-events: none;
    z-index: 0;
}
@media (max-width: 1180px) {
    .about-retirement-turn::after {
        width: 320px;
        height: 320px;
        right: 45px;
    }

}
@media (max-width: 820px) {
    .about-retirement-turn::after {
        display: none;
    }
}
.about-retirement-turn > * {
    position: relative;
    z-index: 1;
}
/* ============================================================
   ABOUT JACKIE: PHOTO CAPTION

   Styles the caption beneath Jackie's birthday and
   retirement celebration photo.
   ============================================================ */

.about-jackie-photo-caption {
    display: block;
    width: 100%;
    margin-top: 12px;

    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    font-style: italic;

    text-align: center;
}
.about-jackie-photo {
    display: flex;
    flex-direction: column;
}
@media (max-width: 820px) {
    .about-jackie-photo {
        align-items: center;
    }
}
/* ============================================================
   ABOUT JACKIE: EXPERIMENT BOTANICAL ACCENT

   Adds the watercolor botanical to the
   "So I Decided to Find Out" section.

   The entire graphic stays inside the page.
   ============================================================ */

.about-quitired-beginning {
    position: relative;
    overflow: hidden;
}

/* ============================================================
   ABOUT JACKIE: EXPERIMENT WATERMARK

   Uses the playful laboratory illustration as a large,
   faded background element behind the Experiment story.
   ============================================================ */

.about-quitired-beginning::after {
    content: "";
    position: absolute;

    right: 45px;
    top: 90px;

    width: 760px;
    height: 760px;

    background-image: url("../assets/images/about-experiment-graphic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.16;

    pointer-events: none;
    z-index: 0;
}
@media (max-width: 390px) {
    .about-quitired-beginning::after {
        right: -5px;
        top: 260px;
        width: 380px;
        height: 380px;
        opacity: 0.10;
    }
}

.about-quitired-beginning > * {
    position: relative;
    z-index: 1;
}
/* ============================================================
   ABOUT JACKIE: CALENDAR GRAPHIC

   Controls the size and placement of the calendar illustration
   in the "And Then I Retired" section.
   ============================================================ */
/* Places the retirement beats and calendar side by side */
.about-retirement-beats-row {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 50px;
}
.about-calendar-graphic {
    max-width: 260px;
    margin: 10px auto;
}

.about-calendar-graphic img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 390px) {
    .about-retirement-beats-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-calendar-graphic {
        margin: 0 auto;
    }
}
/* ============================================================
   ABOUT JACKIE: DIFFERENT TUESDAYS GRAPHIC

   Keeps the illustration centered beneath the "good Tuesday"
   line without allowing it to overpower the surrounding story.
   ============================================================ */

.about-different-tuesdays {
    width: 75%;
    max-width: 900px;
    margin: 25px auto 15px;
}

.about-different-tuesdays img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 390px) {
    .about-different-tuesdays {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   THE 12 MONTHS PAGE: HERO

   Styles the opening section of the dedicated 12-month journey
   page. Keeps the visual language consistent with the rest of
   Quitired: lavender eyebrow, teal headline, lavender accent,
   generous white space, and centered introductory copy.
   ============================================================ */

.months-page-hero {
    background-color: var(--white);
    padding: 90px 0 100px;
}

.months-page-hero-inner {
    max-width: 1050px;
    text-align: center;
}

.months-page-hero .section-eyebrow {
    color: var(--lavender);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.months-page-hero h1 {
    color: var(--teal);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 20px;
}

.months-page-hero-accent {
    color: var(--lavender);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 30px;
}

.months-page-hero-copy {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.75;
}
.months-page-pre-retirement {
    margin-top: 24px;
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 600;

    text-align: center;
}

.months-page-pre-retirement a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.months-page-pre-retirement a:hover {
    color: var(--teal);
    text-decoration: underline;
}
/* ============================================================
   12 MONTHS PAGE: MONTH CARD IMAGES
   Keeps the monthly artwork contained within each month card.
   ============================================================ */

.journey-month-art {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 25px;
}

.journey-month-art img {
    display: block;
    width: 100%;
    height: auto;
}
/* ============================================================
   12 MONTHS PAGE: INDIVIDUAL MONTH LAYOUT

   Creates a spacious two-column presentation for each month.
   The monthly artwork sits beside the theme information.
   ============================================================ */

.journey-month {
    padding: 45px 0 90px;
}
/* Month number / eyebrow label */
.journey-month-number {
    color: var(--lavender);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* Month theme tagline */
.journey-month-tagline {
    color: var(--lavender);
    font-style: italic;
    font-size: 1.25rem;
}
/* Month page link / button */
.journey-month-link {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 22px;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
}
.journey-month-container {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    align-items: center;
    gap: 90px;
    max-width: 1100px;

    border: 14px solid var(--teal);
    border-radius: 18px;
    padding: 45px 55px;
}
.journey-month-container .journey-month-art {
    max-width: 420px;
    margin: 0;
}
/* ============================================================
   MONTH JOURNEY FEATURE PANEL

   Creates the bordered card around each month's artwork
   and content. Individual months can change the border color
   while keeping the same overall layout.
   ============================================================ */


/* Even months: lavender border */
.journey-month-2 .journey-month-container,
.journey-month-4 .journey-month-container,
.journey-month-6 .journey-month-container,
.journey-month-8 .journey-month-container,
.journey-month-10 .journey-month-container, 
.journey-month-12 .journey-month-container {
    border-color: var(--lavender);
}
/* ============================================================
   12 MONTHS PAGE: CLOSING INVITATION
   ------------------------------------------------------------
   A quiet, reflective ending to the 12-month overview.

   The section intentionally does not use a border so it feels
   different from the individual month cards and gives the page
   some visual breathing room before the footer.
   ============================================================ */

.months-closing {
    padding: 110px 0 120px;
    background-color: var(--white);
}

.months-closing-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Lavender eyebrow above the main closing message */
.months-closing .section-eyebrow {
    color: var(--lavender);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

/* Main reflective statement */
.months-closing h2 {
    color: var(--teal);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

/* Lavender italic thought beneath the heading */
.months-closing-accent {
    color: var(--lavender);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 35px;
}

/* Main closing copy */
.months-closing-copy {
    max-width: 760px;
    margin: 0 auto 35px;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.75;
}

.months-closing-copy p {
    margin-bottom: 18px;
}
.months-closing-pre-retirement {
    margin-top: 24px;
    margin-bottom: 18px;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 600;

    text-align: center;
}

.months-closing-pre-retirement a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.months-closing-pre-retirement a:hover {
    color: var(--teal);
    text-decoration: underline;
}

/* Primary invitation to begin Month 1 */
.months-closing-button {
    display: inline-block;
    padding: 14px 26px;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
}

/* Quiet reminder of the Quitired mission */
.months-closing-tagline {
    margin-top: 28px;
    color: var(--lavender);
    font-size: 1rem;
    font-style: italic;
}
/* ============================================================
   12 MONTHS PAGE: TABLET PORTRAIT
   ------------------------------------------------------------
   At 820px and below, month cards change from the desktop
   two-column layout to a stacked layout so artwork and text
   have enough room.
   ============================================================ */

@media (max-width: 820px) {


    .journey-month-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-month-container .journey-month-art {
        margin-left: auto;
        margin-right: auto;
    }

    }


/* ============================================================
   MONTH DETAIL PAGES — SHARED FOUNDATION
   ------------------------------------------------------------
   Shared structural styles for individual monthly pages.
   Month-specific compositions may add their own rules later.
   ============================================================ */

.month-detail-hero {
    padding: 72px 0 78px;
    background-color: var(--white);
}

.month-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 78px;
    max-width: 1100px;
}

.month-detail-hero-content .section-eyebrow,
.month-about .section-eyebrow,
.month-editorial .section-eyebrow,
.month-book .section-eyebrow,
.month-companion .section-eyebrow,
.month-next .section-eyebrow {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.month-detail-hero h1 {
    color: var(--teal);
    font-size: clamp(3.6rem, 6vw, 5rem);
    line-height: 1.02;
    margin-bottom: 12px;
}

.month-detail-hero-tagline {
    color: var(--lavender);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 28px;
}

.month-detail-hero-intro {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.month-detail-hero-art {
    max-width: 420px;
    margin-left: auto;
}

.month-detail-hero-art img {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================
   MONTH 1 — DECOMPRESSION
   ------------------------------------------------------------
   Visual direction matches the approved homepage/About Jackie:
   lavender eyebrow + strong teal title + lavender italic accent,
   generous white space, light editorial rules, limited cards.
   ============================================================ */

/* ABOUT THIS MONTH */
.month-01-page .month-about {
    padding: 92px 0 96px;
    background-color: var(--off-white);
}

.month-01-page .month-about-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) minmax(240px, 0.8fr);
    gap: 52px;
    align-items: center;
}

.month-01-page .month-about-content h2,
.month-01-page .month-editorial-journey h2,
.month-01-page .month-editorial-challenge-heading h2,
.month-01-page .month-editorial-episode h2,
.month-01-page .month-book-content h2,
.month-01-page .month-companion-intro h2,
.month-01-page .month-next-copy h2,
.month-02-page .month-next-copy h2,
.month-03-page .month-next-copy h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.08;
}

.month-01-page .month-about-content h2 {
    font-size: clamp(2.55rem, 4vw, 3.15rem);
    margin-bottom: 26px;
}

.month-01-page .month-about-content > p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 20px;
}

.month-01-page .month-about-quote {
    margin: 0;
    padding: 12px 0 12px 28px;
    border-left: 3px solid var(--lavender);
}

.month-01-page .month-about-quote p {
    color: var(--lavender);
    font-size: clamp(1.65rem, 2.5vw, 2.15rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.month-01-page .month-about-image {
    margin: 0;
}

.month-01-page .month-about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* JOURNEY / CHALLENGE / EPISODE */
.month-01-page .month-editorial {
    padding: 96px 0 98px;
    background-color: var(--white);
}

.month-01-page .month-editorial-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}

.month-01-page .month-editorial-journey {
    padding-right: 52px;
    border-right: 1px solid rgba(169,138,212,0.28);
}

.month-01-page .month-editorial-journey h2 {
    font-size: clamp(2.45rem, 4vw, 3rem);
    margin-bottom: 28px;
}

.month-01-page .month-editorial-journey > p {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 22px;
}

.month-01-page .month-editorial-journey-note {
    margin: 38px 0 34px;
    padding: 24px 0 24px 26px;
    border-left: 3px solid var(--lavender);
    color: var(--lavender-dark);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.5;
}

.month-01-page .month-journey-closing-quote {
    position: relative;
    margin-top: 38px;
    padding: 28px 32px;
    background-color: var(--lavender-light);
    border-radius: 18px;
    overflow: hidden;
}

.month-01-page .month-journey-closing-quote p {
    position: relative;
    z-index: 1;
    color: var(--teal);
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.month-01-page .month-editorial-stack {
    display: grid;
    gap: 62px;
}

.month-01-page .month-editorial-challenge {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(169,138,212,0.28);
}

.month-01-page .month-editorial-challenge-heading {
    margin-bottom: 26px;
}

.month-01-page .month-editorial-challenge-heading h2 {
    font-size: clamp(2.25rem, 3.5vw, 2.7rem);
    margin: 0;
}

.month-01-page .month-challenge-paper {
    position: relative;
    max-width: 470px;
    margin: 8px auto 28px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.month-01-page .month-challenge-stationery {
    display: block;
    width: 100%;
    height: auto;
}

.month-01-page .month-challenge-note {
    position: absolute;
    top: 22%;
    left: 35%;
    width: 45%;
    color: var(--text-dark);
    font-family: "Bradley Hand", "Segoe Print", cursive;
    font-size: 0.98rem;
    line-height: 1.28;
}

.month-01-page .month-challenge-try {
    font-size: 1.32rem;
    margin: 0 0 14px;
}

.month-01-page .month-challenge-written {
    margin: 0 0 10px;
}

.month-01-page .month-challenge-just-be {
    font-size: 1.25rem;
    margin: 16px 0 0 40%;
}

.month-01-page .month-challenge-support {
    max-width: 620px;
    margin: 0 auto;
}

.month-01-page .month-challenge-support p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.month-01-page .month-challenge-question {
    color: var(--lavender-dark) !important;
    font-size: 1.17rem !important;
    font-style: italic;
    font-weight: 500;
}

.month-01-page .month-editorial-episode {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: 38px;
    align-items: center;
}

.month-01-page .month-editorial-episode h2 {
    font-size: clamp(2.15rem, 3.4vw, 2.65rem);
    margin-bottom: 18px;
}

.month-01-page .month-editorial-episode-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.month-01-page .month-editorial-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lavender-light), #f8f6fb);
    border: 1px solid rgba(169,138,212,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-01-page .month-editorial-video-placeholder::before {
    content: "▶";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    background-color: var(--teal);
    color: var(--white);
    font-size: 1.35rem;
}

.month-01-page .month-editorial-video-placeholder span {
    display: none;
}

.month-01-page .month-editorial-link,
.month-01-page .month-companion-link,
.month-01-page .month-next-link,
.month-02-page .month-editorial-link,
.month-02-page .month-companion-link,
.month-02-page .month-next-link,
.month-03-page .month-companion-link,
.month-03-page .month-next-link,
.month-04-page .month-companion-link,
.month-04-page .month-next-link,
.month-05-page .month-companion-link,
.month-05-page .month-next-link,
.month-07-page .month-companion-link,
.month-07-page .month-next-link,
.month-08-page .month-editorial-link,
.month-08-page .month-companion-link,
.month-08-page .month-next-link,
.month-09-page .month-companion-link,
.month-09-page .month-next-link,
.month-10-page .month-companion-link,
.month-10-page .month-next-link,
.month-11-page .month-companion-link,
.month-11-page .month-next-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.month-previous-link {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.month-previous-link:hover {
    color: var(--teal);
    text-decoration: underline;
}
.month-01-page .month-editorial-link:hover,
.month-01-page .month-companion-link:hover,
.month-01-page .month-next-link:hover,
.month-02-page .month-editorial-link:hover,
.month-02-page .month-companion-link:hover,
.month-02-page .month-next-link:hover,
.month-03-page .month-companion-link:hover,
.month-03-page .month-next-link:hover,
.month-04-page .month-companion-link:hover,
.month-04-page .month-next-link:hover,
.month-05-page .month-companion-link:hover,
.month-05-page .month-next-link:hover,
.month-07-page .month-companion-link:hover,
.month-07-page .month-next-link:hover,
.month-08-page .month-editorial-link:hover,
.month-08-page .month-companion-link:hover,
.month-08-page .month-next-link:hover,
.month-09-page .month-companion-link:hover,
.month-09-page .month-next-link:hover,
.month-10-page .month-companion-link:hover,
.month-10-page .month-next-link:hover,
.month-11-page .month-companion-link:hover,
.month-11-page .month-next-link:hover {
    background-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* BOOK */
.month-01-page .month-book {
    padding: 92px 0;
    background-color: var(--off-white);
    border: 0;
}

.month-01-page .month-book-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 74px;
    align-items: center;
}

.month-01-page .month-book-visual {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
}

.month-01-page .month-book-content {
    grid-column: 2;
    grid-row: 1;
}

.month-01-page .month-book-image {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.month-01-page .month-book-content h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.month-01-page .month-book-author {
    color: var(--lavender);
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 24px;
}

.month-01-page .month-book-content > p:not(.section-eyebrow):not(.month-book-author) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* COMPANION */
.month-01-page .month-companion {
    padding: 96px 0;
    background-color: var(--white);
    border: 0;
}

.month-01-page .month-companion-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.85fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.month-01-page .month-companion-intro,
.month-01-page .month-companion-details {
    padding: 0;
}

.month-01-page .month-companion-intro h2 {
    font-size: clamp(2.45rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.month-01-page .month-companion-intro > p:not(.section-eyebrow),
.month-01-page .month-companion-details > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 18px;
}

.month-01-page .month-companion-visual {
    padding: 30px;
    background-color: var(--lavender-light);
    border: 0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-01-page .month-companion-image {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* NEXT MONTH */
.month-01-page .month-next,
.month-02-page .month-next,
.month-03-page .month-next,
.month-04-page .month-next,
.month-05-page .month-next,
.month-06-page .month-next,
.month-07-page .month-next,
.month-08-page .month-next,
.month-09-page .month-next,
.month-10-page .month-next,
.month-11-page .month-next {
    padding: 72px 0 76px;
    background-color: var(--off-white);
    border-top: 1px solid rgba(169,138,212,0.2);
}

.month-01-page .month-next-inner,
.month-02-page .month-next-inner,
.month-03-page .month-next-inner,
.month-04-page .month-next-inner,
.month-05-page .month-next-inner,
.month-06-page .month-next-inner,
.month-07-page .month-next-inner,
.month-08-page .month-next-inner,
.month-09-page .month-next-inner,
.month-10-page .month-next-inner,
.month-11-page .month-next-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.65fr 1.6fr 0.75fr;
    gap: 42px;
    align-items: center;
}

.month-01-page .month-next-copy h2,
.month-02-page .month-next-copy h2,
.month-03-page .month-next-copy h2,
.month-04-page .month-next-copy h2,
.month-05-page .month-next-copy h2,
.month-06-page .month-next-copy h2,
.month-07-page .month-next-copy h2,
.month-08-page .month-next-copy h2,
.month-09-page .month-next-copy h2,
.month-10-page .month-next-copy h2,
.month-11-page .month-next-copy h2 {
    font-size: clamp(2.15rem, 3.5vw, 2.7rem);
    margin-bottom: 8px;
}

.month-01-page .month-next-tagline,
.month-02-page .month-next-tagline,
.month-03-page .month-next-tagline,
.month-04-page .month-next-tagline,
.month-05-page .month-next-tagline,
.month-06-page .month-next-tagline,
.month-07-page .month-next-tagline,
.month-08-page .month-next-tagline,
.month-09-page .month-next-tagline,
.month-10-page .month-next-tagline,
.month-11-page .month-next-tagline {
    color: var(--lavender);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 12px;
}

.month-01-page .month-next-description,
.month-02-page .month-next-description,
.month-03-page .month-next-description,
.month-04-page .month-next-description,
.month-05-page .month-next-description,
.month-06-page .month-next-description,
.month-07-page .month-next-description,
.month-08-page .month-next-description,
.month-09-page .month-next-description,
.month-10-page .month-next-description,
.month-11-page .month-next-description {
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

.month-01-page .month-next-graphic,
.month-02-page .month-next-graphic,
.month-03-page .month-next-graphic,
.month-04-page .month-next-graphic,
.month-05-page .month-next-graphic,
.month-06-page .month-next-graphic,
.month-07-page .month-next-graphic,
.month-08-page .month-next-graphic,
.month-09-page .month-next-graphic,
.month-10-page .month-next-graphic,
.month-11-page .month-next-graphic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.month-next-graphic .month-previous-link {
    display: block;
    margin-top: 14px;
    text-align: center;

}
.month-01-page .month-next-image,
.month-02-page .month-next-image,
.month-03-page .month-next-image,
.month-04-page .month-next-image,
.month-05-page .month-next-image,
.month-06-page .month-next-image,
.month-07-page .month-next-image,
.month-08-page .month-next-image,
.month-09-page .month-next-image,
.month-10-page .month-next-image,
.month-11-page .month-next-image {
    width: 100%;
    max-width: 170px;
    height: auto;
}

.month-01-page .month-next-action,
.month-02-page .month-next-action,
.month-03-page .month-next-action,
.month-04-page .month-next-action,
.month-05-page .month-next-action,
.month-06-page .month-next-action,
.month-07-page .month-next-action,
.month-08-page .month-next-action,
.month-09-page .month-next-action,
.month-10-page .month-next-action,
.month-11-page .month-next-action {
    display: flex;
    justify-content: flex-end;
}

/* ============================================================
   MONTH DETAIL / MONTH 1 RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {
    .month-detail-hero-inner {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 48px;
    }

    .month-01-page .month-about-grid {
        grid-template-columns: 1fr 0.8fr;
    }

    .month-01-page .month-about-content {
        grid-column: 1;
    }

    .month-01-page .month-about-quote {
        grid-column: 1;
    }

    .month-01-page .month-about-image {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .month-01-page .month-editorial-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .month-01-page .month-editorial-journey {
        padding: 0 0 52px;
        border-right: 0;
        border-bottom: 1px solid rgba(169,138,212,0.28);
    }

    .month-01-page .month-editorial-episode {
        grid-template-columns: 1fr 0.85fr;
    }

    .month-01-page .month-companion-grid {
        grid-template-columns: 1fr 0.9fr;
    }

    .month-01-page .month-companion-details {
        grid-column: 1 / -1;
        padding-top: 6px;
    }
}

@media (max-width: 760px) {
    .month-detail-hero {
        padding: 54px 0 62px;
    }

    .month-detail-hero-inner {
        display: block;
    }

    .month-detail-hero h1 {
        font-size: clamp(3rem, 12vw, 4rem);
    }

    .month-detail-hero-tagline {
        font-size: 1.6rem;
    }

    .month-detail-hero-intro {
        font-size: 1rem;
    }

    .month-detail-hero-art {
        max-width: 280px;
        margin: 34px auto 0;
    }

    .month-01-page .month-about,
    .month-01-page .month-editorial,
    .month-01-page .month-book,
    .month-01-page .month-companion {
        padding: 66px 0;
    }

    .month-01-page .month-about-grid,
    .month-01-page .month-book-grid,
    .month-01-page .month-companion-grid,
    .month-01-page .month-next-inner,
.month-02-page .month-next-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .month-01-page .month-about-content,
    .month-01-page .month-about-quote,
    .month-01-page .month-about-image,
    .month-01-page .month-book-content,
    .month-01-page .month-book-visual,
    .month-01-page .month-companion-details {
        grid-column: 1;
        grid-row: auto;
    }

    .month-01-page .month-about-image {
        max-width: 430px;
        margin: 0 auto;
    }

    .month-01-page .month-editorial-episode {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .month-01-page .month-challenge-paper {
        max-width: 380px;
    }

    .month-01-page .month-challenge-note {
        font-size: 0.85rem;
    }

    .month-01-page .month-book-visual {
        order: 2;
    }

    .month-01-page .month-book-content {
        order: 1;
    }

    .month-01-page .month-companion-visual {
        max-width: 390px;
        margin: 0 auto;
    }

    .month-01-page .month-next,
.month-02-page .month-next {
        padding: 58px 0 62px;
    }

    .month-01-page .month-next-inner,
.month-02-page .month-next-inner {
        text-align: center;
    }

    .month-01-page .month-next-graphic,
    .month-01-page .month-next-action,
.month-02-page .month-next-action {
        justify-content: center;
    }

    .month-01-page .month-next-description,
.month-02-page .month-next-description {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .month-01-page .month-challenge-paper {
        max-width: 330px;
    }

    .month-01-page .month-challenge-note {
        top: 21%;
        left: 33%;
        width: 48%;
        font-size: 0.76rem;
    }

    .month-01-page .month-challenge-try {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }

    .month-01-page .month-challenge-just-be {
        font-size: 1.05rem;
        margin-top: 10px;
    }
}

/* ============================================================
   MONTH 2: RECOVERY FROM BUSY
   ------------------------------------------------------------
   Uses the approved Quitired monthly design system established
   on Month 1: lavender eyebrows, strong teal headings, lavender
   italic supporting text, generous white space, restrained rules,
   and only selective card treatments where they add meaning.
   ============================================================ */

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.month-02-page .month-02-hero {
    padding-bottom: 78px;
}

.month-02-page .month-02-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 82px;
}

.month-02-page .month-02-hero .month-detail-hero-art {
    max-width: 390px;
}

/* ------------------------------------------------------------
   OPENING: THE MONTH AHEAD
   ------------------------------------------------------------ */
.month-02-opening {
    background-color: var(--off-white);
    padding: 86px 0 92px;
}

.month-02-opening-layout {
    width: min(92%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: 78px;
    align-items: center;
}

.month-02-opening-left,
.month-02-opening-right {
    min-width: 0;
}

.month-02-opening-heading-text {
    max-width: 700px;
    margin-bottom: 30px;
}

.month-02-opening-heading-text h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.45rem, 4.2vw, 3.35rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 18px;
}

.month-02-opening-lead {
    color: var(--lavender);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.month-02-opening-copy {
    max-width: 680px;
}

.month-02-opening-copy p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 20px;
}

.month-02-opening-right {
    display: grid;
    gap: 30px;
}

.month-02-opening-photo-frame {
    min-height: 310px;
    border-radius: 24px;
    background-color: var(--lavender-light);
    border: 1px solid rgba(169, 138, 212, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.month-02-opening-photo-frame span {
    color: var(--lavender-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.month-02-opening-quote {
    margin: 0;
    padding: 26px 0 4px 26px;
    border-left: 3px solid var(--lavender);
}

.month-02-opening-quote p {
    color: var(--teal);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}

/* ------------------------------------------------------------
   THIS MONTH'S SHIFT
   ------------------------------------------------------------ */
.month-02-shift {
    background-color: var(--white);
    padding: 92px 0;
}

.month-02-shift-inner {
    max-width: 1180px;
}

.month-02-shift-label {
    max-width: 780px;
    margin-bottom: 46px;
}

.month-02-shift-label h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.3rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.month-02-shift-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 58px;
    row-gap: 0;
    border-top: 1px solid rgba(169, 138, 212, 0.24);
}

.month-02-shift-item {
    padding: 28px 0 26px;
    border-bottom: 1px solid rgba(169, 138, 212, 0.24);
}

.month-02-shift-word {
    display: block;
    color: var(--lavender);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.month-02-shift-item p {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.55;
    margin: 0;
}

/* ------------------------------------------------------------
   JOURNEY + CHALLENGE + EPISODE
   ------------------------------------------------------------ */
.month-02-editorial {
    background-color: var(--off-white);
    padding: 92px 0 96px;
}

.month-02-editorial-inner {
    max-width: 1180px;
}

.month-02-journey {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    column-gap: 72px;
    row-gap: 26px;
    align-items: start;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(169, 138, 212, 0.24);
}

.month-02-journey-heading h2,
.month-02-challenge h2,
.month-02-episode h2,
.month-02-book h2,
.month-02-companion h2 {
    color: var(--teal);
    font-family: inherit;
    font-weight: 700;
}

.month-02-journey-heading h2 {
    font-size: clamp(2.3rem, 3.7vw, 3rem);
    line-height: 1.1;
    margin: 0;
}

.month-02-journey-copy p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 20px;
}

.month-02-journey-quote {
    grid-column: 1 / -1;
    max-width: 840px;
    margin: 18px 0 0 auto;
    padding: 4px 0 4px 28px;
    border-left: 3px solid var(--lavender);
    color: var(--teal);
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

.month-02-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 68px;
    padding-top: 72px;
    align-items: start;
}

.month-02-challenge {
    padding-right: 16px;
}

.month-02-challenge h2,
.month-02-episode h2 {
    font-size: clamp(2rem, 3vw, 2.45rem);
    line-height: 1.12;
    margin-bottom: 24px;
}

.month-02-challenge-card {
    background-color: var(--white);
    border: 1px solid rgba(169, 138, 212, 0.28);
    border-radius: 20px;
    padding: 32px 34px;
}

.month-02-challenge-label {
    color: var(--lavender);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.month-02-challenge-main {
    color: var(--teal);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 20px;
}

.month-02-challenge-card > p:not(.month-02-challenge-label):not(.month-02-challenge-main):not(.month-02-challenge-question) {
    color: var(--text-soft);
    line-height: 1.7;
}

.month-02-challenge-question {
    color: var(--lavender);
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.55;
    margin: 24px 0 0;
}

.month-02-episode {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.month-02-episode p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.month-02-episode .month-editorial-video-placeholder {
    min-height: 245px;
}

/* ------------------------------------------------------------
   BOOK
   ------------------------------------------------------------ */
.month-02-book {
    background-color: var(--white);
    padding: 88px 0;
    border-bottom: 1px solid rgba(169, 138, 212, 0.22);
}

.month-02-book-inner {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 76px;
    align-items: center;
    max-width: 1180px;
}

.month-02-book-visual {
    display: flex;
    justify-content: center;
}

.month-02-book-placeholder {
    width: 100%;
    max-width: 320px;
    min-height: 410px;
    padding: 36px 30px;
    border-radius: 24px;
    background-color: var(--lavender-light);
    border: 1px solid rgba(169, 138, 212, 0.32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.month-02-book-placeholder-label {
    color: var(--lavender-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.month-02-book-placeholder-title {
    color: var(--teal);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 12px 0 8px;
}

.month-02-book-placeholder-author {
    color: var(--lavender);
    font-style: italic;
    margin-bottom: 28px;
}

.month-02-book-placeholder span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.month-02-book-copy h2 {
    font-size: clamp(2.3rem, 3.7vw, 3rem);
    line-height: 1.1;
    margin-bottom: 8px;
}

.month-02-book-author {
    color: var(--lavender);
    font-size: 1.12rem;
    font-style: italic;
    margin-bottom: 26px;
}

.month-02-book-copy p:not(.section-eyebrow):not(.month-02-book-author) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ------------------------------------------------------------
   COMPANION
   ------------------------------------------------------------ */
.month-02-companion {
    background-color: var(--off-white);
    padding: 92px 0;
}

.month-02-companion-inner {
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 78px;
    align-items: center;
}

.month-02-companion-copy > h2 {
    font-size: clamp(2.35rem, 3.8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 22px;
}

.month-02-companion-copy > p,
.month-02-companion-details p {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}

.month-02-companion-details {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(169, 138, 212, 0.28);
}

.month-02-companion-visual {
    display: flex;
    justify-content: center;
}

.month-02-companion-placeholder {
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    padding: 38px 30px;
    border-radius: 24px;
    background-color: var(--white);
    border: 1px solid rgba(169, 138, 212, 0.3);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.045);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.month-02-companion-small {
    color: var(--lavender);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.month-02-companion-title {
    color: var(--teal);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 14px 0 24px;
}

.month-02-companion-placeholder span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
    .month-02-page .month-02-hero .month-detail-hero-inner {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 50px;
    }

    .month-02-opening-layout,
    .month-02-book-inner,
    .month-02-companion-inner {
        gap: 48px;
    }

    .month-02-journey,
    .month-02-feature-row {
        column-gap: 46px;
    }
}

@media (max-width: 900px) {
    .month-02-opening-layout,
    .month-02-journey,
    .month-02-feature-row,
    .month-02-book-inner,
    .month-02-companion-inner {
        grid-template-columns: 1fr;
    }

    .month-02-opening-layout {
        gap: 44px;
    }

    .month-02-opening-right {
        max-width: 620px;
    }

    .month-02-journey-quote {
        grid-column: 1;
        margin-left: 0;
    }

    .month-02-feature-row {
        gap: 54px;
    }

    .month-02-challenge {
        padding-right: 0;
    }

    .month-02-book-visual {
        order: 2;
    }

    .month-02-book-copy {
        order: 1;
    }

    .month-02-companion-visual {
        margin-top: 8px;
    }
}

@media (max-width: 760px) {
    .month-02-page .month-02-hero {
        padding-bottom: 54px;
    }

    .month-02-opening,
    .month-02-shift,
    .month-02-editorial,
    .month-02-book,
    .month-02-companion {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .month-02-opening-layout {
        width: min(90%, 1180px);
    }

    .month-02-shift-grid {
        grid-template-columns: 1fr;
    }

    .month-02-shift-item {
        padding: 22px 0;
    }

    .month-02-journey {
        padding-bottom: 54px;
    }

    .month-02-feature-row {
        padding-top: 54px;
    }

    .month-02-opening-photo-frame {
        min-height: 240px;
    }
}

@media (max-width: 520px) {
    .month-02-opening-heading-text h2,
    .month-02-shift-label h2,
    .month-02-journey-heading h2,
    .month-02-book-copy h2,
    .month-02-companion-copy > h2 {
        font-size: 2.05rem;
    }

    .month-02-opening-lead {
        font-size: 1.2rem;
    }

    .month-02-opening-quote {
        padding-left: 20px;
    }

    .month-02-challenge-card {
        padding: 26px 22px;
    }

    .month-02-book-placeholder,
    .month-02-companion-placeholder {
        max-width: 300px;
        min-height: 350px;
    }
}
/* ============================================================
   MONTH 3 — HEALTH & ENERGY
   ------------------------------------------------------------
   Uses the approved Quitired monthly-page visual system:
   lavender eyebrow + teal editorial headline + lavender italic
   accent, generous white space, selective panels, and restrained
   rules. Month-specific content remains unique to Health & Energy.
   ============================================================ */

.month-03-page .month-03-hero { padding-bottom: 78px; }
.month-03-page .month-03-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
}
.month-03-page .month-03-hero .month-detail-hero-art { max-width: 390px; }
.month-03-page .month-03-hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.75rem);
    white-space: nowrap;
}

/* THE MONTH AHEAD */
.month-03-opening {
    padding: 92px 0 96px;
    background-color: var(--off-white);
}
.month-03-opening-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .75fr);
    gap: 72px;
    align-items: center;
}
.month-03-opening-message h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.6rem, 4.5vw, 3.45rem);
    font-weight: 700;
    line-height: 1.06;
    margin: 0 0 22px;
}
.month-03-opening-statement {
    max-width: 650px;
    color: var(--lavender);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}
.month-03-opening-photo {
    padding-left: 42px;
    border-left: 1px solid rgba(169,138,212,.28);
}
.month-03-photo-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--lavender-light), #f8f6fb);
    border: 1px solid rgba(169,138,212,.3);
    color: var(--lavender-dark);
    font-weight: 700;
}
.month-03-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.month-03-photo-caption {
    color: var(--text-soft);
    font-size: .88rem;
    font-style: italic;
    text-align: center;
    margin: 12px 0 0;
}

/* A DIFFERENT WAY TO THINK ABOUT HEALTH */
.month-03-capability { padding: 96px 0; background-color: var(--white); }
.month-03-capability-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    column-gap: 76px;
    row-gap: 42px;
    align-items: start;
}
.month-03-capability-heading h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
}
.month-03-capability-copy p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.76;
    margin-bottom: 19px;
}
.month-03-capability-quote {
    grid-column: 1 / -1;
    max-width: 850px;
    margin: 8px auto 0;
    padding: 30px 36px;
    border-left: 4px solid var(--lavender);
    color: var(--teal);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

/* THIS MONTH'S FOCUS */
.month-03-movement-strip { padding: 82px 0 88px; background-color: var(--off-white); }
.month-03-movement-strip > .container { max-width: 1100px; }
.month-03-movement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(169,138,212,.25);
    border-bottom: 1px solid rgba(169,138,212,.25);
}
.month-03-movement-item {
    padding: 34px 28px 30px;
    border-right: 1px solid rgba(169,138,212,.25);
}
.month-03-movement-item:last-child { border-right: 0; }
.month-03-movement-number {
    display: block;
    color: var(--lavender);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.month-03-movement-item h3 {
    color: var(--teal);
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 12px;
}
.month-03-movement-item p {
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
}

/* MY JOURNEY + CHALLENGE + EPISODE */
.month-03-editorial { padding: 96px 0; background-color: var(--white); }
.month-03-editorial-inner { max-width: 1120px; margin: 0 auto; }
.month-03-journey {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 68px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(169,138,212,.24);
}
.month-03-journey-heading h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
}
.month-03-journey-copy p {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.month-03-journey-quote {
    grid-column: 1 / -1;
    justify-self: end;
    width: min(100%, 700px);
    margin: 0;
    padding: 24px 30px;
    border-left: 3px solid var(--lavender);
    color: var(--lavender-dark);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
}
.month-03-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-top: 72px;
}
.month-03-challenge,
.month-03-episode {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.month-03-challenge {
    padding-right: 58px;
    border-right: 1px solid rgba(169,138,212,.24);
}
.month-03-challenge h3,
.month-03-episode h3 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2rem, 3.5vw, 2.55rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 20px;
}
.month-03-challenge-text,
.month-03-episode > p {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.72;
    margin-bottom: 20px;
}
.month-03-challenge-question {
    margin: 28px 0 0;
    color: var(--lavender-dark);
    font-size: 1.17rem;
    font-style: italic;
    line-height: 1.55;
}

/* BOOK */
.month-03-book { padding: 92px 0; background-color: var(--off-white); }
.month-03-book-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 72px;
    align-items: center;
}
.month-03-book-visual { display: flex; justify-content: center; }
.month-03-book-placeholder {
    width: min(100%, 300px);
    min-height: 390px;
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid rgba(169,138,212,.35);
}
.month-03-book-placeholder-label {
    color: var(--lavender);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.month-03-book-placeholder-title {
    color: var(--teal);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 16px;
}
.month-03-book-placeholder-author {
    color: var(--lavender-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 28px;
}
.month-03-book-placeholder > span:last-child { color: var(--text-soft); font-size: .82rem; }
.month-03-book-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 8px;
}
.month-03-book-author {
    color: var(--lavender);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 24px;
}
.month-03-book-copy > p:not(.section-eyebrow):not(.month-03-book-author) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.month-03-reading-note {
    margin-top: 30px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(169,138,212,.3);
}
.month-03-reading-note span {
    display: block;
    color: var(--lavender);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.7px;
    margin-bottom: 8px;
}
.month-03-reading-note p { color: var(--text-dark); margin: 0; }

/* COMPANION */
.month-03-companion { padding: 96px 0; background-color: var(--white); }
.month-03-companion-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 72px;
    align-items: center;
}
.month-03-companion-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 22px;
}
.month-03-companion-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.month-03-expert-callout {
    margin: 32px 0 30px;
    padding: 26px 28px;
    background-color: var(--lavender-light);
    border-left: 4px solid var(--lavender);
    border-radius: 0 14px 14px 0;
}
.month-03-expert-label {
    color: var(--lavender-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.month-03-expert-callout h3 { color: var(--teal); font-size: 1.55rem; margin-bottom: 10px; }
.month-03-expert-callout p { color: var(--text-soft); line-height: 1.65; margin: 0; }
.month-03-companion-card {
    padding: 38px 36px;
    background-color: var(--lavender-light);
    border-radius: 22px;
    border: 1px solid rgba(169,138,212,.24);
}
.month-03-companion-card h3 {
    color: var(--teal);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 24px;
}
.month-03-companion-card ul { margin: 0; padding-left: 1.2rem; }
.month-03-companion-card li { color: var(--text-soft); line-height: 1.6; margin-bottom: 12px; }

/* MONTH 3 RESPONSIVE */
@media (max-width: 1050px) {
    .month-03-page .month-03-hero .month-detail-hero-inner {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 48px;
    }
    .month-03-page .month-03-hero h1 { white-space: normal; }
    .month-03-opening-inner,
    .month-03-capability-inner,
    .month-03-journey,
    .month-03-book-inner,
    .month-03-companion-inner { gap: 46px; }
    .month-03-feature-row { gap: 44px; }
}

@media (max-width: 820px) {
    .month-03-page .month-03-hero .month-detail-hero-inner,
    .month-03-opening-inner,
    .month-03-capability-inner,
    .month-03-journey,
    .month-03-book-inner,
    .month-03-companion-inner,
    .month-03-feature-row { grid-template-columns: 1fr; }
    .month-03-page .month-03-hero .month-detail-hero-art {
        max-width: 300px;
        margin: 12px auto 0;
    }
    .month-03-opening-photo {
        max-width: 420px;
        margin: 0 auto;
        padding-left: 0;
        border-left: 0;
    }
    .month-03-capability-quote,
    .month-03-journey-quote { grid-column: 1; justify-self: stretch; }
    .month-03-movement-grid { grid-template-columns: repeat(2, 1fr); }
    .month-03-movement-item:nth-child(2) { border-right: 0; }
    .month-03-movement-item:nth-child(-n+2) { border-bottom: 1px solid rgba(169,138,212,.25); }
    .month-03-challenge {
        padding: 0 0 44px;
        border-right: 0;
        border-bottom: 1px solid rgba(169,138,212,.24);
    }
}

@media (max-width: 560px) {
    .month-03-opening,
    .month-03-capability,
    .month-03-editorial,
    .month-03-book,
    .month-03-companion { padding: 66px 0; }
    .month-03-movement-strip { padding: 62px 0 68px; }
    .month-03-opening-message h2,
    .month-03-capability-heading h2,
    .month-03-journey-heading h2,
    .month-03-book-copy h2,
    .month-03-companion-copy h2 { font-size: 2.2rem; }
    .month-03-movement-grid { grid-template-columns: 1fr; }
    .month-03-movement-item,
    .month-03-movement-item:nth-child(2),
    .month-03-movement-item:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid rgba(169,138,212,.25);
    }
    .month-03-movement-item:last-child { border-bottom: 0; }
    .month-03-capability-quote { padding: 24px; }
    .month-03-companion-card { padding: 30px 25px; }
}

/* ============================================================
   MONTH 4 — REWIRED
   ------------------------------------------------------------
   Uses the approved Quitired monthly-page visual system:
   lavender eyebrow + teal editorial headline + lavender italic
   accents, generous white space, restrained borders, and
   selective panels. Month-specific flow content remains unique.
   ============================================================ */

.month-04-page .month-04-hero { padding-bottom: 78px; }
.month-04-page .month-04-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
}
.month-04-page .month-04-hero .month-detail-hero-art { max-width: 390px; }
.month-04-page .month-04-hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.75rem);
    white-space: nowrap;
}

/* THE MONTH AHEAD */
.month-04-opening { padding: 94px 0 96px; background-color: var(--off-white); }
.month-04-opening-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 74px;
    align-items: center;
}
.month-04-opening-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.45rem, 4.2vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 24px;
}
.month-04-opening-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.76;
    margin-bottom: 18px;
}
.month-04-opening-path { padding: 0; }
.month-04-path-step {
    position: relative;
    padding: 22px 22px 20px 64px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(169,138,212,.26);
    border-radius: 0;
    box-shadow: none;
}
.month-04-path-step:first-child { border-top: 1px solid rgba(169,138,212,.26); }
.month-04-path-step span {
    position: absolute;
    left: 12px;
    top: 22px;
    color: var(--lavender);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.month-04-path-step strong { display:block; color:var(--teal); font-size:1.28rem; margin-bottom:6px; }
.month-04-path-step p { margin:0; color:var(--text-soft); font-size:.95rem; line-height:1.6; }
.month-04-path-connector { display:none; }
.month-04-opening-quote {
    max-width: 820px;
    margin: 58px auto 0;
    padding: 28px 34px;
    border-left: 4px solid var(--lavender);
}
.month-04-opening-quote p {
    margin: 0;
    color: var(--lavender-dark);
    font-family: inherit;
    font-size: clamp(1.4rem, 2.7vw, 1.95rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

/* THIS MONTH'S EXPERIMENT */
.month-04-map { padding: 92px 0 96px; background-color: var(--white); }
.month-04-map-inner { max-width: 1120px; }
.month-04-map-heading { max-width: 760px; margin-bottom: 44px; }
.month-04-map-heading h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 18px;
}
.month-04-map-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}
.month-04-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(169,138,212,.25);
    border-bottom: 1px solid rgba(169,138,212,.25);
}
.month-04-flow-card {
    min-height: 0;
    padding: 34px 28px 30px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(169,138,212,.25);
    border-radius: 0;
    box-shadow: none;
}
.month-04-flow-card:last-of-type { border-right: 0; }
.month-04-flow-card h3 { color:var(--teal); font-size:1.48rem; margin:0 0 12px; }
.month-04-flow-card p { color:var(--text-soft); font-size:.95rem; line-height:1.65; margin:0; }
.month-04-flow-arrow { display:none; }

/* MY JOURNEY + CHALLENGE + EPISODE */
.month-04-editorial { padding: 96px 0; background-color: var(--off-white); }
.month-04-editorial-inner { max-width: 1120px; margin:0 auto; }
.month-04-journey {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:68px;
    padding-bottom:70px;
    border-bottom:1px solid rgba(169,138,212,.24);
}
.month-04-journey-heading { padding:0; border:0; }
.month-04-journey-heading h2 {
    color:var(--teal);
    font-family:inherit;
    font-size:clamp(2.35rem, 4vw, 3rem);
    font-weight:700;
    line-height:1.08;
    margin:0;
}
.month-04-journey-copy p { color:var(--text-soft); font-size:1.03rem; line-height:1.75; margin-bottom:20px; }
.month-04-journey-quote {
    grid-column:1 / -1;
    justify-self:end;
    width:min(100%,700px);
    margin:0;
    padding:24px 30px;
    border-left:3px solid var(--lavender);
    color:var(--lavender-dark);
    font-family:inherit;
    font-size:1.35rem;
    font-style:italic;
    font-weight:500;
    line-height:1.5;
    text-align:left;
}
.month-04-feature-row { display:grid; grid-template-columns:1fr 1fr; gap:64px; padding-top:72px; margin:0; }
.month-04-challenge, .month-04-episode { min-height:0; padding:0; background:transparent; border:0; border-radius:0; box-shadow:none; }
.month-04-challenge { padding-right:58px; border-right:1px solid rgba(169,138,212,.24); }
.month-04-challenge h3, .month-04-episode h3 {
    color:var(--teal);
    font-family:inherit;
    font-size:clamp(2rem,3.5vw,2.55rem);
    font-weight:700;
    line-height:1.08;
    margin:0 0 20px;
}
.month-04-challenge-text, .month-04-episode > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.02rem; line-height:1.72; margin-bottom:20px; }
.month-04-challenge-question { margin:28px 0 0; color:var(--lavender-dark); font-size:1.17rem; font-style:italic; line-height:1.55; }

/* BOOK */
.month-04-book { padding:92px 0; background-color:var(--white); }
.month-04-book-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:.72fr 1.28fr; gap:72px; align-items:center; }
.month-04-book-visual { display:flex; justify-content:center; }
.month-04-book-placeholder {
    width:min(100%,300px);
    min-height:390px;
    padding:38px 28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:20px;
    background-color:var(--lavender-light);
    border:1px solid rgba(169,138,212,.3);
}
.month-04-book-placeholder-label { color:var(--lavender-dark); font-size:.75rem; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; margin-bottom:26px; }
.month-04-book-placeholder-title { color:var(--teal); font-family:inherit; font-size:2rem; line-height:1.12; margin-bottom:16px; }
.month-04-book-placeholder-author { color:var(--lavender); font-style:italic; line-height:1.5; margin-bottom:28px; }
.month-04-book-placeholder > span:last-child { color:var(--text-soft); font-size:.82rem; }
.month-04-book-copy h2 { color:var(--teal); font-family:inherit; font-size:clamp(2.5rem,4vw,3rem); font-weight:700; line-height:1.08; margin:0 0 8px; }
.month-04-book-author { color:var(--lavender); font-size:1.15rem; font-style:italic; font-weight:500; margin-bottom:24px; }
.month-04-book-copy > p:not(.section-eyebrow):not(.month-04-book-author) { color:var(--text-soft); font-size:1.03rem; line-height:1.75; margin-bottom:18px; }

/* COMPANION */
.month-04-companion { padding:96px 0; background-color:var(--off-white); }
.month-04-companion-inner { max-width:1120px; margin:0 auto; display:grid; grid-template-columns:1.15fr .85fr; gap:72px; align-items:center; }
.month-04-companion-copy h2 { color:var(--teal); font-family:inherit; font-size:clamp(2.5rem,4vw,3rem); font-weight:700; line-height:1.08; margin:0 0 22px; }
.month-04-companion-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.03rem; line-height:1.75; margin-bottom:22px; }
.month-04-companion-preview { display:flex; justify-content:center; }
.month-04-companion-card {
    width:min(100%,390px);
    padding:38px 36px;
    background-color:var(--white);
    border:1px solid rgba(169,138,212,.28);
    border-radius:22px;
}
.month-04-companion-card h3 { color:var(--teal); font-family:inherit; font-size:2rem; line-height:1.1; margin:0 0 24px; }
.month-04-companion-card ul { margin:0; padding-left:1.2rem; }
.month-04-companion-card li { color:var(--text-soft); line-height:1.6; margin-bottom:12px; }

/* MONTH 4 RESPONSIVE */
@media (max-width:1050px) {
    .month-04-page .month-04-hero .month-detail-hero-inner { grid-template-columns:minmax(0,1fr) 320px; gap:48px; }
    .month-04-page .month-04-hero h1 { white-space:normal; }
    .month-04-opening-inner, .month-04-journey, .month-04-book-inner, .month-04-companion-inner { gap:46px; }
    .month-04-feature-row { gap:44px; }
}
@media (max-width:820px) {
    .month-04-page .month-04-hero .month-detail-hero-inner,
    .month-04-opening-inner, .month-04-journey, .month-04-book-inner,
    .month-04-companion-inner, .month-04-feature-row { grid-template-columns:1fr; }
    .month-04-page .month-04-hero .month-detail-hero-art { max-width:300px; margin:12px auto 0; }
    .month-04-opening-path { max-width:620px; }
    .month-04-flow { grid-template-columns:repeat(2,1fr); }
    .month-04-flow-card:nth-of-type(2) { border-right:0; }
    .month-04-flow-card:nth-of-type(-n+2) { border-bottom:1px solid rgba(169,138,212,.25); }
    .month-04-journey-quote { grid-column:1; justify-self:stretch; }
    .month-04-challenge { padding:0 0 44px; border-right:0; border-bottom:1px solid rgba(169,138,212,.24); }
    .month-04-book-visual { order:2; }
    .month-04-book-copy { order:1; }
}
@media (max-width:560px) {
    .month-04-opening, .month-04-map, .month-04-editorial, .month-04-book, .month-04-companion { padding:66px 0; }
    .month-04-opening-copy h2, .month-04-map-heading h2, .month-04-journey-heading h2, .month-04-book-copy h2, .month-04-companion-copy h2 { font-size:2.2rem; }
    .month-04-opening-quote { padding:24px; }
    .month-04-flow { grid-template-columns:1fr; }
    .month-04-flow-card, .month-04-flow-card:nth-of-type(2), .month-04-flow-card:nth-of-type(-n+2) { border-right:0; border-bottom:1px solid rgba(169,138,212,.25); }
    .month-04-flow-card:last-of-type { border-bottom:0; }
    .month-04-companion-card { padding:30px 25px; }
}

/* ============================================================
   MONTH 5: PURPOSE
   ------------------------------------------------------------
   Uses the approved Quitired monthly-page visual system:
   lavender eyebrow + teal editorial headline + lavender italic
   accents, generous white space, restrained borders, and
   a month-specific Purpose diagram.
   ============================================================ */

.month-05-page .month-05-hero { padding-bottom: 78px; }
.month-05-page .month-05-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
}
.month-05-page .month-05-hero .month-detail-hero-art { max-width: 390px; }
.month-05-page .month-05-hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.75rem);
    white-space: nowrap;
}

/* THE MONTH AHEAD */
.month-05-opening { padding: 94px 0 96px; background-color: var(--off-white); }
.month-05-opening-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 74px;
    align-items: center;
}
.month-05-opening-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.45rem, 4.2vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 24px;
}
.month-05-opening-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.76;
    margin-bottom: 18px;
}
.month-05-opening-questions { padding: 0; }
.month-05-question-card {
    position: relative;
    padding: 22px 22px 20px 64px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(169,138,212,.26);
    border-radius: 0;
    box-shadow: none;
}
.month-05-question-card:first-child { border-top: 1px solid rgba(169,138,212,.26); }
.month-05-question-card span {
    position: absolute;
    left: 12px;
    top: 22px;
    color: var(--lavender);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.month-05-question-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: .98rem;
    line-height: 1.62;
}
.month-05-opening-quote {
    max-width: 820px;
    margin: 58px auto 0;
    padding: 28px 34px;
    border-left: 4px solid var(--lavender);
}
.month-05-opening-quote p {
    margin: 0;
    color: var(--lavender-dark);
    font-family: inherit;
    font-size: clamp(1.4rem, 2.7vw, 1.95rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

/* PURPOSE DIAGRAM */
.month-05-purpose-map { padding: 92px 0 96px; background-color: var(--white); }
.month-05-purpose-map-inner { max-width: 1120px; margin: 0 auto; }
.month-05-purpose-map-heading { max-width: 760px; margin-bottom: 46px; }
.month-05-purpose-map-heading h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 18px;
}
.month-05-purpose-map-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}
.month-05-venn {
    position: relative;
    width: min(100%, 650px);
    height: 430px;
    margin: 8px auto 20px;
}
.month-05-venn-circle {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(169,138,212,.38);
    background-color: rgba(245,240,250,.78);
}
.month-05-venn-circle span {
    color: var(--teal);
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.4;
}
.month-05-venn-matters { left: 52px; top: 12px; }
.month-05-venn-energy { right: 52px; top: 12px; }
.month-05-venn-contribute { left: 50%; bottom: 0; transform: translateX(-50%); }
.month-05-venn-contribute span { position: relative; top: 16px; }
.month-05-venn-center {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--lavender);
    box-shadow: 0 10px 28px rgba(70,50,100,.08);
}
.month-05-venn-center span {
    color: var(--teal);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.month-05-venn-note {
    margin: 24px auto 0;
    max-width: 650px;
    color: var(--lavender-dark);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

/* MY JOURNEY + CHALLENGE + EPISODE */
.month-05-editorial { padding: 96px 0; background-color: var(--off-white); }
.month-05-editorial-inner { max-width: 1120px; margin: 0 auto; }
.month-05-journey {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 68px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(169,138,212,.24);
}
.month-05-journey-heading { padding: 0; border: 0; }
.month-05-journey-heading h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
}
.month-05-journey-copy p {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.month-05-journey-quote {
    grid-column: 1 / -1;
    justify-self: end;
    width: min(100%, 700px);
    margin: 0;
    padding: 24px 30px;
    border-left: 3px solid var(--lavender);
    color: var(--lavender-dark);
    font-family: inherit;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}
.month-05-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-top: 72px;
    margin: 0;
}
.month-05-challenge,
.month-05-episode {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.month-05-challenge {
    padding-right: 58px;
    border-right: 1px solid rgba(169,138,212,.24);
}
.month-05-challenge h3,
.month-05-episode h3 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2rem, 3.5vw, 2.55rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 20px;
}
.month-05-challenge-text,
.month-05-episode > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.72;
    margin-bottom: 20px;
}
.month-05-challenge-question {
    margin: 28px 0 0;
    color: var(--lavender-dark);
    font-size: 1.17rem;
    font-style: italic;
    line-height: 1.55;
}

/* BOOK */
.month-05-book { padding: 92px 0; background-color: var(--white); }
.month-05-book-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 72px;
    align-items: center;
}
.month-05-book-visual { display: flex; justify-content: center; }
.month-05-book-placeholder {
    width: min(100%, 300px);
    min-height: 390px;
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background-color: var(--lavender-light);
    border: 1px solid rgba(169,138,212,.3);
}
.month-05-book-placeholder-label {
    color: var(--lavender-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.month-05-book-placeholder-title {
    color: var(--teal);
    font-family: inherit;
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 16px;
}
.month-05-book-placeholder-author {
    color: var(--lavender);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 28px;
}
.month-05-book-placeholder > span:last-child { color: var(--text-soft); font-size: .82rem; }
.month-05-book-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 8px;
}
.month-05-book-author {
    color: var(--lavender);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 24px;
}
.month-05-book-copy > p:not(.section-eyebrow):not(.month-05-book-author) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* COMPANION */
.month-05-companion { padding: 96px 0; background-color: var(--off-white); }
.month-05-companion-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 72px;
    align-items: center;
}
.month-05-companion-copy h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 22px;
}
.month-05-companion-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 22px;
}
.month-05-companion-preview { display: flex; justify-content: center; }
.month-05-companion-card {
    width: min(100%, 390px);
    padding: 38px 36px;
    background-color: var(--white);
    border: 1px solid rgba(169,138,212,.28);
    border-radius: 22px;
}
.month-05-companion-card h3 {
    color: var(--teal);
    font-family: inherit;
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 24px;
}
.month-05-companion-card ul { margin: 0; padding-left: 1.2rem; }
.month-05-companion-card li { color: var(--text-soft); line-height: 1.6; margin-bottom: 12px; }

/* MONTH 5 RESPONSIVE */
@media (max-width: 1050px) {
    .month-05-page .month-05-hero .month-detail-hero-inner { grid-template-columns: minmax(0,1fr) 320px; gap: 48px; }
    .month-05-page .month-05-hero h1 { white-space: normal; }
    .month-05-opening-inner,
    .month-05-journey,
    .month-05-book-inner,
    .month-05-companion-inner { gap: 46px; }
    .month-05-feature-row { gap: 44px; }
}
@media (max-width: 820px) {
    .month-05-page .month-05-hero .month-detail-hero-inner,
    .month-05-opening-inner,
    .month-05-journey,
    .month-05-book-inner,
    .month-05-companion-inner,
    .month-05-feature-row { grid-template-columns: 1fr; }
    .month-05-page .month-05-hero .month-detail-hero-art { max-width: 300px; margin: 12px auto 0; }
    .month-05-opening-questions { max-width: 620px; }
    .month-05-journey-quote { grid-column: 1; justify-self: stretch; }
    .month-05-challenge { padding: 0 0 44px; border-right: 0; border-bottom: 1px solid rgba(169,138,212,.24); }
    .month-05-book-visual { order: 2; }
    .month-05-book-copy { order: 1; }
}
@media (max-width: 560px) {
    .month-05-opening,
    .month-05-purpose-map,
    .month-05-editorial,
    .month-05-book,
    .month-05-companion { padding: 66px 0; }
    .month-05-opening-copy h2,
    .month-05-purpose-map-heading h2,
    .month-05-journey-heading h2,
    .month-05-book-copy h2,
    .month-05-companion-copy h2 { font-size: 2.2rem; }
    .month-05-opening-quote { padding: 24px; }
    .month-05-venn { height: auto; display: grid; gap: 14px; }
    .month-05-venn-circle,
    .month-05-venn-center {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 110px;
        border-radius: 18px;
    }
    .month-05-venn-center { min-height: 84px; }
    .month-05-companion-card { padding: 30px 25px; }
}

/* ============================================================
   MONTH 6 — RELATIONSHIPS
   ------------------------------------------------------------
   Uses the approved Quitired monthly-page visual system:
   lavender eyebrow + teal editorial headline + lavender italic
   accents, generous white space, restrained borders, and
   selective panels. Relationship-specific visuals remain unique.
   ============================================================ */

.month-06-page .month-06-hero { padding-bottom: 78px; }
.month-06-page .month-06-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
}
.month-06-page .month-06-hero .month-detail-hero-art { max-width: 390px; }
.month-06-page .month-06-hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.75rem);
    white-space: nowrap;
}

/* MONTH THOUGHT */
.month-06-statement {
    padding: 76px 0 82px;
    background: var(--off-white);
}
.month-06-statement-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.month-06-statement blockquote {
    margin: 18px auto 0;
    color: var(--lavender-dark);
    font-family: inherit;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
}

/* RELATIONSHIP WEB */
.month-06-web-section {
    padding: 94px 0 98px;
    background: var(--white);
}
.month-06-web-inner { max-width: 1120px; margin: 0 auto; }
.month-06-web-heading { max-width: 760px; margin-bottom: 52px; }
.month-06-web-heading h2,
.month-06-shifts-intro h2,
.month-06-audit-heading h2,
.month-06-journey-title h2,
.month-06-challenge-copy h2,
.month-06-episode-copy h2,
.month-06-book-copy h2,
.month-06-companion-intro h2,
.month-06-closing-inner h2 {
    color: var(--teal);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.08;
}
.month-06-web-heading h2,
.month-06-shifts-intro h2,
.month-06-audit-heading h2,
.month-06-journey-title h2,
.month-06-book-copy h2,
.month-06-companion-intro h2,
.month-06-closing-inner h2 {
    font-size: clamp(2.35rem, 4vw, 3rem);
    margin: 0 0 20px;
}
.month-06-web-heading > p:not(.section-eyebrow),
.month-06-shifts-intro > p:not(.section-eyebrow),
.month-06-audit-heading > p:not(.section-eyebrow),
.month-06-journey-body p,
.month-06-episode-copy > p:not(.section-eyebrow),
.month-06-book-copy > p:not(.section-eyebrow):not(.month-06-book-author),
.month-06-companion-intro > p:not(.section-eyebrow),
.month-06-closing-inner > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.76;
}
.month-06-relationship-web {
    position: relative;
    width: min(100%, 760px);
    min-height: 520px;
    margin: 0 auto;
}
.month-06-web-center,
.month-06-web-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(169,138,212,.34);
    box-shadow: 0 10px 28px rgba(28,75,78,.06);
}
.month-06-web-center {
    left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 128px; height: 128px; border-radius: 50%;
    background: rgba(169,138,212,.10);
    border: 2px solid var(--lavender);
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 1.8px;
    z-index: 3;
}
.month-06-web-node {
    width: 190px;
    min-height: 112px;
    padding: 18px 16px;
    border-radius: 16px;
    z-index: 2;
}
.month-06-web-node strong { color: var(--teal); font-size: 1.04rem; margin-bottom: 7px; }
.month-06-web-node span { color: var(--text-soft); font-size: .86rem; line-height: 1.4; }
.month-06-web-family { left: 50%; top: 0; transform: translateX(-50%); }
.month-06-web-friends { right: 10px; top: 105px; }
.month-06-web-old { right: 30px; bottom: 36px; }
.month-06-web-new { left: 30px; bottom: 36px; }
.month-06-web-community { left: 10px; top: 105px; }
.month-06-web-self { left: 50%; bottom: -4px; transform: translateX(-50%); }
.month-06-web-line {
    position: absolute;
    left: 50%; top: 50%;
    width: 2px;
    height: 150px;
    background: rgba(169,138,212,.28);
    transform-origin: top center;
    z-index: 1;
}
.month-06-line-family { transform: translate(-50%,-100%); }
.month-06-line-friends { transform: rotate(58deg); }
.month-06-line-old { transform: rotate(122deg); }
.month-06-line-new { transform: rotate(238deg); }
.month-06-line-community { transform: rotate(302deg); }
.month-06-line-self { transform: translate(-50%,0); }
.month-06-web-note {
    max-width: 690px;
    margin: 52px auto 0;
    text-align: center;
    color: var(--lavender-dark);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.55;
}

/* WHAT CHANGES */
.month-06-shifts { padding: 94px 0; background: var(--off-white); }
.month-06-shifts-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: start;
}
.month-06-shifts-list { border-top: 1px solid rgba(169,138,212,.26); }
.month-06-shift {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(169,138,212,.26);
}
.month-06-shift > span { color: var(--lavender); font-size: 1.05rem; padding-top: 3px; }
.month-06-shift h3 { color: var(--teal); font-size: 1.28rem; margin: 0 0 8px; }
.month-06-shift p { margin: 0; color: var(--text-soft); font-size: .96rem; line-height: 1.68; }

/* RELATIONSHIP AUDIT */
.month-06-audit { padding: 94px 0 98px; background: var(--white); }
.month-06-audit-inner { max-width: 1120px; margin: 0 auto; }
.month-06-audit-heading { max-width: 760px; margin-bottom: 46px; }
.month-06-audit-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(169,138,212,.26);
    border-bottom: 1px solid rgba(169,138,212,.26);
}
.month-06-audit-column {
    padding: 34px 32px 32px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(169,138,212,.26);
}
.month-06-audit-column:last-child { border-right: 0; }
.month-06-audit-label {
    color: var(--lavender-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin: 0 0 14px;
}
.month-06-audit-column h3 { color: var(--teal); font-size: 1.35rem; line-height: 1.25; margin: 0 0 14px; }
.month-06-audit-column > p:not(.month-06-audit-label) { color: var(--text-soft); font-size: .95rem; line-height: 1.68; margin: 0; }

/* JOURNEY */
.month-06-journey { padding: 96px 0; background: var(--off-white); }
.month-06-journey-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 68px;
}
.month-06-journey-title h2 { margin-bottom: 0; }
.month-06-journey-body p { margin: 0 0 20px; }
.month-06-journey-quote {
    grid-column: 1 / -1;
    justify-self: end;
    width: min(100%, 700px);
    margin: 8px 0 0;
    padding: 24px 30px;
    border-left: 3px solid var(--lavender);
    color: var(--lavender-dark);
    font-family: inherit;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

/* CHALLENGE */
.month-06-challenge { padding: 86px 0; background: var(--white); }
.month-06-challenge-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 34px;
    align-items: start;
}
.month-06-challenge-number {
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(169,138,212,.40);
    border-radius: 50%;
    color: var(--lavender);
    font-size: 1.25rem;
}
.month-06-challenge-copy h2 { font-size: clamp(2.1rem, 3.7vw, 2.75rem); margin: 0 0 18px; }
.month-06-challenge-main { color: var(--lavender-dark); font-size: 1.24rem; font-style: italic; line-height: 1.5; margin: 0 0 18px; }
.month-06-challenge-copy > p:not(.section-eyebrow):not(.month-06-challenge-main) { color: var(--text-soft); font-size: 1rem; line-height: 1.72; margin: 0; }

/* EPISODE */
.month-06-episode { padding: 92px 0; background: var(--off-white); }
.month-06-episode-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 74px;
    align-items: center;
}
.month-06-episode-copy h2 { font-size: clamp(2.2rem, 3.8vw, 2.9rem); margin: 0 0 18px; }
.month-06-episode-copy > p:not(.section-eyebrow) { margin-bottom: 26px; }
.month-06-episode-thought {
    padding: 34px 32px;
    border-left: 3px solid var(--lavender);
}
.month-06-episode-thought span { color: var(--lavender-dark); font-size: .74rem; font-weight: 700; letter-spacing: 1.8px; }
.month-06-episode-thought p { margin: 12px 0 0; color: var(--teal); font-size: 1.38rem; font-style: italic; line-height: 1.45; }

/* BOOK */
.month-06-book { padding: 92px 0; background: var(--white); }
.month-06-book-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 72px;
    align-items: center;
}
.month-06-book-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.month-06-book-visual img {
    width: min(100%, 300px);
    height: auto;
}

.month-06-book-placeholder {
    width: min(100%, 300px);
    min-height: 390px;
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(169,138,212,.08);
    border: 1px solid rgba(169,138,212,.30);
    border-radius: 18px;
}
.month-06-book-placeholder-label { color: var(--lavender-dark); font-size: .72rem; font-weight: 700; letter-spacing: 1.6px; margin-bottom: 24px; }
.month-06-book-placeholder-title { color: var(--teal); font-size: 1.7rem; line-height: 1.2; margin-bottom: 14px; }
.month-06-book-placeholder-author { color: var(--text-soft); font-size: .95rem; margin-bottom: 30px; }
.month-06-book-placeholder > span:last-child { color: var(--lavender-dark); font-size: .82rem; font-style: italic; }
.month-06-book-copy h2 { margin-bottom: 8px; }
.month-06-book-author { color: var(--lavender-dark); font-size: 1rem; font-style: italic; margin: 0 0 24px; }
.month-06-book-copy > p:not(.section-eyebrow):not(.month-06-book-author) { margin-bottom: 18px; }

/* COMPANION */
.month-06-companion { padding: 96px 0; background: var(--off-white); }
.month-06-companion-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 74px;
    align-items: start;
}
.month-06-companion-intro h2 { margin-bottom: 18px; }
.month-06-companion-intro > p:not(.section-eyebrow) { margin-bottom: 28px; }
.month-06-companion-content {
    padding: 34px 34px 32px;
    background: var(--white);
    border: 1px solid rgba(169,138,212,.26);
    border-radius: 18px;
}
.month-06-companion-heading h3 { color: var(--teal); font-size: 1.65rem; margin: 0 0 18px; }
.month-06-companion-list ul { margin: 0; padding-left: 20px; }
.month-06-companion-list li { color: var(--text-soft); font-size: .95rem; line-height: 1.62; margin-bottom: 12px; }
.month-06-companion-list li:last-child { margin-bottom: 0; }

/* CLOSING REFLECTION */
.month-06-closing { padding: 82px 0 86px; background: var(--white); }
.month-06-closing-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.month-06-closing-inner h2 { margin-bottom: 16px; }
.month-06-closing-inner > p:not(.section-eyebrow) { color: var(--lavender-dark); font-style: italic; }

/* SHARED MONTH-6 BUTTON + NEXT MONTH TREATMENT */
.month-06-page .month-companion-link,
.month-06-page .month-next-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}
.month-06-page .month-companion-link:hover,
.month-06-page .month-next-link:hover { transform: translateY(-1px); opacity: .92; }
.month-06-page .month-next { padding: 76px 0; }
.month-06-page .month-next h2 {
    color: var(--teal);
    font-family: inherit;
    font-size: clamp(2rem, 3.6vw, 2.65rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 10px;
}
.month-06-page .month-next-tagline { color: var(--lavender-dark); font-style: italic; margin-bottom: 10px; }

/* MONTH 6 — TABLET */
@media (max-width: 820px) {
    .month-06-page .month-06-hero .month-detail-hero-inner { grid-template-columns: minmax(0,1fr) 320px; gap: 48px; }
    .month-06-page .month-06-hero h1 { white-space: normal; }
    .month-06-shifts-inner,
    .month-06-journey-inner,
    .month-06-episode-inner,
    .month-06-book-inner,
    .month-06-companion-inner { grid-template-columns: 1fr; gap: 46px; }
    .month-06-audit-columns { grid-template-columns: 1fr; }
    .month-06-audit-column { border-right: 0; border-bottom: 1px solid rgba(169,138,212,.26); }
    .month-06-audit-column:last-child { border-bottom: 0; }
    .month-06-relationship-web { transform: scale(.9); transform-origin: top center; margin-bottom: -42px; }
    .month-06-page .month-next-inner,
.month-07-page .month-next-inner,
.month-08-page .month-next-inner { grid-template-columns: 140px 1fr; }
    .month-06-page .month-next-action,
.month-07-page .month-next-action { grid-column: 2; }
    .month-06-page .month-next-image,
.month-07-page .month-next-image,
.month-08-page .month-next-image { max-width: 140px; }
}

/* MONTH 6 — PHONE */
@media (max-width: 560px) {
    .month-06-statement,
    .month-06-web-section,
    .month-06-shifts,
    .month-06-audit,
    .month-06-journey,
    .month-06-challenge,
    .month-06-episode,
    .month-06-book,
    .month-06-companion,
    .month-06-closing { padding: 66px 0; }
    .month-06-web-heading h2,
    .month-06-shifts-intro h2,
    .month-06-audit-heading h2,
    .month-06-journey-title h2,
    .month-06-book-copy h2,
    .month-06-companion-intro h2,
    .month-06-closing-inner h2 { font-size: 2.2rem; }
    .month-06-relationship-web {
        position: static;
        transform: none;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 0;
    }
    .month-06-web-center,
    .month-06-web-node {
        position: static;
        transform: none;
        width: 100%;
        min-height: 0;
        height: auto;
        border-radius: 14px;
        padding: 20px;
    }
    .month-06-web-line { display: none; }
    .month-06-web-note { margin-top: 28px; }
    .month-06-challenge-inner { grid-template-columns: 1fr; gap: 20px; }
    .month-06-challenge-number { width: 48px; height: 48px; }
    .month-06-companion-content { padding: 28px 24px; }
    .month-06-page .month-next-inner,
.month-07-page .month-next-inner,
.month-08-page .month-next-inner { grid-template-columns: 1fr; text-align: center; }
    .month-06-page .month-next-action,
.month-07-page .month-next-action,
.month-08-page .month-next-action { grid-column: 1; }
    .month-06-page .month-next-image,
.month-07-page .month-next-image,
.month-08-page .month-next-image { max-width: 150px; }
}

/* ============================================================
   MONTH 7: FUN
   ------------------------------------------------------------
   Playful editorial layout using shape, movement, spacing,
   typography, and asymmetry while staying within the
   Quitired teal + lavender visual system.
   ============================================================ */


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.month-07-page .month-07-hero {
    padding-bottom: 80px;
}

.month-07-page .month-07-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 95px;
}

.month-07-page .month-07-hero .month-detail-hero-art {
    max-width: 390px;
}

.month-07-page .month-07-hero h1 {
    white-space: nowrap;
    font-size: clamp(3.3rem, 5vw, 4.8rem);
}


/* ============================================================
   MONTH STATEMENT
   ============================================================ */

.month-07-statement {
    padding: 70px 0 76px;

    background:
        linear-gradient(
            135deg,
            rgba(238, 231, 247, 0.7),
            rgba(255, 255, 255, 1)
        );

    border-top:
        1px solid
        rgba(169, 138, 212, 0.18);

    border-bottom:
        1px solid
        rgba(169, 138, 212, 0.18);
}


.month-07-statement-inner {
    max-width: 940px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 32px;

    text-align: center;
}


.month-07-statement blockquote {
    margin: 0;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

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

    font-weight: 600;

    line-height: 1.14;
}


.month-07-statement-spark {
    color: var(--lavender);

    font-size: 1.8rem;
}


/* ============================================================
   PERMISSION SECTION
   ============================================================ */

.month-07-permission {
    padding: 95px 0;

    background-color: var(--white);
}


.month-07-permission-inner {
    max-width: 1080px;

    display: grid;

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

    gap: 75px;

    align-items: start;
}


.month-07-permission-heading h2 {
    margin: 8px 0 0;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3.1rem);

    font-weight: 600;

    line-height: 1.05;
}


.month-07-permission-copy {
    padding-top: 12px;
}


.month-07-permission-copy p {
    color: var(--text-dark);

    font-size: 1rem;

    line-height: 1.78;
}


.month-07-permission-slip {
    grid-column: 1 / -1;

    width: min(100%, 820px);

    margin: 10px auto 0;

    padding: 38px 48px;

    background:
        linear-gradient(
            135deg,
            rgba(238, 231, 247, 0.9),
            rgba(255, 255, 255, 1)
        );

    border:
        1px dashed
        rgba(169, 138, 212, 0.65);

    border-radius: 22px;

    transform: rotate(-5deg);

    text-align: center;
}


.month-07-permission-slip p {
    margin: 0 0 15px;

    color: var(--lavender-dark);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.month-07-permission-slip strong {
    display: block;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;
}


/* ============================================================
   FUN MENU
   ============================================================ */

.month-07-menu {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            rgba(250, 250, 248, 1),
            rgba(238, 231, 247, 0.45)
        );
}


.month-07-menu-inner {
    max-width: 1140px;
}


.month-07-menu-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.month-07-menu-heading h2 {
    margin: 8px 0 20px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(3rem, 5vw, 4.5rem);

    font-weight: 600;

    line-height: 1.05;
}


.month-07-menu-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.75;
}


.month-07-menu-grid {
    position: relative;

    width: min(100%, 920px);
    min-height: 470px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;
}


.month-07-menu-item {
    position: absolute;

    width: 285px;
    min-height: 355px;

    padding: 38px 30px;

    background-color: var(--white);

    border:
        1px solid
        rgba(169, 138, 212, 0.32);

    border-radius: 24px;

    box-shadow:
        0 16px 34px
        rgba(0, 0, 0, 0.10);

    overflow: hidden;

    transform-origin: bottom center;

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

.month-07-menu-item:nth-child(1) {
    transform:
        translateX(-255px)
        translateY(30px)
        rotate(-10deg);

    z-index: 1;
}


.month-07-menu-item:nth-child(2) {
    transform:
        translateX(-90px)
        translateY(0)
        rotate(-3deg);

    z-index: 2;
}


.month-07-menu-item:nth-child(3) {
    transform:
        translateX(90px)
        translateY(0)
        rotate(3deg);

    z-index: 3;
}


.month-07-menu-item:nth-child(4) {
    transform:
        translateX(255px)
        translateY(30px)
        rotate(10deg);

    z-index: 4;
}
.month-07-menu-item:hover {
    z-index: 10;

    box-shadow:
        0 22px 44px
        rgba(0, 0, 0, 0.14);
}


.month-07-menu-item:nth-child(1):hover {
    transform:
        translateX(-255px)
        translateY(5px)
        rotate(-7deg);
}


.month-07-menu-item:nth-child(2):hover {
    transform:
        translateX(-90px)
        translateY(-20px)
        rotate(-1deg);
}


.month-07-menu-item:nth-child(3):hover {
    transform:
        translateX(90px)
        translateY(-20px)
        rotate(1deg);
}


.month-07-menu-item:nth-child(4):hover {
    transform:
        translateX(255px)
        translateY(5px)
        rotate(7deg);
}



.month-07-menu-symbol {
    display: inline-flex;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background-color: var(--lavender-light);

    color: var(--lavender-dark);

    font-size: 1.15rem;

    font-weight: 700;
}


.month-07-menu-item h3 {
    margin: 0 0 15px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 2.5rem;

    font-weight: 600;
}


.month-07-menu-item p {
    margin: 0;

    color: var(--text-dark);

    font-size: 0.98rem;

    line-height: 1.7;
}


/* ============================================================
   FUN DOES NOT HAVE TO BE...
   ============================================================ */

.month-07-not-required {
    padding: 90px 0;

    background-color: var(--white);
}


.month-07-not-required-inner {
    max-width: 1050px;

    text-align: center;
}


.month-07-not-required-title h2 {
    margin: 8px 0 38px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(3rem, 5vw, 4.5rem);

    font-weight: 600;
}


.month-07-not-required-words {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 16px 18px;

    max-width: 900px;

    margin: 0 auto 38px;
}


.month-07-not-required-words span {
    display: inline-block;

    padding: 13px 22px;

    border-radius: 999px;

    background-color: var(--lavender-light);

    color: var(--teal);

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.2;
}


.month-07-not-required-words span:nth-child(even) {
    background-color:
        rgba(8, 119, 138, 0.08);

    color: var(--lavender-dark);
}


.month-07-not-required-words span:nth-child(2) {
    transform: rotate(-2deg);
}


.month-07-not-required-words span:nth-child(3) {
    transform: rotate(1.5deg);
}


.month-07-not-required-words span:nth-child(5) {
    transform: rotate(-1.5deg);
}


.month-07-not-required-bottom {
    margin: 0;

    color: var(--lavender-dark);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 2.2rem;

    font-weight: 600;
}


/* ============================================================
   MY JOURNEY
   ============================================================ */

.month-07-journey {
    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(238, 231, 247, 0.48),
            rgba(250, 250, 248, 1)
        );
}


.month-07-journey-inner {
    max-width: 1000px;

    display: grid;

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

    gap: 80px;

    align-items: center;
}


.month-07-journey-title h2 {
    margin: 8px 0 0;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.05;
}


.month-07-journey-copy {
    padding-left: 42px;

    border-left:
        1px solid
        rgba(169, 138, 212, 0.28);
}

.month-07-journey-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.month-07-journey-copy p {
    color: var(--text-dark);

    font-size: 1rem;

    line-height: 1.78;
}


.month-07-journey-quote {
    grid-column: 1 / -1;

    width: min(100%, 860px);

    margin: 15px auto 0;

    padding-top: 36px;

    border-top:
        1px solid
        rgba(169, 138, 212, 0.24);

    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 2.15rem;

    font-weight: 600;

    line-height: 1.35;

    text-align: center;
}


/* ============================================================
   CHALLENGE
   ============================================================ */

.month-07-challenge {
    padding: 88px 0;

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );
}


.month-07-challenge-inner {
    max-width: 920px;

    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 48px;

    align-items: center;
}


.month-07-challenge-burst {
    display: flex;

    justify-content: center;
}


.month-07-challenge-burst span {
    width: 110px;
    height: 110px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color:
        rgba(255, 255, 255, 0.1);

    border:
        2px dashed
        rgba(255, 255, 255, 0.72);

    color: var(--white);

    font-size: 12rem;
}


.month-07-challenge-copy .section-eyebrow {
    color: var(--lavender-light);
}


.month-07-challenge-copy h2 {
    margin: 8px 0 15px;

    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.05;
}


.month-07-challenge-main {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.5;
}


.month-07-challenge-copy > p:last-child {
    margin-bottom: 0;

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

    line-height: 1.7;
}


/* ============================================================
   EPISODE
   ============================================================ */

.month-07-episode {
    padding: 100px 0;

    background-color: var(--white);
}


.month-07-episode-inner {
    max-width: 1050px;

    display: grid;

    grid-template-columns:
        minmax(280px, 0.75fr)
        minmax(0, 1.25fr);

    gap: 85px;

    align-items: center;
}


.month-07-episode-ticket {
    position: relative;

    min-height: 300px;

    padding: 45px 34px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(238, 231, 247, 0.9),
            rgba(255, 255, 255, 1)
        );

    border:
        2px dashed
        rgba(169, 138, 212, 0.5);

    border-radius: 28px;

    transform: rotate(-1.5deg);
}


.month-07-episode-ticket strong {
    margin: 18px 0;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 4.4rem;

    font-weight: 600;

    line-height: 1;
}


.month-07-ticket-small {
    color: var(--lavender-dark);

    font-size: 0.74rem;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.month-07-episode-copy h2 {
    margin: 8px 0 20px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;
}


.month-07-episode-copy > p:not(.section-eyebrow) {
    color: var(--text-dark);

    font-size: 1rem;

    line-height: 1.75;
}


/* ============================================================
   BOOK
   ============================================================ */

.month-07-book {
    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            rgba(238, 231, 247, 0.38),
            rgba(255, 255, 255, 1)
        );
}


.month-07-book-inner {
    max-width: 1080px;

    display: grid;

    grid-template-columns:
        0.72fr 1.28fr;

    gap: 85px;

    align-items: center;
}


.month-07-book-visual {
    display: flex;

    justify-content: center;
}


.month-07-book-placeholder {
    width: min(100%, 310px);

    aspect-ratio: 0.74;

    padding: 42px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background-color: var(--white);

    border:
        1px solid
        rgba(169, 138, 212, 0.28);

    border-radius: 20px;

    box-shadow:
        0 10px 26px
        rgba(0, 0, 0, 0.04);
}


.month-07-book-placeholder-label {
    margin-bottom: 22px;

    color: var(--teal);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.12em;
}


.month-07-book-placeholder-title {
    margin-bottom: 16px;

    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.9rem;

    font-weight: 600;
}


.month-07-book-placeholder-author {
    margin-bottom: 28px;

    color: var(--text-dark);

    font-size: 0.95rem;

    font-weight: 700;
}


.month-07-book-placeholder > span:last-child {
    color: var(--text-soft);

    font-size: 0.85rem;
}


.month-07-book-copy h2 {
    margin: 8px 0 8px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;
}


.month-07-book-author {
    margin-bottom: 28px;

    color: var(--lavender-dark);

    font-weight: 700;
}


.month-07-book-copy > p:not(.section-eyebrow):not(.month-07-book-author) {
    color: var(--text-dark);

    font-size: 1rem;

    line-height: 1.75;
}


/* ============================================================
   COMPANION
   ============================================================ */

.month-07-companion {
    padding: 100px 0;

    background-color: var(--white);
}


.month-07-companion-inner {
    max-width: 1080px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 80px;

    align-items: center;
}


.month-07-companion-copy h2 {
    margin: 8px 0 22px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;
}


.month-07-companion-copy > p:not(.section-eyebrow) {
    color: var(--text-dark);

    line-height: 1.75;
}


.month-07-companion-preview {
    padding: 42px 36px;

    background:
        linear-gradient(
            145deg,
            rgba(238, 231, 247, 0.65),
            rgba(250, 250, 248, 1)
        );

    border:
        1px solid
        rgba(169, 138, 212, 0.22);

    border-radius: 26px;

    transform: rotate(0.7deg);
}


.month-07-companion-preview h3 {
    margin: 8px 0 22px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 2rem;

    font-weight: 600;
}


.month-07-companion-preview ul {
    margin: 0;

    padding-left: 22px;
}


.month-07-companion-preview li {
    margin-bottom: 15px;

    color: var(--text-dark);

    font-size: 0.97rem;

    line-height: 1.58;
}


/* ============================================================
   CLOSING
   ============================================================ */

.month-07-closing {
    padding: 85px 0;

    background:
        linear-gradient(
            180deg,
            rgba(250, 250, 248, 1),
            rgba(238, 231, 247, 0.45)
        );

    text-align: center;
}


.month-07-closing-inner {
    max-width: 820px;
}


.month-07-closing-inner > span {
    color: var(--lavender);

    font-size: 1.35rem;
}


.month-07-closing h2 {
    margin: 12px 0;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.08;
}


/* ============================================================
   MONTH 7 - TABLET
   ============================================================ */

@media (max-width: 900px) {


    .month-07-page .month-07-hero .month-detail-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .month-07-page .month-07-hero h1 {
        white-space: normal;
    }


    .month-07-page .month-07-hero .month-detail-hero-art {
        margin: 0 auto;
    }


    .month-07-permission-inner,
    .month-07-journey-inner,
    .month-07-episode-inner,
    .month-07-book-inner,
    .month-07-companion-inner {
        width: 84%;

        max-width: 690px;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .month-07-permission-slip {
        grid-column: auto;
    }


    .month-07-menu-heading {
        width: 84%;
    }


.month-07-menu-grid {
    position: static;

    width: 84%;
    max-width: 690px;
    min-height: 0;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;

    gap: 24px;
}
    


    .month-07-menu-item {
    position: relative;

    width: 100%;
    min-height: auto;

    transform: none !important;
}


    .month-07-journey-copy {
        padding-left: 0;
        padding-top: 30px;

        border-left: none;

        border-top:
            1px solid
            rgba(169, 138, 212, 0.24);
    }


    .month-07-challenge-inner {
        width: 84%;

        max-width: 690px;
    }


    .month-07-episode-ticket {
        max-width: 420px;

        margin: 0 auto;

        transform: rotate(-1deg);
    }


    .month-07-book-placeholder {
        max-width: 270px;
    }


    .month-07-companion-preview {
        transform: none;
    }

}


/* ============================================================
   MONTH 7 - PHONE
   ============================================================ */

@media (max-width: 600px) {


    .month-07-statement,
    .month-07-permission,
    .month-07-menu,
    .month-07-not-required,
    .month-07-journey,
    .month-07-challenge,
    .month-07-episode,
    .month-07-book,
    .month-07-companion,
    .month-07-closing {
        padding: 65px 0;
    }


    .month-07-statement-inner {
        width: 88%;

        gap: 14px;
    }


    .month-07-statement blockquote {
        font-size: 2.45rem;
    }


    .month-07-statement-spark {
        font-size: 1.2rem;
    }


    .month-07-permission-inner,
    .month-07-journey-inner,
    .month-07-episode-inner,
    .month-07-book-inner,
    .month-07-companion-inner {
        width: 88%;
    }


    .month-07-permission-heading h2,
    .month-07-menu-heading h2,
    .month-07-not-required-title h2,
    .month-07-journey-title h2,
    .month-07-challenge-copy h2,
    .month-07-episode-copy h2,
    .month-07-book-copy h2,
    .month-07-companion-copy h2,
    .month-07-closing h2 {
        font-size: 2.85rem;
    }


    .month-07-permission-slip {
        padding: 30px 24px;

        transform: none;
    }


    .month-07-permission-slip strong {
        font-size: 2.1rem;
    }


    .month-07-menu-heading {
        width: 88%;
    }


    .month-07-menu-grid {
        width: 88%;
    }


    .month-07-menu-item {
        min-height: auto;

        padding: 30px 25px;
    }


    .month-07-menu-item h3 {
        font-size: 2.25rem;
    }


    .month-07-not-required-inner {
        width: 88%;
    }


    .month-07-not-required-words {
        gap: 12px;
    }


    .month-07-not-required-words span {
        padding: 11px 17px;

        font-size: 0.92rem;

        transform: none !important;
    }


    .month-07-not-required-bottom {
        font-size: 1.9rem;
    }


    .month-07-journey-quote {
        padding-left: 12px;
        padding-right: 12px;

        font-size: 1.85rem;
    }


    .month-07-challenge-inner {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 28px;

        text-align: center;
    }


    .month-07-challenge-burst {
        justify-content: center;
    }


    .month-07-challenge-burst span {
        width: 88px;
        height: 88px;
    }


    .month-07-episode-ticket {
        min-height: 235px;

        padding: 35px 25px;

        transform: none;
    }


    .month-07-episode-ticket strong {
        font-size: 3.7rem;
    }


    .month-07-book-placeholder {
        max-width: 235px;
    }


    .month-07-companion-preview {
        padding: 34px 26px;
    }


    .month-07-companion-preview h3 {
        font-size: 2.7rem;
    }

}
/* ============================================================
   MONTH 8: CURIOSITY
   ------------------------------------------------------------
   Shared Quitired editorial system with a few Curiosity-specific
   visual moments. Typography stays aligned with Months 1-7.
   ============================================================ */

/* HERO */
.month-08-page .month-08-hero {
    padding-bottom: 80px;
}

.month-08-page .month-08-hero .month-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 90px;
}

.month-08-page .month-08-hero .month-detail-hero-art {
    max-width: 390px;
}

.month-08-page .month-08-hero h1 {
    white-space: nowrap;
    font-size: clamp(3.3rem, 5vw, 4.8rem);
}

/* THE MONTH AHEAD */
.month-08-opening {
    padding: 94px 0;
    background-color: var(--white);
}

.month-08-opening-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 78px;
    align-items: start;
}

.month-08-opening-left {
    padding-right: 52px;
    border-right: 1px solid rgba(169,138,212,.26);
}

.month-08-opening-left h2,
.month-08-statement-copy h2,
.month-08-journey-question h2,
.month-08-challenge-card h2,
.month-08-episode h2,
.month-08-book-copy h2,
.month-08-companion-copy h2,
.month-08-page .month-next-copy h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.08;
}

.month-08-opening-left h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.55rem, 4vw, 3.25rem);
}

.month-08-opening-lead {
    margin: 0;
    color: var(--lavender);
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.6;
}

.month-08-opening-right {
    align-self: center;
    padding-top: 0;
}

.month-08-opening-right p {
    margin: 0 0 20px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.78;
}

/* THIS MONTH'S THOUGHT */
.month-08-statement {
    padding: 92px 0;
    background: linear-gradient(135deg, rgba(238,231,247,.7), rgba(255,255,255,1));
    border-top: 1px solid rgba(169,138,212,.18);
    border-bottom: 1px solid rgba(169,138,212,.18);
}

.month-08-statement-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 300px;
    gap: 78px;
    align-items: center;
}

.month-08-statement-copy h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.7rem, 4.5vw, 3.7rem);
}

.month-08-statement-copy > p:not(.section-eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.month-08-magnify-wrap {
    display: flex;
    justify-content: center;
}

.month-08-magnify {
    position: relative;
    width: 300px;
    height: 300px;
}

.month-08-magnify-lens {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 235px;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 5px solid var(--teal);
    border-radius: 50%;
    background-color: rgba(255,255,255,.88);
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
    text-align: center;
}

.month-08-magnify-lens p {
    margin: 0;
    color: var(--teal);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.55;
}

.month-08-magnify-handle {
    position: absolute;
    top: 196px;
    left: 194px;
    z-index: 1;
    width: 88px;
    height: 18px;
    border-radius: 999px;
    background-color: var(--lavender);
    transform: rotate(45deg);
    transform-origin: left center;
}

/* JOURNEY */
.month-08-journey {
    padding: 96px 0;
    background-color: var(--white);
}

.month-08-journey-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 78px;
    align-items: start;
}

.month-08-journey-question h2 {
    margin: 8px 0 0;
    font-size: clamp(2.55rem, 4vw, 3.25rem);
}

.month-08-journey-copy {
    padding-top: 8px;
}

.month-08-journey-copy p {
    margin: 0 0 20px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.78;
}

/* CHALLENGE */
.month-08-challenge {
    padding: 88px 0 94px;
    background-color: var(--off-white);
}

.month-08-challenge-inner {
    max-width: 920px;
}

.month-08-challenge-card {
    position: relative;
    padding: 54px 64px;
    background-color: var(--white);
    border: 1px solid rgba(169,138,212,.34);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(0,0,0,.06);
    text-align: center;
}

.month-08-challenge-card .section-eyebrow {
    display: block;
    width: 100%;
    margin: 0 auto 18px;
    text-align: center;
}

.month-08-challenge-card h2 {
    margin: 8px auto 22px;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    text-align: center;
}

.month-08-challenge-prompt {
    max-width: 640px;
    margin: 0 auto 24px;
    color: var(--lavender-dark);
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.month-08-challenge-card > p:last-child {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-soft);
    line-height: 1.72;
    text-align: center;
}

/* EPISODE */
.month-08-episode {
    padding: 92px 0;
    background-color: var(--white);
}

.month-08-episode .month-editorial-episode {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 68px;
    align-items: center;
}

.month-08-episode h2 {
    margin: 8px 0 18px;
    font-size: clamp(2.5rem, 4vw, 3.15rem);
}

.month-08-episode .month-editorial-episode-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 24px;
}

.month-08-episode .month-editorial-video-placeholder {
    min-height: 260px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(32,128,123,.94), rgba(169,138,212,.8));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.month-08-episode .month-editorial-video-placeholder span {
    color: var(--white);
    font-weight: 700;
    letter-spacing: .05em;
}

/* BOOK */
.month-08-book {
    padding: 94px 0;
    background-color: var(--off-white);
}

.month-08-book-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 78px;
    align-items: center;
}

.month-08-book-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.month-08-book-image {
    width: 250px;
    max-width: 100%;
    height: auto;
}

.month-08-book-placeholder {
    width: 250px;
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border: 1px solid rgba(169,138,212,.35);
    border-radius: 18px;
    background: linear-gradient(155deg, var(--white), var(--lavender-light));
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
    color: var(--teal);
    text-align: center;
    font-weight: 700;
}

.month-08-book-copy h2 {
    margin: 8px 0 8px;
    font-size: clamp(2.55rem, 4vw, 3.25rem);
}

.month-08-book-author {
    margin: 0 0 24px;
    color: var(--lavender-dark);
    font-style: italic;
}

.month-08-book-copy > p:not(.section-eyebrow):not(.month-08-book-author) {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 18px;
}

/* COMPANION */
.month-08-companion {
    padding: 94px 0 100px;
    background-color: var(--white);
}

.month-08-companion-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 74px;
    align-items: start;
}

.month-08-companion-copy h2 {
    margin: 8px 0 22px;
    font-size: clamp(2.55rem, 4vw, 3.25rem);
}

.month-08-companion-copy > p:not(.section-eyebrow) {
    margin-bottom: 24px;
    color: var(--text-soft);
    line-height: 1.75;
}

.month-08-companion-details {
    padding: 38px 40px;
    border-radius: 20px;
    background-color: var(--lavender-light);
}

.month-08-companion-details ul {
    margin: 18px 0 0;
    padding-left: 22px;
}

.month-08-companion-details li {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.58;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .month-08-page .month-08-hero .month-detail-hero-inner,
    .month-08-opening-inner,
    .month-08-statement-inner,
    .month-08-journey-inner,
    .month-08-episode .month-editorial-episode,
    .month-08-companion-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .month-08-opening-left {
        padding-right: 0;
        border-right: 0;
    }

    .month-08-magnify-wrap,
    .month-08-book-visual {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .month-08-opening,
    .month-08-statement,
    .month-08-journey,
    .month-08-challenge,
    .month-08-episode,
    .month-08-book,
    .month-08-companion {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .month-08-challenge-card {
        padding: 42px 26px;
    }

    .month-08-magnify {
        transform: scale(.9);
        transform-origin: left top;
    }

    .month-08-companion-details {
        padding: 30px 24px;
    }
}
/* ============================================================
   MONTH 9: CONTRIBUTION
   Revised editorial treatment
   ============================================================ */

.month-09-page .month-09-hero { background-color: var(--white); }
.month-09-page .month-09-hero .month-detail-hero-art img { display:block; width:100%; max-width:390px; height:auto; margin:0 auto; }

/* MONTH STATEMENT */
.month-09-page .month-09-statement { padding:54px 0; background:var(--off-white); border-top:1px solid rgba(169,138,212,.16); border-bottom:1px solid rgba(169,138,212,.16); }
.month-09-page .month-09-statement-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:.6fr 1.4fr; gap:58px; align-items:center; }
.month-09-page .month-09-statement-label .section-eyebrow { margin-bottom:0; }
.month-09-page .month-09-statement-copy blockquote { margin:0; color:var(--teal); font-size:clamp(2rem,3.5vw,2.75rem); font-style:italic; line-height:1.34; }

/* OPENING */
.month-09-page .month-09-opening { padding:92px 0; background:var(--white); }
.month-09-page .month-09-opening-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:.9fr 1.1fr; gap:76px; align-items:start; }
.month-09-page .month-09-opening-title h2 { font-size:clamp(2.45rem,4.2vw,3.15rem); line-height:1.12; margin-bottom:0; }
.month-09-page .month-09-opening-copy p { color:var(--text-soft); font-size:1.05rem; line-height:1.78; margin-bottom:18px; }

/* OFFERINGS */
.month-09-page .month-09-offerings { padding:94px 0; background:var(--off-white); }
.month-09-page .month-09-offerings-inner { max-width:1120px; margin:0 auto; }
.month-09-page .month-09-offerings-heading { max-width:700px; margin-bottom:52px; }
.month-09-page .month-09-offerings-heading h2 { font-size:clamp(2.5rem,4vw,3.05rem); margin-bottom:18px; }
.month-09-page .month-09-offerings-heading > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.04rem; line-height:1.72; }
.month-09-page .month-09-offerings-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid rgba(8,119,138,.22); border-bottom:1px solid rgba(8,119,138,.22); }
.month-09-page .month-09-offering { padding:34px 30px; min-height:235px; }
.month-09-page .month-09-offering + .month-09-offering { border-left:1px solid rgba(169,138,212,.28); }
.month-09-page .month-09-offering h3 { color:var(--teal); font-size:1.55rem; margin-bottom:16px; }
.month-09-page .month-09-offering p { color:var(--text-soft); line-height:1.7; }
.month-09-page .month-09-offerings-note { margin-top:28px; color:var(--lavender); font-size:1.05rem; font-style:italic; }

/* CONTRIBUTION WITHOUT OBLIGATION */
.month-09-page .month-09-boundaries { padding:96px 0; background:var(--white); }
.month-09-page .month-09-boundaries-inner { max-width:1060px; margin:0 auto; display:grid; grid-template-columns:.55fr 1.45fr; gap:70px; align-items:center; }
.month-09-page .month-09-boundaries-feature { width:220px; height:220px; border:7px solid var(--teal); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto; }
.month-09-page .month-09-boundaries-feature span { color:var(--lavender); font-size:2rem; font-weight:700; letter-spacing:.16em; }
.month-09-page .month-09-boundaries-copy h2 { font-size:clamp(2.4rem,4vw,3rem); margin-bottom:20px; }
.month-09-page .month-09-boundaries-copy > p:not(.section-eyebrow):not(.month-09-boundaries-emphasis) { color:var(--text-soft); font-size:1.04rem; line-height:1.72; margin-bottom:18px; }
.month-09-page .month-09-boundaries-emphasis { margin-top:26px; color:var(--lavender); font-size:1.28rem; font-style:italic; font-weight:600; }

/* SMALL CONTRIBUTIONS */
.month-09-page .month-09-small { padding:90px 0; background:var(--off-white); }
.month-09-page .month-09-small-inner { max-width:1020px; margin:0 auto; display:grid; grid-template-columns:.9fr 1.1fr; gap:72px; align-items:start; }
.month-09-page .month-09-small-heading h2 { font-size:clamp(2.35rem,4vw,2.95rem); line-height:1.16; }
.month-09-page .month-09-small-list { border-top:1px solid rgba(169,138,212,.3); }
.month-09-page .month-09-small-item { display:grid; grid-template-columns:28px 1fr; gap:16px; padding:18px 0; border-bottom:1px solid rgba(169,138,212,.24); }
.month-09-page .month-09-small-item span { color:var(--lavender); line-height:1.6; }
.month-09-page .month-09-small-item p { color:var(--text-soft); line-height:1.65; }

/* JOURNEY */
.month-09-page .month-09-journey { padding:96px 0; background:var(--white); }
.month-09-page .month-09-journey-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:.95fr 1.05fr; gap:72px; align-items:start; }
.month-09-page .month-09-journey-title h2 { font-size:clamp(2.35rem,4vw,3rem); line-height:1.15; }
.month-09-page .month-09-journey-copy p { color:var(--text-soft); font-size:1.04rem; line-height:1.75; margin-bottom:18px; }
.month-09-page .month-09-journey-quote { grid-column:1/-1; max-width:780px; margin:26px auto 0; padding:28px 0 0; border-top:1px solid rgba(169,138,212,.35); color:var(--lavender); font-size:clamp(1.7rem,3vw,2.25rem); font-style:italic; line-height:1.38; text-align:center; }

/* CHALLENGE */
.month-09-page .month-09-challenge { padding:88px 0; background:var(--lavender-light); }
.month-09-page .month-09-challenge-inner { max-width:980px; margin:0 auto; display:grid; grid-template-columns:90px 1fr; gap:34px; align-items:center; }
.month-09-page .month-09-challenge-label { display:flex; align-items:center; justify-content:center; }
.month-09-page .month-09-challenge-label span { width:62px; height:62px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--white); color:var(--teal); font-size:1.5rem; }
.month-09-page .month-09-challenge-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:14px; }
.month-09-page .month-09-challenge-main { max-width:760px; color:var(--lavender-dark); font-size:1.3rem; font-weight:700; line-height:1.45; margin-bottom:16px; }
.month-09-page .month-09-challenge-copy > p:last-child { max-width:760px; color:var(--text-soft); line-height:1.68; }

/* EPISODE */
.month-09-page .month-09-episode { padding:94px 0; background:var(--white); }
.month-09-page .month-09-episode-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:1.15fr .85fr; gap:72px; align-items:center; }
.month-09-page .month-09-episode-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:18px; }
.month-09-page .month-09-episode-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.03rem; line-height:1.72; margin-bottom:24px; }
.month-09-page .month-09-episode-pullquote { padding:42px 36px; border-left:4px solid var(--lavender); background:var(--off-white); }
.month-09-page .month-09-episode-pullquote p { margin:0; color:var(--teal); font-size:1.7rem; font-style:italic; line-height:1.42; }

/* BOOK */
.month-09-page .month-09-book { padding:94px 0; background:var(--off-white); }
.month-09-page .month-09-book-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:.72fr 1.28fr; gap:76px; align-items:center; }
.month-09-page .month-09-book-visual { display:flex; justify-content:center; }
.month-09-page .month-09-book-placeholder { width:min(100%,300px); min-height:390px; padding:38px 28px; border:1px solid rgba(169,138,212,.38); border-radius:18px; background:var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.month-09-page .month-09-book-placeholder-label { margin-bottom:24px; color:var(--teal); font-size:.75rem; font-weight:700; letter-spacing:.12em; }
.month-09-page .month-09-book-placeholder-title { margin-bottom:14px; color:var(--teal); font-size:2rem; line-height:1.15; }
.month-09-page .month-09-book-placeholder-author { margin-bottom:26px; color:var(--lavender); font-size:1rem; font-style:italic; }
.month-09-page .month-09-book-placeholder > span:last-child { color:var(--text-soft); font-size:.86rem; }
.month-09-page .month-09-book-copy h2 { font-size:clamp(2.5rem,4vw,3rem); margin-bottom:8px; }
.month-09-page .month-09-book-author { color:var(--lavender); font-size:1.15rem; font-style:italic; margin-bottom:24px; }
.month-09-page .month-09-book-copy > p:not(.section-eyebrow):not(.month-09-book-author) { color:var(--text-soft); font-size:1.03rem; line-height:1.75; margin-bottom:18px; }

/* COMPANION */
.month-09-page .month-09-companion { padding:96px 0; background:var(--white); }
.month-09-page .month-09-companion-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:76px; align-items:start; }
.month-09-page .month-09-companion-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:20px; }
.month-09-page .month-09-companion-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.03rem; line-height:1.73; margin-bottom:26px; }
.month-09-page .month-09-companion-preview { padding:38px 40px; border-radius:18px; background:var(--lavender-light); }
.month-09-page .month-09-companion-preview h3 { color:var(--teal); font-size:1.7rem; margin-bottom:18px; }
.month-09-page .month-09-companion-preview ul { padding-left:20px; }
.month-09-page .month-09-companion-preview li { color:var(--text-soft); line-height:1.62; margin-bottom:12px; }

/* CLOSING */
.month-09-page .month-09-closing { padding:88px 0; background:var(--off-white); }
.month-09-page .month-09-closing-inner { max-width:760px; margin:0 auto; text-align:center; }
.month-09-page .month-09-closing-rule { width:86px; height:1px; margin:26px auto; background:rgba(169,138,212,.55); }
.month-09-page .month-09-closing h2 { color:var(--teal); font-size:clamp(2.65rem,4.6vw,3.45rem); line-height:1.12; }
.month-09-page .month-09-closing-inner > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.05rem; line-height:1.7; }

@media (max-width:900px) {
  .month-09-page .month-09-statement-inner, .month-09-page .month-09-opening-inner, .month-09-page .month-09-boundaries-inner, .month-09-page .month-09-small-inner, .month-09-page .month-09-journey-inner, .month-09-page .month-09-episode-inner, .month-09-page .month-09-book-inner, .month-09-page .month-09-companion-inner { grid-template-columns:1fr; gap:42px; }
  .month-09-page .month-09-offerings-grid { grid-template-columns:repeat(2,1fr); }
  .month-09-page .month-09-offering + .month-09-offering { border-left:0; }
  .month-09-page .month-09-offering:nth-child(even) { border-left:1px solid rgba(169,138,212,.28); }
  .month-09-page .month-09-challenge-inner { grid-template-columns:70px 1fr; gap:24px; }
}

@media (max-width:620px) {
  .month-09-page .month-09-statement, .month-09-page .month-09-opening, .month-09-page .month-09-offerings, .month-09-page .month-09-boundaries, .month-09-page .month-09-small, .month-09-page .month-09-journey, .month-09-page .month-09-challenge, .month-09-page .month-09-episode, .month-09-page .month-09-book, .month-09-page .month-09-companion, .month-09-page .month-09-closing { padding:68px 0; }
  .month-09-page .month-09-offerings-grid { grid-template-columns:1fr; }
  .month-09-page .month-09-offering, .month-09-page .month-09-offering:nth-child(even) { min-height:0; border-left:0; border-bottom:1px solid rgba(169,138,212,.24); }
  .month-09-page .month-09-challenge-inner { grid-template-columns:1fr; text-align:center; }
  .month-09-page .month-09-challenge-main, .month-09-page .month-09-challenge-copy > p:last-child { margin-left:auto; margin-right:auto; }
  .month-09-page .month-09-book-placeholder { min-height:340px; }
}

/* ============================================================
   MONTH 10: ADVENTURE
   Revised editorial treatment
   ============================================================ */

.month-10-page .month-10-hero { background:var(--white); }
.month-10-page .month-10-hero .month-detail-hero-art img { display:block; width:100%; max-width:390px; height:auto; margin:0 auto; }

/* JOURNAL STATEMENT */
.month-10-page .month-10-journal-statement { padding:82px 0; background:var(--off-white); border-top:1px solid rgba(169,138,212,.16); border-bottom:1px solid rgba(169,138,212,.16); }
.month-10-page .month-10-journal-statement-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:.65fr 1.35fr; gap:70px; align-items:center; }
.month-10-page .month-10-stamp { width:190px; height:190px; margin:0 auto; border:2px solid var(--lavender); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; transform:rotate(-4deg); }
.month-10-page .month-10-stamp strong { color:var(--teal); font-size:2rem; line-height:1; margin:8px 0; }
.month-10-page .month-10-stamp-small { color:var(--lavender); font-size:.76rem; font-weight:700; letter-spacing:.14em; }
.month-10-page .month-10-statement-copy blockquote { margin:0; color:var(--teal); font-size:clamp(2rem,3.5vw,2.75rem); line-height:1.34; font-style:italic; }

/* FIELD NOTES */
.month-10-page .month-10-field-notes { padding:94px 0; background:var(--white); }
.month-10-page .month-10-field-notes-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:.9fr 1.1fr; gap:76px; align-items:start; }
.month-10-page .month-10-field-heading h2 { font-size:clamp(2.45rem,4vw,3.1rem); line-height:1.14; }
.month-10-page .month-10-field-copy p { color:var(--text-soft); font-size:1.04rem; line-height:1.75; margin-bottom:18px; }

/* ROUTE */
.month-10-page .month-10-route { padding:94px 0; background:var(--off-white); }
.month-10-page .month-10-route-inner { max-width:1040px; margin:0 auto; }
.month-10-page .month-10-route-heading { max-width:720px; margin-bottom:50px; }
.month-10-page .month-10-route-heading h2 { font-size:clamp(2.45rem,4vw,3.05rem); margin-bottom:18px; }
.month-10-page .month-10-route-heading > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.04rem; line-height:1.72; }
.month-10-page .month-10-route-path { max-width:820px; }
.month-10-page .month-10-route-stop { display:grid; grid-template-columns:58px 1fr; gap:24px; align-items:start; }
.month-10-page .month-10-route-marker { width:50px; height:50px; border-radius:50%; background:var(--lavender-light); color:var(--teal); display:flex; align-items:center; justify-content:center; font-size:1.15rem; }
.month-10-page .month-10-route-label { margin-bottom:7px; color:var(--lavender); font-size:.76rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-route-stop h3 { color:var(--teal); font-size:1.55rem; margin-bottom:8px; }
.month-10-page .month-10-route-stop p:last-child { color:var(--text-soft); line-height:1.68; }
.month-10-page .month-10-route-line { width:1px; height:44px; margin:8px 0 8px 24px; background:rgba(169,138,212,.42); }

/* POSTCARD */
.month-10-page .month-10-postcard { padding:96px 0; background:var(--white); }
.month-10-page .month-10-postcard-inner { max-width:1060px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; border:1px solid rgba(169,138,212,.34); border-radius:20px; overflow:hidden; }
.month-10-page .month-10-postcard-front, .month-10-page .month-10-postcard-message { padding:52px 48px; min-height:330px; }
.month-10-page .month-10-postcard-front { background:var(--lavender-light); display:flex; flex-direction:column; justify-content:center; }
.month-10-page .month-10-postcard-small { color:var(--lavender-dark); font-size:.78rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-postcard-front h2 { color:var(--teal); font-size:clamp(2.7rem,4vw,3.4rem); margin:18px 0 14px; }
.month-10-page .month-10-postcard-front > p:last-child { color:var(--text-soft); line-height:1.7; }
.month-10-page .month-10-postcard-message { border-left:1px solid rgba(169,138,212,.3); }
.month-10-page .month-10-postcard-message h3 { color:var(--teal); font-size:1.65rem; line-height:1.42; margin-bottom:34px; }
.month-10-page .month-10-postcard-lines span { display:block; height:1px; margin:16px 0; background:rgba(8,119,138,.22); }

/* JOURNEY */
.month-10-page .month-10-journey { padding:96px 0; background:var(--off-white); }
.month-10-page .month-10-journey-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:.95fr 1.05fr; gap:74px; align-items:start; }
.month-10-page .month-10-journey-title h2 { font-size:clamp(2.4rem,4vw,3rem); line-height:1.15; }
.month-10-page .month-10-journey-copy p { color:var(--text-soft); font-size:1.04rem; line-height:1.75; margin-bottom:18px; }

/* COMFORT ZONE */
.month-10-page .month-10-comfort { padding:94px 0; background:var(--white); }
.month-10-page .month-10-comfort-inner { max-width:1040px; margin:0 auto; }
.month-10-page .month-10-comfort-heading { max-width:760px; margin-bottom:46px; }
.month-10-page .month-10-comfort-heading h2 { font-size:clamp(2.45rem,4vw,3.05rem); }
.month-10-page .month-10-comfort-scale { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:18px; align-items:center; }
.month-10-page .month-10-comfort-zone { min-height:170px; padding:30px 24px; border:1px solid rgba(169,138,212,.3); border-radius:18px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.month-10-page .month-10-comfort-stretch { background:var(--lavender-light); border-color:transparent; }
.month-10-page .month-10-comfort-zone span { color:var(--lavender); font-size:.8rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-comfort-zone p { margin-top:12px; color:var(--teal); line-height:1.55; }
.month-10-page .month-10-comfort-arrow { color:var(--lavender); font-size:1.6rem; }
.month-10-page .month-10-comfort-note { margin-top:28px; color:var(--text-soft); text-align:center; font-style:italic; }

/* CHALLENGE */
.month-10-page .month-10-challenge { padding:88px 0; background:var(--lavender-light); }
.month-10-page .month-10-challenge-inner { max-width:980px; margin:0 auto; display:grid; grid-template-columns:100px 1fr; gap:36px; align-items:center; }
.month-10-page .month-10-challenge-stamp { display:flex; justify-content:center; }
.month-10-page .month-10-challenge-stamp span { width:74px; height:74px; border-radius:50%; background:var(--white); color:var(--teal); display:flex; align-items:center; justify-content:center; font-weight:800; letter-spacing:.08em; }
.month-10-page .month-10-challenge-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:14px; }
.month-10-page .month-10-challenge-main { color:var(--lavender-dark); font-size:1.28rem; font-weight:700; line-height:1.45; margin-bottom:16px; }
.month-10-page .month-10-challenge-copy > p:last-child { max-width:760px; color:var(--text-soft); line-height:1.68; }

/* MICRO-ADVENTURE LOG */
.month-10-page .month-10-log { padding:94px 0; background:var(--off-white); }
.month-10-page .month-10-log-inner { max-width:1040px; margin:0 auto; }
.month-10-page .month-10-log-heading { max-width:760px; margin-bottom:46px; }
.month-10-page .month-10-log-heading h2 { font-size:clamp(2.45rem,4vw,3rem); }
.month-10-page .month-10-log-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(8,119,138,.22); border-bottom:1px solid rgba(8,119,138,.22); }
.month-10-page .month-10-log-entry { padding:30px 26px; min-height:185px; }
.month-10-page .month-10-log-entry + .month-10-log-entry { border-left:1px solid rgba(169,138,212,.28); }
.month-10-page .month-10-log-entry span { color:var(--lavender); font-size:.78rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-log-entry p { margin-top:12px; color:var(--text-soft); line-height:1.65; }

/* EPISODE */
.month-10-page .month-10-episode { padding:94px 0; background:var(--white); }
.month-10-page .month-10-episode-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:.8fr 1.2fr; gap:72px; align-items:center; }
.month-10-page .month-10-episode-ticket { min-height:250px; padding:38px 30px; border:2px dashed rgba(169,138,212,.55); border-radius:16px; background:var(--off-white); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; transform:rotate(-2deg); }
.month-10-page .month-10-episode-ticket span, .month-10-page .month-10-episode-ticket p { color:var(--lavender); font-size:.76rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-episode-ticket strong { margin:18px 0; color:var(--teal); font-size:2.4rem; }
.month-10-page .month-10-episode-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:18px; }
.month-10-page .month-10-episode-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.03rem; line-height:1.72; margin-bottom:24px; }

/* BOOK */
.month-10-page .month-10-book { padding:94px 0; background:var(--off-white); }
.month-10-page .month-10-book-inner { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:.72fr 1.28fr; gap:76px; align-items:center; }
.month-10-page .month-10-book-visual { display:flex; justify-content:center; }
.month-10-page .month-10-book-placeholder { width:min(100%,300px); min-height:390px; padding:38px 28px; border:1px solid rgba(169,138,212,.38); border-radius:18px; background:var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.month-10-page .month-10-book-placeholder-label { margin-bottom:24px; color:var(--teal); font-size:.75rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-book-placeholder-title { margin-bottom:14px; color:var(--teal); font-size:2rem; line-height:1.15; }
.month-10-page .month-10-book-placeholder-author { margin-bottom:26px; color:var(--lavender); font-size:1rem; font-style:italic; }
.month-10-page .month-10-book-placeholder > span:last-child { color:var(--text-soft); font-size:.86rem; }
.month-10-page .month-10-book-copy h2 { font-size:clamp(2.5rem,4vw,3rem); margin-bottom:8px; }
.month-10-page .month-10-book-author { color:var(--lavender); font-size:1.15rem; font-style:italic; margin-bottom:24px; }
.month-10-page .month-10-book-copy > p:not(.section-eyebrow):not(.month-10-book-author) { color:var(--text-soft); font-size:1.03rem; line-height:1.75; margin-bottom:18px; }

/* COMPANION */
.month-10-page .month-10-companion { padding:96px 0; background:var(--white); }
.month-10-page .month-10-companion-inner { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:76px; align-items:start; }
.month-10-page .month-10-companion-copy h2 { font-size:clamp(2.45rem,4vw,3rem); margin-bottom:20px; }
.month-10-page .month-10-companion-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.03rem; line-height:1.73; margin-bottom:26px; }
.month-10-page .month-10-companion-preview { padding:38px 40px; border-radius:18px; background:var(--lavender-light); }
.month-10-page .month-10-companion-preview h3 { color:var(--teal); font-size:1.7rem; margin-bottom:18px; }
.month-10-page .month-10-companion-preview ul { padding-left:20px; }
.month-10-page .month-10-companion-preview li { color:var(--text-soft); line-height:1.62; margin-bottom:12px; }

/* CLOSING */
.month-10-page .month-10-closing { padding:88px 0; background:var(--off-white); }
.month-10-page .month-10-closing-inner { max-width:900px; margin:0 auto; display:grid; grid-template-columns:190px 1fr; gap:60px; align-items:center; }
.month-10-page .month-10-closing-postmark { width:160px; height:160px; border:2px solid var(--lavender); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; transform:rotate(4deg); }
.month-10-page .month-10-closing-postmark span { color:var(--lavender); font-size:.72rem; font-weight:700; letter-spacing:.12em; }
.month-10-page .month-10-closing-postmark strong { margin:8px 0; color:var(--teal); font-size:1.55rem; }
.month-10-page .month-10-closing-copy h2 { font-size:clamp(2.55rem,4.4vw,3.35rem); margin-bottom:14px; }
.month-10-page .month-10-closing-copy > p:not(.section-eyebrow) { color:var(--text-soft); font-size:1.05rem; line-height:1.7; }

@media (max-width:900px) {
  .month-10-page .month-10-journal-statement-inner, .month-10-page .month-10-field-notes-inner, .month-10-page .month-10-postcard-inner, .month-10-page .month-10-journey-inner, .month-10-page .month-10-episode-inner, .month-10-page .month-10-book-inner, .month-10-page .month-10-companion-inner, .month-10-page .month-10-closing-inner { grid-template-columns:1fr; gap:42px; }
  .month-10-page .month-10-stamp, .month-10-page .month-10-closing-postmark { margin:0 auto; }
  .month-10-page .month-10-postcard-message { border-left:0; border-top:1px solid rgba(169,138,212,.3); }
  .month-10-page .month-10-comfort-scale { grid-template-columns:1fr; }
  .month-10-page .month-10-comfort-arrow { transform:rotate(90deg); text-align:center; }
  .month-10-page .month-10-log-grid { grid-template-columns:repeat(2,1fr); }
  .month-10-page .month-10-log-entry + .month-10-log-entry { border-left:0; }
  .month-10-page .month-10-log-entry:nth-child(even) { border-left:1px solid rgba(169,138,212,.28); }
  .month-10-page .month-10-challenge-inner { grid-template-columns:80px 1fr; gap:26px; }
}

@media (max-width:620px) {
  .month-10-page .month-10-journal-statement, .month-10-page .month-10-field-notes, .month-10-page .month-10-route, .month-10-page .month-10-postcard, .month-10-page .month-10-journey, .month-10-page .month-10-comfort, .month-10-page .month-10-challenge, .month-10-page .month-10-log, .month-10-page .month-10-episode, .month-10-page .month-10-book, .month-10-page .month-10-companion, .month-10-page .month-10-closing { padding:68px 0; }
  .month-10-page .month-10-route-stop { grid-template-columns:46px 1fr; gap:18px; }
  .month-10-page .month-10-route-marker { width:40px; height:40px; }
  .month-10-page .month-10-route-line { margin-left:19px; }
  .month-10-page .month-10-postcard-front, .month-10-page .month-10-postcard-message { min-height:0; padding:36px 28px; }
  .month-10-page .month-10-challenge-inner { grid-template-columns:1fr; text-align:center; }
  .month-10-page .month-10-challenge-copy > p:last-child { margin-left:auto; margin-right:auto; }
  .month-10-page .month-10-log-grid { grid-template-columns:1fr; }
  .month-10-page .month-10-log-entry, .month-10-page .month-10-log-entry:nth-child(even) { min-height:0; border-left:0; border-bottom:1px solid rgba(169,138,212,.24); }
  .month-10-page .month-10-episode-ticket { transform:none; }
  .month-10-page .month-10-book-placeholder { min-height:340px; }
}

/* ============================================================
   MONTH 11: IMPACT
   ------------------------------------------------------------
   Refined editorial treatment aligned with the Quitired
   homepage, About Jackie, and Months 1–10.
   ============================================================ */

/* HERO */
.month-11-page .month-11-hero {
    padding-bottom: 88px;
    border-bottom: 1px solid rgba(169,138,212,0.22);
}

.month-11-page .month-11-hero .month-detail-hero-inner {
    max-width: 1100px;
}

.month-11-page .month-11-hero .month-detail-hero-art {
    justify-self: center;
}

.month-11-page .month-11-hero .month-detail-hero-art img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.month-11-page .month-11-hero h1 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

/* STATEMENT */
.month-11-statement {
    padding: 68px 0;
    background: linear-gradient(180deg, var(--white), rgba(238,231,247,0.38));
    text-align: center;
}

.month-11-statement-inner { max-width: 820px; }

.month-11-statement blockquote {
    margin: 12px 0 0;
    color: var(--teal);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-style: italic;
    line-height: 1.22;
}

/* RIPPLE EFFECT */
.month-11-ripple {
    padding: 100px 0;
    background-color: var(--white);
}

.month-11-ripple-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.month-11-ripple-copy h2,
.month-11-influence-heading h2,
.month-11-visible-column h2,
.month-11-others-heading h2,
.month-11-journey-title h2,
.month-11-challenge-copy h2,
.month-11-long-view-copy h2,
.month-11-episode-copy h2,
.month-11-book-copy h2,
.month-11-companion-copy h2,
.month-11-closing h2 {
    margin: 8px 0 20px;
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
}

.month-11-ripple-copy p:not(.section-eyebrow),
.month-11-influence-heading > p:not(.section-eyebrow),
.month-11-visible-column p:not(.section-eyebrow),
.month-11-others-copy p,
.month-11-journey-copy p,
.month-11-challenge-copy > p:not(.section-eyebrow),
.month-11-long-view-copy p:not(.section-eyebrow),
.month-11-episode-copy > p:not(.section-eyebrow),
.month-11-book-copy > p:not(.section-eyebrow):not(.month-11-book-author),
.month-11-companion-copy > p:not(.section-eyebrow),
.month-11-closing p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.month-11-ripple-visual {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-11-ripple-ring {
    border: 1px solid rgba(169,138,212,.48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.month-11-ring-four { width: 360px; height: 360px; }
.month-11-ring-three { width: 285px; height: 285px; }
.month-11-ring-two { width: 210px; height: 210px; }
.month-11-ring-one { width: 135px; height: 135px; }
.month-11-ripple-center {
    width: 76px; height: 76px; border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    background-color: var(--teal); color:var(--white);
    font-size:.82rem; font-weight:700; letter-spacing:.14em;
}
.month-11-ripple-note {
    grid-column: 1 / -1;
    margin: 8px auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--lavender-dark);
    font-style: italic;
    line-height: 1.65;
}

/* QUIET IMPACT GRID */
.month-11-influence {
    padding: 100px 0;
    background-color: var(--off-white);
}
.month-11-influence-inner { max-width: 1080px; }
.month-11-influence-heading { max-width: 760px; margin-bottom: 54px; }
.month-11-influence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.month-11-influence-item {
    padding: 30px 26px;
    background: var(--white);
    border-top: 3px solid rgba(169,138,212,.6);
}
.month-11-influence-item span {
    color: var(--lavender-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
}
.month-11-influence-item h3 {
    margin: 12px 0 12px;
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
}
.month-11-influence-item p { margin:0; color:var(--text-soft); line-height:1.62; }

/* VISIBLE / INVISIBLE */
.month-11-visible {
    padding: 96px 0;
    background-color: var(--white);
}
.month-11-visible-inner {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 54px;
    align-items: start;
}
.month-11-visible-divider { width:1px; height:100%; min-height:250px; background:rgba(169,138,212,.28); }

/* WHO IMPACTED ME */
.month-11-others {
    padding: 96px 0;
    background: linear-gradient(180deg, rgba(238,231,247,.35), var(--white));
}
.month-11-others-inner {
    max-width: 1020px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:78px;
    align-items:start;
}
.month-11-others-copy p + p { margin-top:18px; }

/* JOURNEY */
.month-11-journey { padding: 100px 0; background-color: var(--white); }
.month-11-journey-inner {
    max-width: 1060px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:78px;
    align-items:start;
}
.month-11-journey-copy p + p { margin-top:18px; }
.month-11-journey-quote {
    grid-column:1 / -1;
    margin: 34px 0 0;
    padding: 28px 36px;
    border-left: 4px solid var(--lavender);
    background: rgba(238,231,247,.38);
    color: var(--teal);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
}

/* CHALLENGE */
.month-11-challenge {
    padding: 92px 0;
    background-color: var(--off-white);
}
.month-11-challenge-inner {
    max-width: 980px;
    display:grid;
    grid-template-columns: 220px 1fr;
    gap:60px;
    align-items:center;
}
.month-11-challenge-mark { display:flex; justify-content:center; }
.month-11-challenge-envelope {
    width: 100%; max-width: 170px; height:auto;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.06));
}
.month-11-challenge-main {
    margin: 0 0 16px;
    color: var(--lavender-dark) !important;
    font-size: 1.25rem !important;
    font-style: italic;
    font-weight: 600;
}

/* LONG VIEW */
.month-11-long-view {
    padding: 96px 0;
    background-color: var(--white);
}
.month-11-long-view-inner {
    max-width: 1000px;
    display:grid;
    grid-template-columns: 220px 1fr;
    gap:70px;
    align-items:center;
}
.month-11-long-view-number {
    width:180px; height:180px; border-radius:50%;
    margin:auto;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    background: rgba(238,231,247,.48);
    border:1px solid rgba(169,138,212,.35);
}
.month-11-long-view-number span { color:var(--teal); font-size:3.4rem; font-weight:600; line-height:1; }
.month-11-long-view-number small { margin-top:8px; color:var(--lavender-dark); font-size:.72rem; font-weight:700; letter-spacing:.16em; }

/* EPISODE */
.month-11-episode { padding: 96px 0; background-color: var(--off-white); }
.month-11-episode-inner {
    max-width:1040px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}
.month-11-episode-copy > p:not(.section-eyebrow) { margin-bottom:24px; }
.month-11-episode-ripple {
    position:relative;
    min-height:300px;
    display:flex; align-items:center; justify-content:center;
}
.month-11-episode-ring {
    position:absolute;
    border:1px solid rgba(169,138,212,.45);
    border-radius:50%;
}
.month-11-episode-ring-three { width:280px; height:280px; }
.month-11-episode-ring-two { width:205px; height:205px; }
.month-11-episode-ring-one { width:130px; height:130px; }
.month-11-episode-ripple strong { color:var(--teal); font-size:.85rem; letter-spacing:.13em; z-index:2; }

/* BOOK */
.month-11-book { padding:100px 0; background-color:var(--white); }
.month-11-book-inner {
    max-width:1020px;
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:74px;
    align-items:center;
}
.month-11-book-visual { display:flex; justify-content:center; }
.month-11-book-placeholder {
    width:min(100%,300px); aspect-ratio:.74;
    padding:40px 28px;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center;
    background:linear-gradient(145deg, rgba(238,231,247,.6), var(--white));
    border:1px solid rgba(169,138,212,.28);
    border-radius:20px;
    box-shadow:0 10px 26px rgba(0,0,0,.04);
}
.month-11-book-placeholder-label { margin-bottom:22px; color:var(--teal); font-size:.72rem; font-weight:700; letter-spacing:.12em; }
.month-11-book-placeholder-title { margin-bottom:16px; color:var(--lavender-dark); font-family:Arial,Helvetica,sans-serif; font-size:1.85rem; }
.month-11-book-placeholder-author { margin-bottom:28px; color:var(--text-dark); font-weight:700; }
.month-11-book-placeholder > span:last-child { color:var(--text-soft); font-size:.85rem; }
.month-11-book-author { margin-bottom:26px; color:var(--lavender-dark); font-weight:700; }

/* COMPANION */
.month-11-companion { padding:100px 0; background-color:var(--off-white); }
.month-11-companion-inner {
    max-width:1080px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:78px;
    align-items:center;
}
.month-11-companion-copy > p:not(.section-eyebrow) { margin-bottom:24px; }
.month-11-companion-preview {
    padding:42px 38px;
    background:linear-gradient(145deg, rgba(238,231,247,.72), var(--white));
    border:1px solid rgba(169,138,212,.24);
    border-radius:24px;
}
.month-11-companion-preview h3 {
    margin:8px 0 22px;
    color:var(--teal);
    font-family:Arial,Helvetica,sans-serif;
    font-size:2rem;
}
.month-11-companion-preview ul { margin:0; padding-left:22px; }
.month-11-companion-preview li { margin-bottom:15px; color:var(--text-dark); line-height:1.58; }

/* CLOSING */
.month-11-closing {
    padding:92px 0 98px;
    background:linear-gradient(180deg, var(--white), rgba(238,231,247,.42));
    text-align:center;
    overflow:hidden;
}
.month-11-closing-inner { max-width:860px; }
.month-11-closing h2 { margin-left:auto; margin-right:auto; max-width:760px; }
.month-11-closing-ripples {
    position:relative;
    height:120px;
    margin-top:34px;
}
.month-11-closing-ripples span {
    position:absolute;
    left:50%; transform:translateX(-50%);
    border:1px solid rgba(169,138,212,.35);
    border-radius:50%;
}
.month-11-closing-ripples span:nth-child(1){ width:220px; height:60px; top:50px; }
.month-11-closing-ripples span:nth-child(2){ width:390px; height:95px; top:28px; }
.month-11-closing-ripples span:nth-child(3){ width:560px; height:130px; top:8px; }

/* TABLET */
@media (max-width: 900px) {
    .month-11-ripple-inner,
    .month-11-others-inner,
    .month-11-journey-inner,
    .month-11-episode-inner,
    .month-11-book-inner,
    .month-11-companion-inner { grid-template-columns:1fr; gap:46px; }
    .month-11-ripple-copy,
    .month-11-influence-heading,
    .month-11-others-heading,
    .month-11-journey-title { max-width:760px; }
    .month-11-influence-grid { grid-template-columns:repeat(2,1fr); }
    .month-11-visible-inner { grid-template-columns:1fr; gap:42px; }
    .month-11-visible-divider { width:100%; height:1px; min-height:0; }
    .month-11-challenge-inner,
    .month-11-long-view-inner { grid-template-columns:1fr; gap:34px; text-align:center; }
    .month-11-challenge-copy .section-eyebrow,
    .month-11-long-view-copy .section-eyebrow { text-align:center; }
    .month-11-episode-ripple { min-height:270px; }
}

/* PHONE */
@media (max-width: 620px) {
    .month-11-statement,
    .month-11-ripple,
    .month-11-influence,
    .month-11-visible,
    .month-11-others,
    .month-11-journey,
    .month-11-challenge,
    .month-11-long-view,
    .month-11-episode,
    .month-11-book,
    .month-11-companion,
    .month-11-closing { padding:72px 0; }
    .month-11-influence-grid { grid-template-columns:1fr; }
    .month-11-ring-four { width:290px; height:290px; }
    .month-11-ring-three { width:230px; height:230px; }
    .month-11-ring-two { width:170px; height:170px; }
    .month-11-ring-one { width:110px; height:110px; }
    .month-11-ripple-visual { min-height:320px; }
    .month-11-journey-quote { padding:24px; }
    .month-11-closing-ripples span:nth-child(3){ width:430px; }
}

/* ============================================================
   MONTH 12: THE ENCORE
   ------------------------------------------------------------
   Refined editorial treatment aligned with the Quitired
   homepage, About Jackie, and Months 1–11.
   ============================================================ */

/* HERO */
.month-12-page .month-12-hero {
    padding-bottom: 88px;
    border-bottom: 1px solid rgba(169,138,212,0.22);
}
.month-12-page .month-12-hero .month-detail-hero-inner { max-width: 1100px; }
.month-12-page .month-12-hero .month-detail-hero-art { justify-self: center; }
.month-12-page .month-12-hero .month-detail-hero-art img {
    width: 100%; max-width: 390px; height: auto;
}
.month-12-page .month-12-hero h1 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

/* SHARED MONTH 12 TYPOGRAPHY */
.month-12-looking-back-heading h2,
.month-12-trail-heading h2,
.month-12-awareness-heading h2,
.month-12-edit-heading h2,
.month-12-practice-heading h2,
.month-12-journey-heading h2,
.month-12-challenge-heading h2,
.month-12-compass-heading h2,
.month-12-episode-copy h2,
.month-12-companion-copy h2,
.month-12-next h2 {
    margin: 8px 0 20px;
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
}
.month-12-looking-back-copy p,
.month-12-trail-heading > p:not(.section-eyebrow),
.month-12-awareness-copy > p,
.month-12-edit-heading > p:not(.section-eyebrow),
.month-12-practice-copy p,
.month-12-journey-copy p,
.month-12-challenge-copy > p,
.month-12-compass-heading > p:not(.section-eyebrow),
.month-12-episode-copy > p:not(.section-eyebrow),
.month-12-companion-copy > p:not(.section-eyebrow),
.month-12-next-copy p,
.month-12-next-closing > p:first-child {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* STATEMENT */
.month-12-statement {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--white), rgba(238,231,247,.38));
    text-align: center;
}
.month-12-statement-inner { max-width: 860px; }
.month-12-statement blockquote {
    margin: 14px auto 0;
    color: var(--teal);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-style: italic;
    line-height: 1.25;
}

/* LOOKING BACK */
.month-12-looking-back { padding: 100px 0; background: var(--white); }
.month-12-looking-back-inner {
    max-width: 1060px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: start;
}
.month-12-looking-back-copy {
    padding-left: 42px;
    border-left: 1px solid rgba(169,138,212,.28);
}
.month-12-looking-back-copy p + p { margin-top: 18px; }
.month-12-looking-back-emphasis {
    color: var(--lavender-dark) !important;
    font-size: 1.45rem !important;
    font-style: italic;
    font-weight: 600;
}

/* 12-MONTH TRAIL */
.month-12-trail {
    padding: 104px 0 116px;
    background: linear-gradient(180deg, var(--off-white), rgba(238,231,247,.32), var(--off-white));
    overflow: hidden;
}
.month-12-trail-inner { max-width: 1120px; }
.month-12-trail-heading { max-width: 760px; margin-bottom: 70px; }
.month-12-trail-path { max-width: 960px; margin: 0 auto; position: relative; }
.month-12-trail-path::before {
    content: "";
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, rgba(169,138,212,.55) 0 10px, transparent 10px 20px);
}
.month-12-trail-stop {
    width: 100%; min-height: 230px;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
    position: relative;
}
.month-12-trail-left .month-12-trail-card { grid-column: 1; grid-row: 1; justify-self: end; margin-right: 12px; }
.month-12-trail-left .month-12-trail-marker { grid-column: 2; grid-row: 1; }
.month-12-trail-right .month-12-trail-marker { grid-column: 2; }
.month-12-trail-right .month-12-trail-card { grid-column: 3; justify-self: start; margin-left: 12px; }
.month-12-trail-card {
    width: min(100%, 390px);
    padding: 30px 28px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(169,138,212,.25);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.045);
    position: relative; z-index: 2;
}
.month-12-trail-marker {
    width: 60px; height: 60px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--lavender); border-radius: 50%;
    background: var(--white); position: relative; z-index: 3;
}
.month-12-trail-marker span { color: var(--teal); font-size: .9rem; font-weight: 800; }
.month-12-trail-month { margin: 0 0 8px; color: var(--lavender-dark); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.month-12-trail-card h3 { margin: 0 0 12px; color: var(--teal); font-family: Arial,Helvetica,sans-serif; font-size: 1.7rem; font-weight: 600; }
.month-12-trail-takeaway { margin-bottom: 13px; color: var(--lavender-dark); font-weight: 700; line-height: 1.45; }
.month-12-trail-card > p:last-child { margin-bottom: 0; color: var(--text-soft); font-size: .95rem; line-height: 1.62; }
.month-12-trail-finale .month-12-trail-marker { width: 68px; height: 68px; background: var(--teal); border-color: var(--teal); }
.month-12-trail-finale .month-12-trail-marker span { color: var(--white); }
.month-12-trail-finale .month-12-trail-card { border: 2px solid rgba(8,119,138,.32); background: linear-gradient(145deg,var(--white),rgba(238,231,247,.42)); }

/* AWARENESS */
.month-12-awareness { padding: 100px 0; background: var(--white); }
.month-12-awareness-inner {
    max-width: 1040px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: start;
}
.month-12-awareness-copy { padding-left: 42px; border-left: 1px solid rgba(169,138,212,.28); }
.month-12-awareness-questions { margin: 28px 0; padding: 26px 0 26px 28px; border-left: 3px solid var(--lavender); }
.month-12-awareness-questions p { margin: 0 0 12px; color: var(--teal); font-size: 1.13rem; font-style: italic; line-height: 1.5; }
.month-12-awareness-questions p:last-child { margin-bottom: 0; }

/* KEEP / RELEASE / OPEN */
.month-12-edit { padding: 100px 0; background: var(--off-white); }
.month-12-edit-inner { max-width: 1080px; }
.month-12-edit-heading { max-width: 760px; margin-bottom: 52px; }
.month-12-edit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.month-12-edit-card { padding: 34px 30px; background: var(--white); border-top: 3px solid var(--lavender); min-height: 280px; }
.month-12-edit-label { margin: 0 0 14px; color: var(--lavender-dark); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.month-12-edit-card h3 { margin: 0 0 14px; color: var(--teal); font-family: Arial,Helvetica,sans-serif; font-size: 1.45rem; line-height: 1.25; }
.month-12-edit-card > p:not(.month-12-edit-label):not(.month-12-edit-prompt) { color: var(--text-soft); line-height: 1.65; }
.month-12-edit-prompt { margin-top: 24px; color: var(--teal); font-style: italic; font-weight: 600; line-height: 1.5; }

/* RETIREMENT IS A PRACTICE */
.month-12-practice { padding: 100px 0; background: var(--white); }
.month-12-practice-inner { max-width: 1000px; }
.month-12-practice-heading { max-width: 760px; margin-bottom: 38px; }
.month-12-practice-copy { max-width: 760px; margin-left: auto; }
.month-12-practice-emphasis { color: var(--lavender-dark) !important; font-size: 1.3rem !important; font-style: italic; font-weight: 600; }
.month-12-practice-question {
    max-width: 760px; margin: 46px auto 28px; padding: 40px 46px;
    text-align: center; background: rgba(238,231,247,.42); border: 1px solid rgba(169,138,212,.26); border-radius: 20px;
}
.month-12-practice-question p { margin: 0; color: var(--teal); font-size: clamp(1.7rem,3vw,2.25rem); font-style: italic; line-height: 1.35; }
.month-12-practice-closing { max-width: 700px; margin: 0 auto; color: var(--lavender-dark); font-style: italic; text-align: center; line-height: 1.6; }

/* JOURNEY */
.month-12-journey { padding: 100px 0; background: linear-gradient(90deg, rgba(238,231,247,.30), var(--white)); }
.month-12-journey-inner { max-width: 1040px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.month-12-journey-copy { padding-left: 42px; border-left: 1px solid rgba(169,138,212,.28); }
.month-12-journey-copy p + p { margin-top: 16px; }
.month-12-journey-quote {
    grid-column: 1 / -1; margin: 30px 0 0; padding: 28px 36px;
    border-left: 4px solid var(--lavender); background: rgba(255,255,255,.72);
    color: var(--teal); font-size: 1.35rem; font-style: italic; line-height: 1.5;
}

/* CHALLENGE */
.month-12-challenge { padding: 96px 0; background: linear-gradient(135deg,var(--teal),var(--teal-dark)); }
.month-12-challenge-inner { max-width: 980px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
.month-12-challenge-heading .section-eyebrow { color: var(--lavender-light); }
.month-12-challenge-heading h2 { color: var(--white); }
.month-12-challenge-copy > p { color: rgba(255,255,255,.88); }
.month-12-challenge-main { color: var(--white) !important; font-size: 1.22rem !important; font-weight: 700; }
.month-12-challenge-choices { margin: 30px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.month-12-challenge-choice { padding: 26px 24px; border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.month-12-challenge-choice span { display: block; margin-bottom: 12px; color: var(--lavender-light); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.month-12-challenge-choice p { margin: 0; color: var(--white); font-size: 1.25rem; font-style: italic; font-weight: 600; line-height: 1.35; }
.month-12-challenge-enough { margin-bottom: 0; color: var(--lavender-light) !important; font-size: 1.25rem !important; font-style: italic; font-weight: 600; }

/* RETIREMENT COMPASS */
.month-12-compass { padding: 100px 0; background: var(--white); }
.month-12-compass-inner { max-width: 1040px; }
.month-12-compass-heading { max-width: 760px; margin-bottom: 48px; }
.month-12-compass-list { max-width: 850px; margin: 0 auto; }
.month-12-compass-item { display: grid; grid-template-columns: 80px 1fr; gap: 26px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(169,138,212,.22); }
.month-12-compass-item:first-child { border-top: 1px solid rgba(169,138,212,.22); }
.month-12-compass-line { width: 62px; height: 2px; background: linear-gradient(90deg,var(--lavender),var(--teal)); }
.month-12-compass-item p { margin: 0; color: var(--teal); font-size: 1.18rem; font-weight: 600; line-height: 1.45; }

/* FINAL EPISODE */
.month-12-episode { padding: 100px 0; background: var(--off-white); }
.month-12-episode-inner { max-width: 1040px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 74px; align-items: center; }
.month-12-episode-copy > p:not(.section-eyebrow) { margin-bottom: 20px; }
.month-12-episode-feature {
    min-height: 300px; padding: 36px 28px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid rgba(169,138,212,.28); background: rgba(255,255,255,.82); border-radius: 20px;
}
.month-12-episode-feature p { margin: 0; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-align: center; }
.month-12-episode-feature span { width: 1px; height: 46px; margin: 14px 0; background: linear-gradient(to bottom,var(--lavender),var(--teal)); }

/* COMPANION */
.month-12-companion { padding: 100px 0; background: var(--white); }
.month-12-companion-inner { max-width: 1080px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; }
.month-12-companion-copy > p:not(.section-eyebrow) { margin-bottom: 24px; }
.month-12-companion-preview { padding: 40px 36px; background: linear-gradient(145deg,rgba(238,231,247,.68),var(--white)); border: 1px solid rgba(169,138,212,.24); border-radius: 24px; }
.month-12-companion-preview h3 { margin: 8px 0 22px; color: var(--teal); font-family: Arial,Helvetica,sans-serif; font-size: 2rem; font-weight: 600; }
.month-12-companion-preview ul { margin: 0; padding-left: 22px; }
.month-12-companion-preview li { margin-bottom: 15px; color: var(--text-dark); line-height: 1.58; }

/* SHARED BUTTON TREATMENT */
.month-12-page .month-companion-link {
    display: inline-block;
    margin-top: 10px;
    padding: 13px 24px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}
.month-12-page .month-companion-link:hover { background-color: var(--lavender); transform: translateY(-1px); }

/* WHAT COMES NEXT */
.month-12-next { padding: 112px 0; background: linear-gradient(180deg,rgba(238,231,247,.35),var(--white)); }
.month-12-next-inner { max-width: 900px; text-align: center; }
.month-12-next .section-eyebrow { text-align: center; }
.month-12-next-copy { max-width: 680px; margin: 0 auto 40px; }
.month-12-next-reminders { max-width: 620px; margin: 0 auto; padding: 30px 0; border-top: 1px solid rgba(169,138,212,.30); border-bottom: 1px solid rgba(169,138,212,.30); }
.month-12-next-reminders p { margin: 10px 0; color: var(--lavender-dark); font-size: 1.15rem; font-style: italic; font-weight: 600; }
.month-12-next-closing { max-width: 650px; margin: 40px auto 0; }
.month-12-next-time { margin: 28px 0 0; color: var(--teal) !important; font-size: 1.5rem !important; font-weight: 700; }
.month-12-next-intentionally { margin: 6px 0 0; color: var(--lavender-dark); font-size: clamp(2rem,4vw,2.8rem); font-style: italic; font-weight: 600; }

/* FINALE */
.month-12-finale { padding: 58px 0 82px; background: var(--white); }
.month-12-finale-inner { max-width: 760px; text-align: center; }
.month-12-finale-rule { height: 1px; background: rgba(169,138,212,.32); }
.month-12-finale p { margin: 28px 0; color: var(--teal); font-size: 1.45rem; font-style: italic; line-height: 1.45; }

/* TABLET */
@media (max-width: 900px) {
    .month-12-looking-back-inner,
    .month-12-awareness-inner,
    .month-12-journey-inner,
    .month-12-challenge-inner,
    .month-12-episode-inner,
    .month-12-companion-inner { grid-template-columns: 1fr; gap: 44px; }
    .month-12-looking-back-copy,
    .month-12-awareness-copy,
    .month-12-journey-copy { padding-left: 0; border-left: 0; }
    .month-12-edit-grid { grid-template-columns: 1fr; }
    .month-12-edit-card { min-height: auto; }
    .month-12-practice-copy { max-width: 100%; margin-left: 0; }
    .month-12-episode-feature { max-width: 420px; margin: 0 auto; }
}

/* PHONE */
@media (max-width: 620px) {
    .month-12-statement,
    .month-12-looking-back,
    .month-12-trail,
    .month-12-awareness,
    .month-12-edit,
    .month-12-practice,
    .month-12-journey,
    .month-12-challenge,
    .month-12-compass,
    .month-12-episode,
    .month-12-companion,
    .month-12-next { padding: 72px 0; }
    .month-12-trail-path::before { left: 25px; }
    .month-12-trail-stop { grid-template-columns: 50px 1fr; gap: 18px; min-height: auto; margin-bottom: 28px; }
    .month-12-trail-left .month-12-trail-marker,
    .month-12-trail-right .month-12-trail-marker { grid-column: 1; grid-row: 1; }
    .month-12-trail-left .month-12-trail-card,
    .month-12-trail-right .month-12-trail-card { grid-column: 2; grid-row: 1; margin: 0; justify-self: stretch; }
    .month-12-trail-marker { width: 50px; height: 50px; }
    .month-12-trail-finale .month-12-trail-marker { width: 54px; height: 54px; }
    .month-12-challenge-choices { grid-template-columns: 1fr; }
    .month-12-compass-item { grid-template-columns: 48px 1fr; gap: 18px; }
    .month-12-compass-line { width: 40px; }
    .month-12-practice-question { padding: 32px 24px; }
}

/* ============================================================
   SHARED NEXT MONTH - PHONE
   ============================================================ */

@media (max-width: 700px) {

    .month-01-page .month-next-inner,
    .month-02-page .month-next-inner,
    .month-03-page .month-next-inner,
    .month-04-page .month-next-inner,
    .month-05-page .month-next-inner,
    .month-06-page .month-next-inner,
    .month-07-page .month-next-inner,
    .month-08-page .month-next-inner,
    .month-09-page .month-next-inner,
    .month-10-page .month-next-inner,
    .month-11-page .month-next-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .month-01-page .month-next-graphic,
    .month-02-page .month-next-graphic,
    .month-03-page .month-next-graphic,
    .month-04-page .month-next-graphic,
    .month-05-page .month-next-graphic,
    .month-06-page .month-next-graphic,
    .month-07-page .month-next-graphic,
    .month-08-page .month-next-graphic,
    .month-09-page .month-next-graphic,
    .month-10-page .month-next-graphic,
    .month-11-page .month-next-graphic {
        justify-content: center;
    }

    .month-01-page .month-next-image,
    .month-02-page .month-next-image,
    .month-03-page .month-next-image,
    .month-04-page .month-next-image,
    .month-05-page .month-next-image,
    .month-06-page .month-next-image,
    .month-07-page .month-next-image,
    .month-08-page .month-next-image,
    .month-09-page .month-next-image,
    .month-10-page .month-next-image,
    .month-11-page .month-next-image {
        max-width: 140px;
        margin: 0 auto;
    }

    .month-01-page .month-next-description,
    .month-02-page .month-next-description,
    .month-03-page .month-next-description,
    .month-04-page .month-next-description,
    .month-05-page .month-next-description,
    .month-06-page .month-next-description,
    .month-07-page .month-next-description,
    .month-08-page .month-next-description,
    .month-09-page .month-next-description,
    .month-10-page .month-next-description,
    .month-11-page .month-next-description {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .month-01-page .month-next-action,
    .month-02-page .month-next-action,
    .month-03-page .month-next-action,
    .month-04-page .month-next-action,
    .month-05-page .month-next-action,
    .month-06-page .month-next-action,
    .month-07-page .month-next-action,
    .month-08-page .month-next-action,
    .month-09-page .month-next-action,
    .month-10-page .month-next-action,
    .month-11-page .month-next-action {
        justify-content: center;
    }

    .month-01-page .month-next-link,
    .month-02-page .month-next-link,
    .month-03-page .month-next-link,
    .month-04-page .month-next-link,
    .month-05-page .month-next-link,
    .month-06-page .month-next-link,
    .month-07-page .month-next-link,
    .month-08-page .month-next-link,
    .month-09-page .month-next-link,
    .month-10-page .month-next-link,
    .month-11-page .month-next-link {
        width: auto;
        max-width: 280px;
        margin: 0 auto;
    }
}
/* ============================================================
   MONTH 10 POSTCARD - FINAL FIX
   ============================================================ */

.month-10-page .month-10-postcard-message {
    position: relative;
}

.month-10-page .month-10-postcard-stamp {
    position: absolute;
    top: 28px;
    right: 32px;

    width: 78px;
    height: 92px;

    border: 2px dashed var(--lavender);
    background: var(--white);

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

    text-align: center;
    transform: rotate(5deg);
}

.month-10-page .month-10-postcard-stamp span {
    color: var(--lavender);
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.month-10-page .month-10-postcard-stamp strong {
    color: var(--teal);
    font-size: 1.75rem;
    line-height: 1;
    margin: 5px 0;
}

.month-10-page .month-10-postcard-stamp small {
    color: var(--lavender);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .08em;
}


/* leave room for the stamp */

.month-10-page .month-10-postcard-message h3 {
    padding-right: 100px;
}


/* spread out the postcard writing lines */

.month-10-page .month-10-postcard-lines {
    margin-top: 42px;
}

.month-10-page .month-10-postcard-lines span {
    display: block;
    height: 1px;
    margin: 28px 0;
    background: rgba(8,119,138,.22);
}
/* ============================================================
   MONTHLY PAGES - TABLET GRAY BODY COPY
   ============================================================ */

@media (min-width: 701px) and (max-width: 1280px) {

    /* Standard gray copy columns */
    body[class^="month-"][class$="-page"] main [class*="-copy"] > p:not(.section-eyebrow):not([class*="author"]):not([class*="tagline"]):not([class*="main"]):not([class*="emphasis"]),

    /* Book description paragraphs */
    .month-01-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-02-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-03-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-04-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-05-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-06-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-07-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-08-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-09-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-10-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-11-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]),
    .month-12-page [class*="-book-copy"] > p:not(.section-eyebrow):not([class*="author"]) {
        font-size: 1.18rem !important;
        line-height: 1.75 !important;
    }

}
/* ============================================================
   MONTH 7 CHALLENGE - SMILEY ONLY
   Removes the dotted circle and background around the smiley.
   ============================================================ */

.month-07-page .month-07-challenge-burst span {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: var(--white);
    line-height: 1;
}
/* ============================================================
   MONTH 3 - TABLET COMPANION BUTTON ORDER
   ============================================================ */

@media (max-width: 820px) {

    .month-03-page .month-03-companion-copy {
        display: contents;
    }

    .month-03-page .month-03-companion-preview {
        order: 5;
    }

    .month-03-page .month-companion-link {
        order: 6;
        justify-self: start;
        margin-top: 0;
    }

}
/* MONTH 6 BOOK — FINAL LAYOUT FIX */

.month-06-book-inner {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: 72px;
    align-items: center;
}

.month-06-book-visual {
    grid-column: 1;
}

.month-06-book-copy {
    grid-column: 2;
}

@media (max-width: 600px) {

    .month-06-book-inner {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }

    .month-06-book-visual,
    .month-06-book-copy {
        grid-column: 1;
    }
}

/* ============================================================
   PRE-RETIREMENT PAGES
   ------------------------------------------------------------
   Shared styling for the six "Before You Retire" preparation
   pages.

   VISUAL DIRECTION:
   Matches the approved Quitired monthly detail pages:
   - Arial / Helvetica typography
   - Teal headings
   - Lavender editorial accents
   - Generous white space
   - Soft off-white sections
   - Refined lifestyle-journal feel
   - Limited use of cards
   ============================================================ */


/* ============================================================
   SHARED PRE-RETIREMENT EYEBROWS
   ============================================================ */

.pre-retirement-page .section-eyebrow {
    color: var(--lavender);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 14px;
}


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

.pre-retirement-hero {
    padding: 72px 0 78px;

    background-color: var(--white);
}


.pre-retirement-hero-grid {
    max-width: 1100px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        420px;

    align-items: center;

    gap: 78px;
}


/* Matches monthly-page hero heading treatment */

.pre-retirement-hero h1 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(3.6rem, 6vw, 5rem);

    font-weight: 700;

    line-height: 1.02;

    margin-bottom: 12px;
}


/* Lavender second line */

.pre-retirement-accent {
    display: block;

    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-style: italic;
    font-weight: 500;

    margin-top: 6px;
}


/* Matches monthly hero tagline */

.pre-retirement-hero-tagline {
    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(1.7rem, 3vw, 2.25rem);

    font-style: italic;
    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 28px;
}


/* Matches monthly hero intro copy */

.pre-retirement-hero-intro {
    max-width: 650px;

    color: var(--text-soft);

    font-size: 1.08rem;

    line-height: 1.75;

    margin-bottom: 0;
}


/* Hero artwork */

.pre-retirement-hero-art {
    max-width: 420px;

    margin-left: auto;
}


.pre-retirement-hero-image {
    display: block;

    width: 100%;
    height: auto;
}


/* ============================================================
   OPENING SECTION
   LOOK BEYOND THE PAYCHECK
   ============================================================ */

.pre-retirement-intro {
    padding: 92px 0 96px;

    background-color: var(--off-white);
}


.pre-retirement-intro-grid {
    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(240px, 0.65fr);

    gap: 64px;

    align-items: center;
}


/* Matches Month 1 editorial section headings */

.pre-retirement-intro-content h2 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.08;

    margin: 8px 0 28px;
}


.pre-retirement-intro-content p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.04rem;

    line-height: 1.78;

    margin-bottom: 20px;
}


/* Editorial pull quote matches Month 1 */

.pre-retirement-intro-quote {
    margin: 0;

    padding: 12px 0 12px 28px;

    border-left: 3px solid var(--lavender);
}


.pre-retirement-intro-quote p {
    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(1.65rem, 2.5vw, 2.15rem);

    font-style: italic;
    font-weight: 500;

    line-height: 1.3;

    margin: 0;
}


/* ============================================================
   WHAT HAS WORK BEEN PROVIDING?
   ============================================================ */

.pre-retirement-provides {
    padding: 96px 0 98px;

    background-color: var(--white);
}


.pre-retirement-section-heading {
    max-width: 780px;

    margin: 0 auto 54px;

    text-align: center;
}


.pre-retirement-section-heading h2 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.08;

    margin: 8px 0 22px;
}


.pre-retirement-section-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.03rem;

    line-height: 1.78;

    margin-bottom: 0;
}


/* ============================================================
   SIX WORK ELEMENTS
   ============================================================ */

.pre-retirement-provides-grid {
    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.pre-retirement-provides-card {
    padding: 32px 28px 30px;

    background-color: var(--white);

    border: 1px solid rgba(169, 138, 212, 0.28);

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}


/* Soft alternating lavender card */

.pre-retirement-provides-card:nth-child(even) {
    background-color: var(--lavender-light);
}


/* Small number */

.pre-retirement-card-number {
    color: var(--lavender);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}


.pre-retirement-provides-card h3 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.45rem;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 16px;
}


.pre-retirement-provides-card > p:not(.pre-retirement-card-number) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.97rem;

    line-height: 1.7;
}


.pre-retirement-card-question {
    color: var(--teal) !important;

    font-style: italic;

    padding-top: 18px;

    margin-top: 22px;
    margin-bottom: 0 !important;

    border-top: 1px solid rgba(169, 138, 212, 0.28);
}


/* ============================================================
   REFLECTION
   ============================================================ */

.pre-retirement-reflection {
    padding: 96px 0 98px;

    background-color: var(--off-white);
}


.pre-retirement-reflection-grid {
    max-width: 1120px;

    margin: 0 auto;

    display: grid;

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

    gap: 64px;

    align-items: start;
}


.pre-retirement-reflection-heading {
    padding-right: 42px;

    border-right: 1px solid rgba(169, 138, 212, 0.28);
}


.pre-retirement-reflection-heading h2 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.45rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.08;

    margin: 8px 0 28px;
}


.pre-retirement-reflection-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.03rem;

    line-height: 1.78;

    margin-bottom: 0;
}


/* Reflection questions */

.pre-retirement-question-list {
    display: grid;
}


.pre-retirement-question {
    display: grid;

    grid-template-columns:
        40px
        1fr;

    gap: 20px;

    align-items: start;

    padding: 22px 0;

    border-bottom: 1px solid rgba(169, 138, 212, 0.28);
}


.pre-retirement-question:first-child {
    padding-top: 0;
}


.pre-retirement-question span {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: var(--lavender-light);

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

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


.pre-retirement-question p {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.03rem;

    line-height: 1.78;

    margin: 1px 0 0;
}


/* ============================================================
   ONE THING TO DO
   ============================================================ */

.pre-retirement-action {
    padding: 96px 0 98px;

    background-color: var(--white);
}


.pre-retirement-action-inner {
    max-width: 860px;

    margin: 0 auto;

    padding: 44px 48px;

    background-color: var(--lavender-light);

    border-radius: 18px;

    text-align: center;
}


.pre-retirement-action-inner h2 {
    max-width: 730px;

    margin: 8px auto 26px;

    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.35rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.08;
}


.pre-retirement-action-inner > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.03rem;

    line-height: 1.78;

    margin-bottom: 8px;
}


.pre-retirement-action-closing {
    color: var(--teal) !important;

    font-size: 1.2rem !important;

    font-style: italic;
    font-weight: 600;

    margin-top: 18px !important;
    margin-bottom: 0 !important;
}


/* ============================================================
   AWARENESS, NOT ANSWERS
   ============================================================ */

.pre-retirement-boundary {
    padding: 72px 0;

    background:
        linear-gradient(
            180deg,
            var(--white),
            rgba(238, 231, 247, 0.38)
        );

    text-align: center;
}


.pre-retirement-boundary-inner {
    max-width: 860px;
}


.pre-retirement-boundary-inner h2 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.35rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.12;

    margin: 8px 0 24px;
}


.pre-retirement-boundary-inner > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.03rem;

    line-height: 1.78;

    margin-bottom: 18px;
}


.pre-retirement-boundary-inner
> p:not(.section-eyebrow):first-of-type {

    color: var(--teal);

    font-size: 1.12rem;

    font-weight: 600;
}


/* ============================================================
   NEXT STEP
   ============================================================ */

.pre-retirement-next {
    padding: 72px 0 76px;

    background-color: var(--off-white);

    border-top: 1px solid rgba(169, 138, 212, 0.22);
}


.pre-retirement-next-grid {
    max-width: 1040px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 56px;

    align-items: center;
}


.pre-retirement-next-copy h2 {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(2.35rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.08;

    margin: 8px 0 20px;
}


.pre-retirement-next-copy > p:not(.section-eyebrow) {
    color: var(--text-soft);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.02rem;

    line-height: 1.75;

    margin-bottom: 8px;
}


/* Button matches existing Quitired treatment */

.pre-retirement-next-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border-radius: 8px;

    background-color: var(--teal);

    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.pre-retirement-next-link::after {
    content: " →";

    margin-left: 6px;
}


.pre-retirement-next-link:hover {
    background-color: var(--lavender);

    color: var(--white);

    transform: translateY(-2px);
}


/* ============================================================
   BACK TO PRE-RETIREMENT HUB
   ============================================================ */

.pre-retirement-back {
    padding: 32px 0 40px;

    background-color: var(--white);
}


.pre-retirement-back-link {
    color: var(--teal);

    font-family: Arial, Helvetica, sans-serif;

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


.pre-retirement-back-link:hover {
    color: var(--lavender);
}


/* ============================================================
   RESPONSIVE — SMALL DESKTOP / LAPTOP
   ============================================================ */

@media (max-width: 1050px) {

    .pre-retirement-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            330px;

        gap: 48px;
    }


    .pre-retirement-intro-grid,
    .pre-retirement-reflection-grid {
        gap: 48px;
    }


    .pre-retirement-provides-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 760px) {

    /* HERO */

    .pre-retirement-hero {
        padding: 54px 0 62px;
    }


    .pre-retirement-hero-grid {
        display: block;
    }


    .pre-retirement-hero h1 {
        font-size: clamp(3rem, 12vw, 4rem);
    }


    .pre-retirement-hero-tagline {
        font-size: 1.6rem;
    }


    .pre-retirement-hero-intro {
        font-size: 1rem;
    }


    .pre-retirement-hero-art {
        max-width: 280px;

        margin: 34px auto 0;
    }


    /* INTRO */

    .pre-retirement-intro {
        padding: 66px 0;
    }


    .pre-retirement-intro-grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }


    /* SIX AREAS */

    .pre-retirement-provides {
        padding: 66px 0;
    }


    .pre-retirement-provides-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .pre-retirement-section-heading {
        text-align: left;

        margin-bottom: 38px;
    }


    /* REFLECTION */

    .pre-retirement-reflection {
        padding: 66px 0;
    }


    .pre-retirement-reflection-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .pre-retirement-reflection-heading {
        padding-right: 0;
        padding-bottom: 32px;

        border-right: 0;

        border-bottom:
            1px solid rgba(169, 138, 212, 0.28);
    }


    /* ACTION */

    .pre-retirement-action {
        padding: 66px 0;
    }


    .pre-retirement-action-inner {
        padding: 38px 32px;
    }


    /* BOUNDARY */

    .pre-retirement-boundary {
        padding: 66px 0;
    }


    /* NEXT */

    .pre-retirement-next {
        padding: 58px 0 62px;
    }


    .pre-retirement-next-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }


    .pre-retirement-next-action {
        display: flex;

        justify-content: center;
    }

}


/* ============================================================
   RESPONSIVE — PHONE
   ============================================================ */

@media (max-width: 520px) {

    .pre-retirement-hero {
        padding: 48px 0 54px;
    }


    .pre-retirement-hero h1 {
        font-size: 3rem;
    }


    .pre-retirement-hero-tagline {
        font-size: 1.5rem;
    }


    .pre-retirement-hero-art {
        max-width: 260px;
    }


    .pre-retirement-intro,
    .pre-retirement-provides,
    .pre-retirement-reflection,
    .pre-retirement-action,
    .pre-retirement-boundary {
        padding: 58px 0;
    }


    .pre-retirement-intro-content h2,
    .pre-retirement-section-heading h2,
    .pre-retirement-reflection-heading h2,
    .pre-retirement-boundary-inner h2,
    .pre-retirement-next-copy h2 {
        font-size: 2.25rem;

        line-height: 1.08;
    }


    .pre-retirement-intro-quote {
        padding-left: 22px;
    }


    .pre-retirement-intro-quote p {
        font-size: 1.55rem;
    }


    .pre-retirement-provides-card {
        padding: 28px 24px;
    }


    .pre-retirement-question {
        grid-template-columns:
            36px
            1fr;

        gap: 15px;

        padding: 20px 0;
    }


    .pre-retirement-question span {
        width: 34px;
        height: 34px;
    }


    .pre-retirement-action-inner {
        padding: 34px 24px;

        border-radius: 18px;
    }


    .pre-retirement-action-inner h2 {
        font-size: 2.1rem;
    }


    .pre-retirement-next {
        padding: 54px 0;
    }


    .pre-retirement-next-link {
        width: 100%;
    }


    .pre-retirement-back {
        text-align: center;
    }

}
/* ============================================================
   PRE-RETIREMENT STEP 2
   PICTURE AN ORDINARY TUESDAY
   ------------------------------------------------------------
   Small page-specific refinements only.
   All primary styling comes from the shared pre-retirement CSS.
   ============================================================ */


/* The Section 2 title is longer than Section 1,
   so reduce it slightly while keeping the same typography,
   weight and visual treatment as the monthly pages. */

.pre-retirement-step-02-page .pre-retirement-hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 4.5rem);
}


/* Keeps the Tuesday artwork visually balanced with the text. */

.pre-retirement-step-02-page .pre-retirement-hero-art {
    max-width: 410px;
}


.pre-retirement-step-02-page .pre-retirement-hero-image {
    width: 100%;
    height: auto;
}


/* ============================================================
   STEP 2 RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {

    .pre-retirement-step-02-page .pre-retirement-hero h1 {
        font-size: clamp(2.8rem, 10vw, 3.7rem);
    }


    .pre-retirement-step-02-page .pre-retirement-hero-art {
        max-width: 300px;
        margin: 34px auto 0;
    }

}


@media (max-width: 520px) {

    .pre-retirement-step-02-page .pre-retirement-hero h1 {
        font-size: 2.65rem;
        line-height: 1.04;
    }


    .pre-retirement-step-02-page .pre-retirement-hero-art {
        max-width: 260px;
    }

}
/* ============================================================
   PRE-RETIREMENT STEP 3
   WHAT WILL YOU MISS?
   ------------------------------------------------------------
   Small page-specific refinements only.
   Primary styling comes from the shared pre-retirement CSS.
   ============================================================ */


/* Keep the hero title aligned with the shared monthly-page scale. */

.pre-retirement-step-03-page .pre-retirement-hero h1 {
    font-size: clamp(3.4rem, 5.6vw, 4.7rem);
}


/* Balance the bankers-box artwork in the hero. */

.pre-retirement-step-03-page .pre-retirement-hero-art {
    max-width: 400px;
}


.pre-retirement-step-03-page .pre-retirement-hero-image {
    width: 100%;
    height: auto;
}


/* ============================================================
   STEP 3 RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {

    .pre-retirement-step-03-page .pre-retirement-hero h1 {
        font-size: clamp(3rem, 11vw, 4rem);
    }


    .pre-retirement-step-03-page .pre-retirement-hero-art {
        max-width: 290px;
        margin: 34px auto 0;
    }

}


@media (max-width: 520px) {

    .pre-retirement-step-03-page .pre-retirement-hero h1 {
        font-size: 2.8rem;
        line-height: 1.04;
    }


    .pre-retirement-step-03-page .pre-retirement-hero-art {
        max-width: 255px;
    }

}
/* ============================================================
   PRE-RETIREMENT STEP 4
   CHECK YOUR EXPECTATIONS
   ------------------------------------------------------------
   Small page-specific refinements only.
   Primary styling comes from the shared pre-retirement CSS.
   ============================================================ */


/* The Section 4 title is longer, so scale it slightly
   while keeping the same font, weight and teal treatment. */

.pre-retirement-step-04-page .pre-retirement-hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 4.5rem);
}


/* Keep the expectations artwork balanced in the hero. */

.pre-retirement-step-04-page .pre-retirement-hero-art {
    max-width: 400px;
}


.pre-retirement-step-04-page .pre-retirement-hero-image {
    width: 100%;
    height: auto;
}


/* ============================================================
   STEP 4 RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {

    .pre-retirement-step-04-page .pre-retirement-hero h1 {
        font-size: clamp(2.8rem, 10vw, 3.7rem);
    }


    .pre-retirement-step-04-page .pre-retirement-hero-art {
        max-width: 290px;
        margin: 34px auto 0;
    }

}


@media (max-width: 520px) {

    .pre-retirement-step-04-page .pre-retirement-hero h1 {
        font-size: 2.65rem;
        line-height: 1.04;
    }


    .pre-retirement-step-04-page .pre-retirement-hero-art {
        max-width: 255px;
    }

}
/* ============================================================
   PRE-RETIREMENT STEP 5
   HAVE THE CONVERSATIONS
   ------------------------------------------------------------
   Small page-specific refinements only.
   Primary styling comes from the shared pre-retirement CSS.
   ============================================================ */


/* Slightly reduce the long hero title while preserving
   the same font, weight and teal treatment. */

.pre-retirement-step-05-page .pre-retirement-hero h1 {
    font-size: clamp(3.15rem, 5vw, 4.4rem);
}


/* Give the two-chair illustration a little more width
   because it is a broader scene than the earlier graphics. */

.pre-retirement-step-05-page .pre-retirement-hero-art {
    max-width: 440px;
}


.pre-retirement-step-05-page .pre-retirement-hero-image {
    width: 100%;
    height: auto;
}


/* ============================================================
   STEP 5 RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {

    .pre-retirement-step-05-page .pre-retirement-hero h1 {
        font-size: clamp(2.8rem, 10vw, 3.7rem);
    }


    .pre-retirement-step-05-page .pre-retirement-hero-art {
        max-width: 320px;
        margin: 34px auto 0;
    }

}


@media (max-width: 520px) {

    .pre-retirement-step-05-page .pre-retirement-hero h1 {
        font-size: 2.6rem;
        line-height: 1.04;
    }


    .pre-retirement-step-05-page .pre-retirement-hero-art {
        max-width: 280px;
    }

}
/* ============================================================
   PRE-RETIREMENT STEP 6
   LEAVE WELL
   ------------------------------------------------------------
   Small page-specific refinements only.
   Primary styling comes from the shared pre-retirement CSS.
   ============================================================ */


/* Keep the final-page hero title strong and simple. */

.pre-retirement-step-06-page .pre-retirement-hero h1 {
    font-size: clamp(3.5rem, 5.8vw, 4.8rem);
}


/* The open-door artwork is more vertical and symbolic,
   so keep it slightly narrower than the Step 5 scene. */

.pre-retirement-step-06-page .pre-retirement-hero-art {
    max-width: 380px;
}


.pre-retirement-step-06-page .pre-retirement-hero-image {
    width: 100%;
    height: auto;
}


/* ============================================================
   STEP 6 RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {

    .pre-retirement-step-06-page .pre-retirement-hero h1 {
        font-size: clamp(3rem, 11vw, 4rem);
    }


    .pre-retirement-step-06-page .pre-retirement-hero-art {
        max-width: 285px;
        margin: 34px auto 0;
    }

}


@media (max-width: 520px) {

    .pre-retirement-step-06-page .pre-retirement-hero h1 {
        font-size: 2.85rem;
        line-height: 1.04;
    }


    .pre-retirement-step-06-page .pre-retirement-hero-art {
        max-width: 250px;
    }

}

/* ============================================================
   BEFORE YOU RETIRE — MAIN HUB PAGE
   ------------------------------------------------------------
   Dedicated styling for before-you-retire.html

   PURPOSE:
   Introduces the six-step pre-retirement preparation series
   and connects it to the 12-month Quitired journey.

   VISUAL DIRECTION:
   - Same refined Quitired editorial style
   - Teal + lavender
   - Generous white space
   - Strong introductory hierarchy
   - Practical, reflective, warm
   ============================================================ */


/* ============================================================
   SHARED HUB TYPOGRAPHY
   ============================================================ */

.before-retirement-page .section-eyebrow {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}


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

.before-retirement-hero {
    padding: 78px 0 84px;
    background-color: var(--white);
}

.before-retirement-hero-grid {
    max-width: 1140px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 64px;
}

.before-retirement-hero-content h1 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(3.4rem, 5.7vw, 4.8rem);
    font-weight: 700;
    line-height: 1.02;
    margin: 8px 0 28px;
}

.before-retirement-hero-content h1 span {
    display: block;
    color: var(--lavender);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72em;
    font-style: italic;
    font-weight: 500;
    line-height: 1.12;
    margin-top: 12px;
}

.before-retirement-hero-intro {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 1.07rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.before-retirement-hero-lead {
    max-width: 660px;
    color: var(--teal);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 28px 0 30px;
}

.before-retirement-hero-button {
    margin-top: 2px;
}

.before-retirement-hero-art {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-retirement-hero-image {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
}


/* ============================================================
   WHY THIS SECTION EXISTS
   ============================================================ */

.before-retirement-why {
    padding: 96px 0 100px;
    background-color: var(--off-white);
}

.before-retirement-why-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 76px;
    align-items: start;
}

.before-retirement-why-heading {
    padding-right: 46px;
    border-right: 1px solid rgba(169, 138, 212, 0.28);
}

.before-retirement-why-heading h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 0;
}

.before-retirement-why-copy p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 20px;
}

.before-retirement-why-emphasis {
    color: var(--teal) !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    line-height: 1.55 !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
}


/* ============================================================
   WHAT BEFORE YOU RETIRE IS
   ============================================================ */

.before-retirement-purpose {
    padding: 96px 0 100px;
    background-color: var(--white);
}

.before-retirement-purpose-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.before-retirement-purpose-inner h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 30px;
}

.before-retirement-purpose-inner > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.before-retirement-purpose-quote {
    max-width: 690px;
    margin: 38px auto;
    padding: 24px 32px;
    background-color: var(--lavender-light);
    border-radius: 18px;
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}


/* ============================================================
   SIX-STEP SERIES
   ============================================================ */

.before-retirement-steps {
    padding: 100px 0 106px;
    background-color: var(--off-white);
}

.before-retirement-section-heading {
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
}

.before-retirement-section-heading h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 22px;
}

.before-retirement-section-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.before-retirement-steps-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.before-retirement-step-card {
    position: relative;
    min-height: 310px;
    padding: 34px 30px 30px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid rgba(169, 138, 212, 0.26);
    border-radius: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.before-retirement-step-card:nth-child(even) {
    background-color: var(--lavender-light);
}

.before-retirement-step-card:hover {
    transform: translateY(-3px);
    border-color: var(--lavender);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.before-retirement-step-number {
    color: var(--lavender);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.before-retirement-step-card h3 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.before-retirement-step-card > p:not(.before-retirement-step-number) {
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.before-retirement-step-link {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(169, 138, 212, 0.28);
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
}

.before-retirement-step-link::after {
    content: " →";
}

.before-retirement-step-card:hover .before-retirement-step-link {
    color: var(--lavender-dark);
}


/* ============================================================
   WHERE ARE YOU RIGHT NOW?
   ============================================================ */

.before-retirement-checkin {
    padding: 98px 0 104px;
    background-color: var(--white);
}

.before-retirement-checkin-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.before-retirement-checkin-heading {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.before-retirement-checkin-heading h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 24px;
}

.before-retirement-checkin-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.before-retirement-checkin-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.before-retirement-checkin-group {
    padding: 30px 32px;
    background-color: var(--off-white);
    border-radius: 18px;
    border: 1px solid var(--border-light);
}

.before-retirement-checkin-group:last-child {
    grid-column: 1 / -1;
    max-width: 530px;
    width: 100%;
    justify-self: center;
}

.before-retirement-checkin-group h3 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.before-retirement-checkin-group ul {
    margin: 0;
    padding-left: 21px;
}

.before-retirement-checkin-group li {
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.68;
    margin-bottom: 14px;
}

.before-retirement-checkin-group li:last-child {
    margin-bottom: 0;
}

.before-retirement-checkin-closing {
    max-width: 760px;
    margin: 48px auto 0;
    padding: 26px 30px;
    border-left: 3px solid var(--lavender);
    text-align: left;
}

.before-retirement-checkin-closing p {
    color: var(--teal);
    font-size: 1.12rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.before-retirement-checkin-closing p:last-child {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 0;
}


/* ============================================================
   HOW THIS FITS WITH QUITIRED
   ============================================================ */

.before-retirement-bridge {
    padding: 96px 0 100px;
    background:
        linear-gradient(
            180deg,
            var(--off-white),
            rgba(238, 231, 247, 0.48)
        );
}

.before-retirement-bridge-grid {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 74px;
    align-items: start;
}

.before-retirement-bridge-heading h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 0;
}

.before-retirement-bridge-copy p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 20px;
}

.before-retirement-bridge-emphasis {
    color: var(--teal) !important;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
    font-style: italic;
    font-weight: 600;
    line-height: 1.45 !important;
    margin-top: 32px !important;
    margin-bottom: 0 !important;
}


/* ============================================================
   FINAL START SECTION
   ============================================================ */

.before-retirement-start {
    padding: 94px 0 100px;
    background-color: var(--white);
}

.before-retirement-start-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.before-retirement-start-inner h2 {
    color: var(--teal);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 8px 0 24px;
}

.before-retirement-start-inner > p:not(.section-eyebrow) {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.before-retirement-start-inner .button {
    margin-top: 18px;
}


/* ============================================================
   RESPONSIVE — SMALL DESKTOP / LAPTOP
   ============================================================ */

@media (max-width: 1050px) {

    .before-retirement-hero-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 50px;
    }

    .before-retirement-why-grid,
    .before-retirement-bridge-grid {
        gap: 48px;
    }

    .before-retirement-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 760px) {

    .before-retirement-hero {
        padding: 58px 0 66px;
    }

    .before-retirement-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .before-retirement-hero-content h1 {
        font-size: clamp(3rem, 11vw, 4rem);
    }

    .before-retirement-hero-content h1 span {
        font-size: 0.75em;
    }

    .before-retirement-hero-art {
        max-width: 390px;
        margin: 0 auto;
    }

    .before-retirement-why {
        padding: 68px 0;
    }

    .before-retirement-why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .before-retirement-why-heading {
        padding-right: 0;
        padding-bottom: 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(169, 138, 212, 0.28);
    }

    .before-retirement-purpose {
        padding: 68px 0;
    }

    .before-retirement-steps {
        padding: 70px 0;
    }

    .before-retirement-section-heading {
        text-align: left;
        margin-bottom: 40px;
    }

    .before-retirement-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .before-retirement-step-card {
        min-height: 0;
    }

    .before-retirement-checkin {
        padding: 70px 0;
    }

    .before-retirement-checkin-heading {
        text-align: left;
        margin-bottom: 40px;
    }

    .before-retirement-checkin-groups {
        grid-template-columns: 1fr;
    }

    .before-retirement-checkin-group:last-child {
        grid-column: auto;
        max-width: none;
    }

    .before-retirement-bridge {
        padding: 68px 0;
    }

    .before-retirement-bridge-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .before-retirement-start {
        padding: 68px 0;
    }

}


/* ============================================================
   RESPONSIVE — PHONE
   ============================================================ */

@media (max-width: 520px) {

    .before-retirement-hero {
        padding: 50px 0 56px;
    }

    .before-retirement-hero-content h1 {
        font-size: 2.75rem;
    }

    .before-retirement-hero-content h1 span {
        font-size: 0.76em;
        margin-top: 10px;
    }

    .before-retirement-hero-intro {
        font-size: 1rem;
    }

    .before-retirement-hero-lead {
        font-size: 1.08rem;
    }

    .before-retirement-hero-art {
        max-width: 320px;
    }

    .before-retirement-hero-button {
        width: 100%;
    }

    .before-retirement-why,
    .before-retirement-purpose,
    .before-retirement-steps,
    .before-retirement-checkin,
    .before-retirement-bridge,
    .before-retirement-start {
        padding: 58px 0;
    }

    .before-retirement-why-heading h2,
    .before-retirement-purpose-inner h2,
    .before-retirement-section-heading h2,
    .before-retirement-checkin-heading h2,
    .before-retirement-bridge-heading h2,
    .before-retirement-start-inner h2 {
        font-size: 2.25rem;
        line-height: 1.08;
    }

    .before-retirement-purpose-quote {
        padding: 22px 22px;
        font-size: 1.5rem;
    }

    .before-retirement-step-card {
        padding: 28px 24px;
    }

    .before-retirement-checkin-group {
        padding: 26px 24px;
    }

    .before-retirement-checkin-closing {
        padding-left: 22px;
        padding-right: 0;
    }

    .before-retirement-start-inner .button {
        width: 100%;
    }

}
/* =========================================================
   SHOP PAGE
   ========================================================= */

.shop-banner {
    padding-top: 18px;
}

.shop-banner-image {
    display: block;
    width: 100%;
    height: auto;
}
/* =========================================================
   SHOP PAGE
   Main Quitired storefront
   ========================================================= */


/* ---------------------------------------------------------
   STOREFRONT BANNER
   --------------------------------------------------------- */

.shop-banner {
    padding-top: 18px;
}

.shop-banner-image {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   SHOP INTRODUCTION
   --------------------------------------------------------- */

.shop-intro {
    padding: 72px 0 64px;
    background: #ffffff;
}

.shop-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shop-intro h1 {
    margin: 14px 0 24px;
    color: #1f6f78;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.05;
}

.shop-intro h1 span {
    display: block;
    color: #a58acb;
    font-style: italic;
}

.shop-intro-copy {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #5f6268;
    font-size: 1.15rem;
    line-height: 1.8;
}

.shop-intro-copy-secondary {
    max-width: 820px;
    font-size: 1.05rem;
}


/* ---------------------------------------------------------
   FEATURED COMPANION COLLECTION
   --------------------------------------------------------- */

.shop-featured-product {
    padding: 82px 0;
    background: #f7f4fb;
}

.shop-product-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.shop-product-heading h2 {
    margin: 12px 0 14px;
    color: #1f6f78;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    line-height: 1.1;
}

.shop-product-tagline {
    margin: 0;
    color: #8e74b7;
    font-size: 1.28rem;
    font-style: italic;
    line-height: 1.5;
}


/* Main Companion feature area */

.shop-companion-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}


/* Companion story */

.shop-companion-copy {
    padding: 10px 8px 0;
}

.shop-companion-copy p {
    margin: 0 0 22px;
    color: #5f6268;
    font-size: 1.08rem;
    line-height: 1.85;
}


/* Purchase option cards */

.shop-companion-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.shop-purchase-option {
    padding: 34px 30px;
    background: #ffffff;
    border: 1px solid rgba(31, 111, 120, 0.16);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(48, 62, 69, 0.08);
}

.shop-purchase-option-featured {
    border: 2px solid #a58acb;
    box-shadow: 0 16px 38px rgba(118, 91, 154, 0.14);
}

.shop-option-label {
    margin: 0 0 12px;
    color: #1f6f78;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.shop-purchase-option-featured .shop-option-label {
    color: #8e74b7;
}

.shop-purchase-option h3 {
    margin: 0 0 18px;
    color: #33363b;
    font-size: 1.45rem;
    line-height: 1.25;
}

.shop-option-price {
    margin: 0 0 18px;
    color: #1f6f78;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.shop-option-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6e7177;
}

.shop-purchase-option p:not(.shop-option-label):not(.shop-option-price):not(.shop-option-savings) {
    margin: 0;
    color: #64676c;
    font-size: 0.98rem;
    line-height: 1.7;
}

.shop-option-savings {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(165, 138, 203, 0.28);
    color: #8e74b7;
    font-weight: 700;
    line-height: 1.5;
}


/* Companion CTA */

.shop-product-action {
    max-width: 760px;
    margin: 48px auto 0;
    text-align: center;
}

.shop-primary-button,
.shop-secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.shop-primary-button {
    background: #1f6f78;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 111, 120, 0.18);
}

.shop-primary-button:hover,
.shop-primary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(31, 111, 120, 0.24);
}

.shop-product-action-note {
    margin: 16px auto 0;
    max-width: 620px;
    color: #74777c;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   MORE TO COME
   --------------------------------------------------------- */

.shop-more-to-come {
    padding: 76px 0;
    background: #ffffff;
}

.shop-more-to-come-inner {
    max-width: 940px;
    margin: 0 auto;
}

.shop-more-to-come-content {
    padding: 46px 52px;
    text-align: center;
    border: 1px solid rgba(31, 111, 120, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(31, 111, 120, 0.045),
            rgba(165, 138, 203, 0.07)
        );
}

.shop-more-to-come h2 {
    margin: 12px 0 18px;
    color: #1f6f78;
    font-size: clamp(2rem, 3vw, 3rem);
}

.shop-more-to-come p {
    max-width: 720px;
    margin: 0 auto;
    color: #62656a;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   SHOP CLOSING
   --------------------------------------------------------- */

.shop-closing {
    padding: 82px 0 88px;
    background: #eef7f6;
}

.shop-closing-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.shop-closing-small {
    margin: 0 0 14px;
    color: #8e74b7;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.shop-closing h2 {
    margin: 0 0 12px;
    color: #1f6f78;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.12;
}

.shop-closing-inner > p:not(.shop-closing-small) {
    margin: 0 0 28px;
    color: #66696e;
    font-size: 1.15rem;
}
.shop-closing-pre-retirement {
    margin-top: 24px;
    margin-bottom: 18px;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 600;

    text-align: center;
}

.shop-closing-pre-retirement a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.shop-closing-pre-retirement a:hover {
    color: var(--teal);
    text-decoration: underline;
}

.shop-secondary-button {
    background: #a58acb;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(165, 138, 203, 0.2);
}

.shop-secondary-button:hover,
.shop-secondary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(165, 138, 203, 0.28);
}


/* =========================================================
   SHOP PAGE - TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .shop-intro {
        padding: 60px 0 54px;
    }

    .shop-featured-product {
        padding: 68px 0;
    }

    .shop-companion-feature {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 850px;
    }

    .shop-companion-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .shop-companion-options {
        max-width: 760px;
        margin: 0 auto;
        width: 100%;
    }

}


/* =========================================================
   SHOP PAGE - SMALL TABLET / LARGE PHONE
   ========================================================= */

@media (max-width: 760px) {

    .shop-banner {
        padding-top: 14px;
    }

    .shop-intro {
        padding: 48px 0 44px;
    }

    .shop-intro-inner {
        padding: 0 4px;
    }

    .shop-intro h1 {
        margin-bottom: 20px;
    }

    .shop-intro-copy {
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .shop-featured-product {
        padding: 56px 0;
    }

    .shop-product-heading {
        margin-bottom: 34px;
    }

    .shop-product-tagline {
        font-size: 1.12rem;
    }

    .shop-companion-feature {
        gap: 26px;
    }

    .shop-companion-copy {
        padding-top: 0;
        text-align: left;
    }

    .shop-companion-copy p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .shop-companion-options {
        grid-template-columns: 1fr;
    }

    .shop-purchase-option {
        padding: 28px 24px;
    }

    .shop-product-action {
        margin-top: 36px;
    }

    .shop-more-to-come {
        padding: 54px 0;
    }

    .shop-more-to-come-content {
        padding: 34px 26px;
    }

    .shop-closing {
        padding: 58px 0 64px;
    }

}


/* =========================================================
   SHOP PAGE - PHONE
   ========================================================= */

@media (max-width: 480px) {

    .shop-banner {
        padding-top: 12px;
    }

    .shop-intro {
        padding: 40px 0 38px;
    }

    .shop-intro h1 {
        font-size: 2.4rem;
    }

    .shop-featured-product {
        padding: 48px 0;
    }

    .shop-product-heading h2 {
        font-size: 2.2rem;
    }

    .shop-product-tagline {
        font-size: 1.05rem;
    }

    .shop-purchase-option {
        border-radius: 16px;
        padding: 26px 22px;
    }

    .shop-purchase-option h3 {
        font-size: 1.32rem;
    }

    .shop-option-price {
        font-size: 2.15rem;
    }

    .shop-primary-button,
    .shop-secondary-button {
        width: 100%;
        max-width: 340px;
        padding: 14px 20px;
    }

    .shop-more-to-come-content {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .shop-closing h2 {
        font-size: 2.2rem;
    }

}
/* =========================================================
   COMPANION SERIES PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.companions-hero {
    padding: 76px 0 66px;
    background: #ffffff;
}

.companions-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.companions-hero h1 {
    margin: 14px 0 24px;
    color: #1f6f78;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.05;
}

.companions-hero h1 span {
    display: block;
    color: #a58acb;
    font-style: italic;
}

.companions-hero-lead {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #4f5359;
    font-size: 1.22rem;
    line-height: 1.7;
}

.companions-hero-copy {
    max-width: 820px;
    margin: 0 auto;
    color: #666a70;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FULL-YEAR SERIES FEATURE
   --------------------------------------------------------- */

.companions-series-feature {
    padding: 82px 0;
    background: #f7f4fb;
}

.companions-series-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 54px;
    align-items: center;

    max-width: 1180px;
    margin: 0 auto;
    padding: 52px;

    background: #ffffff;
    border: 2px solid rgba(165, 138, 203, 0.34);
    border-radius: 28px;

    box-shadow:
        0 22px 52px rgba(67, 56, 82, 0.10);
}

.companions-series-label {
    margin: 0 0 12px;
    color: #8e74b7;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.companions-series-content h2 {
    margin: 0 0 16px;
    color: #1f6f78;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
}

.companions-series-tagline {
    margin: 0 0 22px;
    color: #8e74b7;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.55;
}

.companions-series-content > p:not(.companions-series-label):not(.companions-series-tagline):not(.companions-series-note) {
    margin: 0 0 22px;
    color: #62666c;
    font-size: 1.04rem;
    line-height: 1.8;
}


/* Benefit boxes */

.companions-series-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 24px;
}

.companions-benefit {
    padding: 20px 14px;
    text-align: center;

    background: #f5f9f8;
    border: 1px solid rgba(31, 111, 120, 0.14);
    border-radius: 16px;
}

.companions-benefit span {
    display: block;
    margin-bottom: 6px;

    color: #1f6f78;
    font-size: 1.65rem;
    font-weight: 700;
}

.companions-benefit p {
    margin: 0;
    color: #6a6e74;
    font-size: 0.9rem;
    line-height: 1.4;
}

.companions-series-note {
    margin: 0 0 26px;
    color: #74777d;
    font-size: 0.94rem;
    line-height: 1.6;
}


/* Purchase button */

.companions-series-button {
    display: inline-block;
    padding: 15px 28px;

    background: #1f6f78;
    color: #ffffff;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;

    box-shadow:
        0 10px 24px rgba(31, 111, 120, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.companions-series-button:hover,
.companions-series-button:focus-visible {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(31, 111, 120, 0.24);
}


/* ---------------------------------------------------------
   FULL-YEAR VISUAL GRID
   --------------------------------------------------------- */

.companions-series-visual {
    text-align: center;
}

.companions-series-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.companions-series-mini-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    background: #ffffff;

    border-radius: 18px;
    box-shadow:
        0 12px 26px rgba(53, 59, 63, 0.10);
}

.companions-series-visual-caption {
    margin: 18px 0 0;
    color: #8e74b7;
    font-size: 1rem;
    font-style: italic;
}


/* ---------------------------------------------------------
   INDIVIDUAL COMPANIONS INTRO
   --------------------------------------------------------- */

.companions-individual-intro {
    padding: 72px 0 50px;
    background: #ffffff;
}

.companions-individual-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.companions-individual-intro h2 {
    margin: 12px 0 16px;
    color: #1f6f78;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.companions-individual-intro p {
    max-width: 700px;
    margin: 0 auto 12px;
    color: #63676d;
    font-size: 1.05rem;
    line-height: 1.75;
}

.companions-start-note {
    max-width: 720px !important;
    margin: 24px auto 0 !important;
    padding: 16px 22px;

    background-color: var(--lavender-light);
    border-radius: 12px;

    color: var(--text-soft) !important;
    font-style: normal;
    line-height: 1.6;
}

.companions-start-note a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.companions-start-note a:hover {
    color: var(--teal);
    text-decoration: underline;
}

/* Keep all Companion page section eyebrows lavender */
.companions-page .section-eyebrow {
    color: var(--lavender);
}
/* ---------------------------------------------------------
   12-CARD COMPANION GRID
   --------------------------------------------------------- */

.companions-grid-section {
    padding: 20px 0 84px;
    background: #ffffff;
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.companion-product-card {
    scroll-margin-top: 120px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(31, 111, 120, 0.13);
    border-radius: 22px;

    box-shadow:
        0 14px 34px rgba(47, 58, 64, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.companion-product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(47, 58, 64, 0.12);
}


/* Product artwork */

.companion-product-image {
    padding: 20px 20px 0;
}

.companion-product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    border-radius: 16px;
}


/* Product content */

.companion-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px 24px 26px;
}

.companion-product-month {
    margin: 0 0 8px;

    color: #8e74b7;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.companion-product-content h3 {
    margin: 0 0 10px;

    color: #1f6f78;
    font-size: 1.6rem;
    line-height: 1.18;
}

.companion-product-theme {
    margin: 0 0 15px;

    color: #8e74b7;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.45;
}

.companion-product-content > p:not(.companion-product-month):not(.companion-product-theme) {
    margin: 0 0 22px;

    color: #64686e;
    font-size: 0.98rem;
    line-height: 1.7;
}


/* Price and purchase button */

.companion-product-bottom {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid rgba(31, 111, 120, 0.12);
}

.companion-product-price {
    margin: 0 0 14px !important;

    color: #1f6f78 !important;
    font-size: 1.9rem !important;
    font-weight: 700;
    line-height: 1 !important;
}

.companion-product-bottom a {
    display: inline-block;
    width: 100%;

    padding: 13px 16px;

    background: #f1ecf8;
    color: #6f5795;

    border: 1px solid rgba(142, 116, 183, 0.22);
    border-radius: 999px;

    text-align: center;
    text-decoration: none;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.companion-product-bottom a:hover,
.companion-product-bottom a:focus-visible {
    background: #a58acb;
    color: #ffffff;

    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   FULL-YEAR REMINDER
   --------------------------------------------------------- */

.companions-series-reminder {
    padding: 78px 0;
    background: #eef7f6;
}

.companions-series-reminder-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.companions-series-reminder h2 {
    margin: 12px 0 16px;

    color: #1f6f78;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.companions-series-reminder p {
    margin: 0 auto 12px;

    color: #62666c;
    font-size: 1.05rem;
    line-height: 1.7;
}

.companions-reminder-savings {
    margin-bottom: 28px !important;

    color: #8e74b7 !important;
    font-weight: 700;
}


/* ---------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------- */

.companions-how-it-works {
    padding: 82px 0;
    background: #ffffff;
}

.companions-section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.companions-section-heading h2 {
    margin: 12px 0 0;

    color: #1f6f78;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.companions-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.companions-how-step {
    padding: 34px 28px;

    text-align: center;

    background: #f8f7fb;
    border-radius: 20px;
}
.companions-how-step {
    padding: 34px 28px;
    text-align: center;
    background: #f8f7fb;
    border-radius: 20px;
}

/* Highlight Step 1 because it explains where to begin */
.companions-how-grid .companions-how-step:first-child {
    background-color: var(--lavender-light) !important;
    border: 2px solid var(--lavender) !important;
}

.companions-how-grid .companions-how-step:first-child a {
    color: var(--lavender-dark) !important;
    font-weight: 700;
    text-decoration: none;
}

.companions-how-grid .companions-how-step:first-child a:hover {
    color: var(--teal) !important;
    text-decoration: underline;
}

.companions-how-step span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin: 0 auto 18px;

    background: #1f6f78;
    color: #ffffff;

    border-radius: 50%;

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

.companions-how-step h3 {
    margin: 0 0 12px;

    color: #1f6f78;
    font-size: 1.35rem;
}

.companions-how-step p {
    margin: 0;

    color: #65696f;
    font-size: 0.98rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.companions-faq {
    padding: 82px 0;
    background: #f7f4fb;
}
.companions-faq-item a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.companions-faq-item a:hover {
    color: var(--teal);
    text-decoration: underline;
}
.companions-faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.companions-faq-list {
    display: grid;
    gap: 14px;
}

.companions-faq-item {
    padding: 0 24px;

    background: #ffffff;
    border: 1px solid rgba(31, 111, 120, 0.12);
    border-radius: 16px;
}

.companions-faq-item summary {
    position: relative;

    padding: 20px 38px 20px 0;

    color: #1f6f78;

    cursor: pointer;

    font-size: 1.05rem;
    font-weight: 700;

    list-style: none;
}

.companions-faq-item summary::-webkit-details-marker {
    display: none;
}

.companions-faq-item summary::after {
    content: "+";

    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);

    color: #8e74b7;
    font-size: 1.5rem;
    font-weight: 400;
}

.companions-faq-item[open] summary::after {
    content: "−";
}

.companions-faq-item p {
    margin: 0 0 22px;
    padding-right: 24px;

    color: #666a70;
    font-size: 0.98rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CLOSING CTA
   --------------------------------------------------------- */

.companions-closing {
    padding: 84px 0 90px;
    background: #ffffff;
}

.companions-closing-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.companions-closing-small {
    margin: 0 0 14px;

    color: #8e74b7;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.companions-closing h2 {
    margin: 0 0 12px;

    color: #1f6f78;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.companions-closing p {
    margin: 0 0 28px;

    color: #676b71;
    font-size: 1.08rem;
}
.companions-closing-pre-retirement {
    margin-top: 24px;
    margin-bottom: 18px;

    color: var(--text-soft);

    font-size: 1rem;
    font-weight: 600;

    text-align: center;
}

.companions-closing-pre-retirement a {
    color: var(--lavender-dark);
    font-weight: 700;
    text-decoration: none;
}

.companions-closing-pre-retirement a:hover {
    color: var(--teal);
    text-decoration: underline;
}
.companions-closing-button {
    display: inline-block;

    padding: 15px 30px;

    background: #a58acb;
    color: #ffffff;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

    box-shadow:
        0 10px 24px rgba(165, 138, 203, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.companions-closing-button:hover,
.companions-closing-button:focus-visible {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(165, 138, 203, 0.3);
}


/* =========================================================
   COMPANION PAGE - TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .companions-series-card {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 44px;
    }

    .companions-series-visual {
        max-width: 620px;
        margin: 0 auto;
    }

    .companions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

}


/* =========================================================
   COMPANION PAGE - SMALL TABLET / LARGE PHONE
   ========================================================= */

@media (max-width: 760px) {

    .companions-hero {
        padding: 56px 0 50px;
    }

    .companions-hero-lead {
        font-size: 1.08rem;
    }

    .companions-series-feature {
        padding: 58px 0;
    }

    .companions-series-card {
        padding: 32px 28px;

        border-radius: 22px;
    }

    .companions-series-benefits {
        grid-template-columns: 1fr;
    }

    .companions-series-mini-grid {
        gap: 12px;
    }

    .companions-individual-intro {
        padding: 54px 0 38px;
    }

    .companions-grid-section {
        padding-bottom: 60px;
    }

    .companions-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
    }

    .companion-product-image {
        padding: 18px 18px 0;
    }

    .companion-product-content {
        padding: 22px;
    }

    .companions-series-reminder {
        padding: 58px 0;
    }

    .companions-how-it-works {
        padding: 60px 0;
    }

    .companions-how-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
    }

    .companions-faq {
        padding: 60px 0;
    }

    .companions-closing {
        padding: 62px 0 68px;
    }

}


/* =========================================================
   COMPANION PAGE - PHONE
   ========================================================= */

@media (max-width: 480px) {

    .companions-hero {
        padding: 46px 0 42px;
    }

    .companions-hero h1 {
        font-size: 2.35rem;
    }

    .companions-series-card {
        padding: 26px 20px;
    }

    .companions-series-content h2 {
        font-size: 2.2rem;
    }

    .companions-series-tagline {
        font-size: 1.05rem;
    }

    .companions-series-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .companions-series-button,
    .companions-closing-button {
        width: 100%;
        max-width: 360px;

        padding: 14px 18px;

        text-align: center;
    }

    .companions-individual-intro h2 {
        font-size: 2.2rem;
    }

    .companion-product-card {
        border-radius: 18px;
    }

    .companion-product-image img {
        border-radius: 14px;
    }

    .companions-how-step {
        padding: 28px 22px;
    }


    
    .companions-faq-item {
        padding: 0 18px;
    }

    .companions-closing h2 {
        font-size: 2.25rem;
    }

}
/* Keep Shop hero headline on one line on desktop */
@media (min-width: 1051px) {

    .shop-intro h1 {
        font-size: clamp(2.8rem, 4.2vw, 4rem);
        white-space: nowrap;
    }

}
@media (min-width: 1051px) {

    .shop-intro h1 span {
        font-size: 0.93em;
    }

}
.month-12-previous-wrap {
    width: 100%;
    margin-top: 44px;
    text-align: left;
    align-self: stretch;
}
/* ============================================================
   RESOURCES PAGE
   Paste this entire block at the BOTTOM of css/style.css
   ============================================================ */


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.resources-page .resources-hero {
    background-color: var(--off-white);
    padding: 82px 0 88px;
}

.resources-page .resources-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 72px;
}

.resources-page .resources-hero-copy {
    max-width: 650px;
}

.resources-page .resources-hero-copy h1 {
    color: var(--teal);
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1.04;
    margin: 8px 0 28px;
}

.resources-page .resources-hero-copy h1 span {
    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 400;
    font-size: 0.93em;
    margin-top: 10px;
}

.resources-page .resources-hero-lead {
    color: var(--teal);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 18px;
}

.resources-page .resources-hero-description {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.8;
    margin: 0;
}

.resources-page .resources-hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resources-page .resources-hero-image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 22px;
}


/* ------------------------------------------------------------
   SHARED SECTION HEADING
   ------------------------------------------------------------ */

.resources-page .resources-section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.resources-page .resources-section-heading-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.resources-page .resources-section-heading h2 {
    color: var(--teal);
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin: 8px 0 20px;
}

.resources-page .resources-section-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}


/* ------------------------------------------------------------
   RESOURCE PATHS
   ------------------------------------------------------------ */

.resources-page .resources-paths {
    padding: 100px 0;
    background-color: var(--white);
}

.resources-page .resources-path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.resources-page .resources-path-card {
    background-color: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 34px 30px 32px;
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.resources-page .resources-path-number {
    color: var(--lavender);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 26px;
}

.resources-page .resources-path-card h3 {
    color: var(--teal);
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.resources-page .resources-path-card > p:not(.resources-path-number) {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 25px;
}

.resources-page .resources-text-link {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.resources-page .resources-text-link:hover {
    color: var(--lavender);
}


/* ------------------------------------------------------------
   BOOK LIST
   ------------------------------------------------------------ */

.resources-page .resources-books {
    padding: 105px 0 110px;
    background-color: var(--off-white);
}

.resources-page .resources-book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.resources-page .resources-book-card {
    position: relative;
    background-color: var(--white);
    border: 1px solid rgba(169, 138, 212, 0.28);
    border-radius: 18px;
    padding: 30px 28px 28px;
    min-height: 235px;
    display: flex;
    flex-direction: column;
}

.resources-page .resources-book-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 54px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background-color: var(--lavender);
}

.resources-page .resources-book-card:nth-child(even)::before {
    background-color: var(--teal);
}

.resources-page .resources-book-month {
    color: var(--lavender);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.25px;
    line-height: 1.4;
    margin: 8px 0 18px;
}

.resources-page .resources-book-card:nth-child(even) .resources-book-month {
    color: var(--teal);
}

.resources-page .resources-book-card h3 {
    color: var(--teal);
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.resources-page .resources-book-author {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 22px;
}

.resources-page .resources-book-note {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-top: -6px;
    margin-bottom: 22px;
}

.resources-page .resources-book-card a {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.resources-page .resources-book-card a:hover {
    color: var(--lavender);
}

.resources-page .resources-book-card-finale {
    background-color: var(--lavender-light);
}


/* ------------------------------------------------------------
   COMPANION FEATURE
   ------------------------------------------------------------ */

.resources-page .resources-companions {
    padding: 105px 0;
    background-color: var(--teal);
}

.resources-page .resources-companions-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 75px;
    align-items: center;
}

.resources-page .resources-companions .section-eyebrow {
    color: var(--lavender-light);
}

.resources-page .resources-companions-copy h2 {
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 3.25rem);
    line-height: 1.12;
    margin: 8px 0 22px;
}

.resources-page .resources-companions-copy > p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.8;
}

.resources-page .resources-companions-copy .resources-companions-lead {
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.6;
}

.resources-page .resources-companions-side {
    background-color: var(--white);
    border-radius: 22px;
    padding: 36px;
}

.resources-page .resources-side-label {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.resources-page .resources-companion-option {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: baseline;
}

.resources-page .resources-companion-option strong {
    color: var(--teal);
    font-size: 1.05rem;
}

.resources-page .resources-companion-option span {
    color: var(--lavender);
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

.resources-page .resources-companion-side-note {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-top: 24px;
}


/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */

.resources-page .resources-primary-button,
.resources-page .resources-secondary-button {
    display: inline-block;
    border-radius: 8px;
    padding: 14px 24px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.resources-page .resources-primary-button {
    background-color: var(--lavender);
    color: var(--white);
    margin-top: 26px;
}

.resources-page .resources-primary-button:hover {
    background-color: var(--white);
    color: var(--teal);
}

.resources-page .resources-secondary-button {
    background-color: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.resources-page .resources-secondary-button:hover {
    background-color: var(--teal);
    color: var(--white);
}


/* ------------------------------------------------------------
   FREE RESOURCES
   ------------------------------------------------------------ */

.resources-page .resources-free {
    padding: 105px 0;
    background-color: var(--lavender-light);
}

.resources-page .resources-free-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.resources-page .resources-free-heading h2 {
    color: var(--teal);
    font-size: clamp(2.3rem, 4vw, 3.15rem);
    line-height: 1.12;
    margin: 8px 0 20px;
}

.resources-page .resources-free-heading > p:not(.section-eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}

.resources-page .resources-free-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 45px;
    border: 1px solid rgba(169, 138, 212, 0.22);
}

.resources-page .resources-free-label {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.resources-page .resources-free-card h3 {
    color: var(--teal);
    font-size: 2rem;
    margin-bottom: 16px;
}

.resources-page .resources-free-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

.resources-page .resources-free-card .resources-secondary-button {
    margin-top: 24px;
}


/* ------------------------------------------------------------
   BEFORE YOU RETIRE
   ------------------------------------------------------------ */

.resources-page .resources-before-retire {
    padding: 105px 0;
    background-color: var(--white);
}

.resources-page .resources-before-retire-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 75px;
    align-items: start;
}

.resources-page .resources-before-retire h2 {
    color: var(--teal);
    font-size: clamp(2.35rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-top: 8px;
}

.resources-page .resources-before-retire-copy p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.8;
}

.resources-page .resources-before-retire .resources-primary-button:hover {
    background-color: var(--teal);
    color: var(--white);
}


/* ------------------------------------------------------------
   CLOSING
   ------------------------------------------------------------ */

.resources-page .resources-closing {
    padding: 95px 0 100px;
    background-color: var(--off-white);
}

.resources-page .resources-closing-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.resources-page .resources-closing-small {
    color: var(--lavender);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.7px;
    margin-bottom: 14px;
}

.resources-page .resources-closing h2 {
    color: var(--teal);
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 15px;
}

.resources-page .resources-closing p:not(.resources-closing-small) {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .resources-page .resources-path-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-page .resources-book-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-page .resources-companions-inner,
    .resources-page .resources-free-inner,
    .resources-page .resources-before-retire-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


@media (max-width: 900px) {

    .resources-page .resources-hero {
        padding: 70px 0 75px;
    }

    .resources-page .resources-hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .resources-page .resources-hero-copy {
        max-width: 760px;
    }

    .resources-page .resources-hero-art {
        justify-content: flex-start;
    }

    .resources-page .resources-hero-image {
        max-width: 420px;
    }
}


@media (max-width: 620px) {

    .resources-page .resources-hero,
    .resources-page .resources-paths,
    .resources-page .resources-books,
    .resources-page .resources-companions,
    .resources-page .resources-free,
    .resources-page .resources-before-retire,
    .resources-page .resources-closing {
        padding: 72px 0;
    }

    .resources-page .resources-hero-copy h1 {
        font-size: clamp(2.55rem, 12vw, 3.35rem);
    }

    .resources-page .resources-hero-image {
        max-width: 100%;
        border-radius: 18px;
    }

    .resources-page .resources-path-grid,
    .resources-page .resources-book-grid {
        grid-template-columns: 1fr;
    }

    .resources-page .resources-path-card,
    .resources-page .resources-book-card {
        min-height: 0;
    }

    .resources-page .resources-companions-side,
    .resources-page .resources-free-card {
        padding: 30px 24px;
    }

    .resources-page .resources-companion-option {
        flex-direction: column;
        gap: 6px;
    }

    .resources-page .resources-primary-button,
    .resources-page .resources-secondary-button {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   FREE COMPANION INTRODUCTION
   ========================================================= */

.companion-free-resource {
    margin-top: 2rem;
}

.companion-free-label {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8f70c7;
}

.companion-free-resource h3 {
    margin-bottom: 0.75rem;
    color: #167c83;
}

.companion-free-resource p {
    margin-bottom: 1.25rem;
}

.companion-free-button {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    border: 2px solid #8f70c7;
    border-radius: 999px;

    color: #8f70c7;
    background: #ffffff;

    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.companion-free-button:hover,
.companion-free-button:focus {
    background: #8f70c7;
    color: #ffffff;
    transform: translateY(-1px);
}
.companion-free-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.companion-free-button-secondary {
    background: #8f70c7;
    color: #ffffff;
}

.companion-free-button-secondary:hover,
.companion-free-button-secondary:focus {
    background: #7d60b6;
    color: #ffffff;
}
/* =========================================================
   MOBILE — UNRELEASED MONTH PAGE
   ========================================================= */

@media (max-width: 768px) {

    .months-page-hero-inner h1 {
        font-size: 2.1rem;
        line-height: 1.05;
    }

    .months-page-hero-accent {
        font-size: 1.3rem;
        line-height: 1.35;
    }

    .months-page-hero-copy {
        font-size: 1rem;
        line-height: 1.5;
    }

    .months-closing-button {
        font-size: 1rem;
        padding: 0.9rem 1.3rem;
    }

}
/* =========================================================
   ABOUT PAGE — MOBILE GRAPHIC FIXES
   ========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------
       Retirement calendar section
       Stack text and graphic vertically
       ----------------------------------------- */

    .about-retirement-beats-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-retirement-beats {
        width: 100%;
    }

    .about-calendar-graphic {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .about-calendar-graphic img {
        width: 100%;
        height: auto;
    }


    /* -----------------------------------------
       Experiment / laboratory watermark
       Keep it subtle and out of the copy
       ----------------------------------------- */

    .about-quitired-beginning::after {
        right: -70px;
        top: 330px;

        width: 300px;
        height: 300px;

        opacity: 0.07;
        background-position: center;
        background-size: contain;
    }

}
/* =========================================================
   MAILERLITE — RETIREMENT RESET SIGNUP
   ========================================================= */

.signup-box {
    background-color: var(--lavender-light);
    border: 1px solid #E4D9F2;
    border-radius: 20px;
    padding: 32px;
}

.signup-title {
    color: var(--teal);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.signup-intro {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 22px;
}


/* Remove MailerLite's default container styling */

#mlb2-46090898.ml-form-embedContainer,
#mlb2-46090898 .ml-form-embedWrapper,
#mlb2-46090898 .ml-form-embedBody {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}


/* Form labels and fields */

#mlb2-46090898 label {
    display: block;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 5px;
}

#mlb2-46090898 input[type="text"],
#mlb2-46090898 input[type="email"] {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 14px;

    background-color: var(--white);
    color: var(--text-dark);

    border: 1px solid #DADADA;
    border-radius: 7px;

    font: inherit;
    outline: none;
}

#mlb2-46090898 input[type="text"]:focus,
#mlb2-46090898 input[type="email"]:focus {
    border-color: var(--lavender);
}


/* Submit button */

#mlb2-46090898 .ml-form-embedSubmit {
    margin-top: 6px;
}

#mlb2-46090898 .ml-form-embedSubmit button.primary {
    width: 100%;

    border: none;
    border-radius: 7px;

    background-color: var(--lavender);
    color: var(--white);

    padding: 14px 18px;

    font: inherit;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

#mlb2-46090898 .ml-form-embedSubmit button.primary:hover {
    background-color: var(--teal);
    transform: translateY(-2px);
}


/* Privacy / mailing-list note */

#mlb2-46090898 .signup-note {
    color: var(--text-soft);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 14px;
    margin-bottom: 0;
}


/* Successful signup message */

#mlb2-46090898 .reset-success-message {
    background-color: var(--white);
    border: 1px solid var(--lavender);
    border-radius: 14px;

    padding: 28px;

    text-align: center;
}

#mlb2-46090898 .reset-success-title {
    color: var(--teal);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

#mlb2-46090898 .reset-success-message p:last-child {
    color: var(--text-soft);
    margin-bottom: 0;
}


/* Mobile */

@media (max-width: 700px) {

    .signup-box {
        padding: 24px 20px;
    }

    .signup-title {
        font-size: 1.3rem;
    }

}
/* ============================================================
   MONTH 7 — PERMISSION PHOTO + PERMISSION SLIP
   ============================================================ */

.month-07-permission-bottom {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    align-items: center;
    gap: 42px;

    margin-top: 10px;
}


/* Jackie photo */

.month-07-permission-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.month-07-permission-photo img {
    width: 100%;
    max-width: 300px;
    height: auto;

    border-radius: 22px;
}


/* Adjust existing permission slip for its new position */

.month-07-permission-bottom .month-07-permission-slip {
    grid-column: auto;

    width: 100%;
    margin: 0;

    padding: 34px 38px;
}


/* Tablet / mobile */

@media (max-width: 760px) {

    .month-07-permission-bottom {
        grid-template-columns: 1fr;
        gap: 28px;

        width: 100%;
    }

    .month-07-permission-photo img {
        max-width: 320px;
        margin: 0 auto;
    }

}
/* =========================================================
   COMPANION INTRODUCTION — CENTERED
   ========================================================= */

.companion-free-resource {
    text-align: center;
}

.companion-free-resource p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.companion-free-actions {
    justify-content: center;
}
/* ==========================================
   FOOTER NEWSLETTER
   ========================================== */

.footer-newsletter {
    max-width: 520px;
}

.footer-newsletter h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    color: #ffffff;
}

.footer-newsletter p {
    margin: 0 0 18px;
    color: #ffffff;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
}

.footer-newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.footer-newsletter-form button {
    width: fit-content;
    padding: 11px 22px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
/* ==========================================
   FOOTER BOTTOM - FULL WIDTH
   ========================================== */

.footer-bottom {
    width: 100%;
    max-width: none;
    box-sizing: border-box;

    margin-top: 40px;
    padding: 22px 7% 24px;

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

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}
/* ==========================================
   MAILERLITE FOOTER NEWSLETTER
   ========================================== */

.footer-newsletter .ml-form-embedContainer {
    width: 100% !important;
    max-width: 420px;
    margin: 0 !important;
}

.footer-newsletter .ml-form-embedWrapper {
    width: 100% !important;
    max-width: 420px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.footer-newsletter .ml-form-embedBody,
.footer-newsletter .ml-form-successBody {
    padding: 0 !important;
}

.footer-newsletter .ml-form-formContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter .ml-form-fieldRow {
    margin: 0 !important;
}

.footer-newsletter input.form-control {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
}

.footer-newsletter .ml-form-embedSubmit {
    margin: 10px 0 0 !important;
    width: auto !important;
    float: none !important;
}

.footer-newsletter .ml-form-embedSubmit button.primary {
    width: auto !important;
    padding: 11px 22px !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.footer-newsletter .ml-form-successContent {
    color: #ffffff !important;
}

.footer-newsletter .ml-form-successContent h4,
.footer-newsletter .ml-form-successContent p {
    color: #ffffff !important;
}
/* ==========================================
   MAILERLITE FOOTER BUTTON
   ========================================== */

#mlb2-46223757 .ml-form-embedSubmit button.primary {
    background-color: #b79ad8 !important;
    border-color: #b79ad8 !important;
    color: #ffffff !important;
}

#mlb2-46223757 .ml-form-embedSubmit button.primary:hover {
    background-color: #9f7fc7 !important;
    border-color: #9f7fc7 !important;
}
/* ==========================================
   MAILERLITE FOOTER FORM - MOBILE
   ========================================== */

@media (max-width: 700px) {

    .footer-newsletter {
        width: 100%;
        max-width: none;
    }

    #mlb2-46223757.ml-form-embedContainer {
        width: 100% !important;
        margin: 0 !important;
    }

    #mlb2-46223757 .ml-form-align-center {
        width: 100% !important;
        text-align: left !important;
    }

    #mlb2-46223757 .ml-form-embedWrapper {
        width: 100% !important;
        max-width: none !important;
        background: transparent !important;
        margin: 0 !important;
    }

    #mlb2-46223757 .ml-form-embedBody {
        padding: 0 !important;
    }

    #mlb2-46223757 .ml-form-fieldRow {
        margin-bottom: 10px !important;
    }

    #mlb2-46223757 .ml-form-fieldRow input {
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 1rem !important;
        border-radius: 6px !important;
        box-sizing: border-box !important;
    }

    #mlb2-46223757 .ml-form-embedSubmit {
        width: auto !important;
        margin-top: 10px !important;
    }

    #mlb2-46223757 .ml-form-embedSubmit button.primary {
        width: auto !important;
        background-color: #b79ad8 !important;
        border-color: #b79ad8 !important;
        color: #ffffff !important;
        padding: 11px 22px !important;
        border-radius: 6px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
    }

    #mlb2-46223757 .ml-form-embedSubmit button.primary:hover {
        background-color: #9f7fc7 !important;
        border-color: #9f7fc7 !important;
    }
}
/* ==========================================
   SPACE ABOVE REUSABLE FOOTER
   ========================================== */

#site-footer {
    margin-top: 60px;
}
