/* =========================================================
   LITTLE HERO STUDIOS
   CALM WARRIOR STOREFRONT

   Design Direction:
   Premium lifestyle apparel / editorial commerce

   Core Principle:
   Garments are the centerpiece.
   Badges are meaningful accents.
   Movement guides discovery.

   Little Hero Palette:
   Navy:       #173b55
   Gold:       #f5a623
   Red:        #bd3640
   White:      #ffffff
   Ink:        #18232b
   Soft Ink:   #52636d
   Stone:      #f4f5f3
   Mist:       #eef1f2
========================================================= */


/* =========================================================
   01 — STOREFRONT FOUNDATION
========================================================= */

.cw-storefront {
    --cw-navy: #173b55;
    --cw-gold: #f5a623;
    --cw-red: #bd3640;

    --cw-white: #ffffff;
    --cw-ink: #18232b;
    --cw-copy: #52636d;

    --cw-stone: #f4f5f3;
    --cw-mist: #eef1f2;
    --cw-line: #dce2e5;

    --cw-container: 1200px;

    overflow: hidden;

    background: var(--cw-white);

    color: var(--cw-ink);
}


.cw-storefront *,
.cw-storefront *::before,
.cw-storefront *::after {
    box-sizing: border-box;
}


.cw-eyebrow {
    display: inline-block;

    margin-bottom: 1rem;

    color: var(--cw-gold);

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

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* =========================================================
   SHARED HEADINGS
========================================================= */

.cw-section-heading {
    max-width: 760px;

    margin-bottom: 3rem;
}


.cw-section-heading h2,
.cw-section-heading-row h2 {
    margin: 0;

    color: var(--cw-navy);

    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.035em;
}


.cw-section-heading p,
.cw-section-heading-row p {
    max-width: 650px;

    margin: 1rem 0 0;

    color: var(--cw-copy);

    font-size: 0.98rem;

    line-height: 1.75;
}


.cw-section-heading-row {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 3rem;
}


/* =========================================================
   SHARED TEXT LINK
========================================================= */

.cw-text-link {
    display: inline-flex;

    align-items: center;

    gap: 0.55rem;

    color: var(--cw-navy);

    text-decoration: none;

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

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        color 180ms ease,
        gap 180ms ease,
        transform 180ms ease;
}


.cw-text-link:hover {
    gap: 0.8rem;

    color: var(--cw-gold);

    transform: translateX(2px);
}


/* =========================================================
   SHARED PRIMARY / SECONDARY ACTION
========================================================= */

.cw-primary-action,
.cw-secondary-action {
    display: inline-flex;

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

    gap: 0.65rem;

    min-height: 50px;

    padding: 0.8rem 1.45rem;

    text-decoration: none;

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

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}


.cw-primary-action {
    border: 1px solid var(--cw-navy);

    background: var(--cw-navy);

    color: var(--cw-white);
}


.cw-primary-action:hover {
    border-color: var(--cw-gold);

    background: var(--cw-gold);

    color: var(--cw-ink);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(23, 59, 85, 0.12);
}


.cw-secondary-action {
    border: 1px solid var(--cw-line);

    background: transparent;

    color: var(--cw-navy);
}


.cw-secondary-action:hover {
    border-color: var(--cw-navy);

    transform: translateY(-2px);
}


/* =========================================================
   02 — CAMPAIGN HERO
========================================================= */

.cw-hero {
    position: relative;

    padding: clamp(5rem, 8vw, 8rem) 0;

    background:
        linear-gradient(115deg,
            #ffffff 0%,
            #f7f7f5 58%,
            #eef1f2 100%);
}


.cw-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background: var(--cw-gold);
}


.cw-hero-layout {
    display: grid;

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

    align-items: center;

    gap: clamp(3rem, 7vw, 7rem);
}


.cw-hero-content {
    position: relative;

    z-index: 2;
}


.cw-hero-content h1 {
    max-width: 720px;

    margin: 0 0 1.5rem;

    color: var(--cw-navy);

    font-size: clamp(3.3rem, 6.8vw, 6.4rem);
    font-weight: 850;

    line-height: 0.92;

    letter-spacing: -0.055em;
}


.cw-hero-content h1 span {
    display: block;

    color: var(--cw-ink);
}


.cw-hero-statement {
    margin: 0 0 1.25rem;

    color: var(--cw-ink);

    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;

    letter-spacing: -0.015em;
}


.cw-hero-copy {
    max-width: 610px;

    margin: 0;

    color: var(--cw-copy);

    font-size: 1.02rem;

    line-height: 1.8;
}


.cw-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 0.85rem;

    margin-top: 2rem;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.cw-hero-visual {
    position: relative;

    min-width: 0;

    width: 100%;
}


.cw-hero-visual-placeholder {
    position: relative;

    width: 100%;
    min-height: 0;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 12px;

    background: var(--cw-mist);

    box-shadow:
        0 24px 55px rgba(23, 59, 85, 0.13);
}


.cw-hero-lifestyle-image {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    border-radius: inherit;

    transition:
        transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}


.cw-hero-visual:hover .cw-hero-lifestyle-image {
    transform: scale(1.018);
}

/* =========================================================
   03 — SHORT MANIFESTO
========================================================= */

.cw-manifesto {
    padding: 3rem 0;

    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);

    background: var(--cw-white);
}


.cw-manifesto-inner {
    display: flex;

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

    gap: 3rem;
}


.cw-manifesto-inner p {
    display: flex;

    flex-wrap: wrap;

    gap: 0.5rem 2rem;

    margin: 0;

    color: var(--cw-navy);

    font-size: 0.92rem;
}


.cw-manifesto-inner strong {
    font-weight: 700;
}


.cw-manifesto-inner span {
    flex: 0 0 auto;

    color: var(--cw-gold);

    font-size: 0.76rem;
    font-weight: 900;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

/* =========================================================
   04 — SIX HEART STORIES
   EDITORIAL GARMENTS + MEANING
========================================================= */

.cw-heart-stories {
    padding: 7rem 0;

    background: var(--cw-white);
}


.cw-heart-stories>.container>.cw-section-heading {
    max-width: 820px;

    margin: 0 auto 4rem;

    text-align: center;
}


.cw-heart-stories>.container>.cw-section-heading p {
    max-width: 680px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MAIN FOUR STORY ROWS
========================================================= */

.cw-heart-story {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr) minmax(420px, 1.08fr);

    align-items: center;

    gap: clamp(3rem, 7vw, 7rem);

    min-height: 560px;

    padding: 4rem 0;

    border-top: 1px solid var(--cw-line);
}


.cw-heart-story:last-of-type {
    border-bottom: 1px solid var(--cw-line);
}


/* =========================================================
   STORY COPY
========================================================= */

.cw-heart-story-copy {
    max-width: 540px;
}


.cw-heart-story-label {
    display: inline-block;

    margin-bottom: 1rem;

    color: var(--cw-gold);

    font-size: 0.73rem;
    font-weight: 900;

    letter-spacing: 0.19em;

    text-transform: uppercase;
}


.cw-heart-story-copy h3,
.cw-heart-story-card-copy h3 {
    margin: 0 0 1.3rem;

    color: var(--cw-navy);

    font-size: clamp(2.1rem, 4vw, 3.7rem);
    font-weight: 850;

    line-height: 1;

    letter-spacing: -0.04em;
}


.cw-heart-story-copy p,
.cw-heart-story-card-copy p {
    margin: 0;

    color: var(--cw-copy);

    font-size: 1rem;

    line-height: 1.8;
}


.cw-heart-story-copy>strong,
.cw-heart-story-card-copy>strong {
    display: block;

    margin-top: 1.35rem;

    color: var(--cw-ink);

    font-size: 0.91rem;
    font-weight: 750;

    line-height: 1.65;
}


.cw-heart-story-copy .cw-text-link,
.cw-heart-story-card-copy .cw-text-link {
    margin-top: 1.75rem;
}

/* =========================================================
   MAIN STORY VISUALS
   Wider editorial / banner presentation
========================================================= */

.cw-heart-story-visual {

    position: relative;

    width: 100%;

    max-width: 560px;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 12px;

    background:

        linear-gradient(145deg,

            #e3e7e8,

            #f4f5f3);

    box-shadow:

        0 18px 40px rgba(23, 59, 85, 0.08);

}


/* Right-side story images */

.cw-heart-story-right .cw-heart-story-visual {

    justify-self: end;

}


/* Left-side story images */

.cw-heart-story-left .cw-heart-story-visual {

    justify-self: start;

}


/* =========================================================
   ACTUAL LIFESTYLE PHOTOGRAPH
========================================================= */

.cw-heart-story-visual>img:not(.cw-heart-story-watermark),

.cw-heart-story-card-visual>img:not(.cw-heart-story-watermark) {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:

        transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);

}


/* =========================================================
   IMAGE HOVER
========================================================= */

.cw-heart-story:hover .cw-heart-story-visual>img:not(.cw-heart-story-watermark),

.cw-heart-story-card:hover .cw-heart-story-card-visual>img:not(.cw-heart-story-watermark) {

    transform: scale(1.025);

}

/* =========================================================
   BADGE WATERMARK
   Badge remains an accent — never the centerpiece.
========================================================= */
.cw-heart-story-watermark {
    position: absolute;

    right: 1.25rem;
    bottom: 1.25rem;

    z-index: 3;

    width: 82px;
    height: 82px;

    object-fit: contain;

    opacity: 0.88;

    pointer-events: none;

    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));

    transition:
        opacity 250ms ease,
        transform 250ms ease;
}

.cw-heart-story-watermark {
    position: absolute;

    right: 1.25rem;
    bottom: 1.25rem;

    z-index: 3;

    width: 82px;
    height: 82px;

    object-fit: contain;

    opacity: 0.88;

    pointer-events: none;

    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));

    transform: rotateY(0deg);

    transition:
        opacity 250ms ease,
        transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* 3D SPACE FOR BADGE COIN FLIP */
.cw-heart-story-visual,
.cw-heart-story-card-visual {
    perspective: 900px;
}

.cw-heart-story-visual:hover .cw-heart-story-watermark,
.cw-heart-story-card-visual:hover .cw-heart-story-watermark {
    opacity: 1;

    transform: rotateY(360deg);
}

/* =========================================================
   LOVE + RESILIENCE
   FINAL SIDE-BY-SIDE PAIR
========================================================= */

.cw-heart-story-final-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 2rem;

    padding-top: 5rem;
}


.cw-heart-story-card {
    min-width: 0;

    overflow: hidden;

    border-radius: 12px;

    background: var(--cw-stone);

    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}


.cw-heart-story-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(23, 59, 85, 0.09);
}


.cw-heart-story-card-visual {
    position: relative;

    width: 100%;
    max-width: 560px;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            #e3e7e8,
            #f4f5f3);

    box-shadow:
        0 18px 40px rgba(23, 59, 85, 0.08);
}

.cw-heart-story-card-copy {
    padding: 2rem;
}


/* =========================================================
   TABLET — SIX HEART STORIES
========================================================= */

@media (max-width: 991px) {

    .cw-heart-story {
        grid-template-columns: 1fr;

        gap: 2.5rem;

        min-height: 0;

        padding: 4rem 0;
    }


    /* Courage + Compassion:
       copy first, image second */

    .cw-heart-story-right .cw-heart-story-copy {
        order: 1;
    }


    .cw-heart-story-right .cw-heart-story-visual {
        order: 2;
    }


    /* Hope + Calm:
       image first, copy second */

    .cw-heart-story-left .cw-heart-story-visual {
        order: 1;
    }


    .cw-heart-story-left .cw-heart-story-copy {
        order: 2;
    }


    .cw-heart-story-final-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 760px;
        margin-inline: auto;
    }


}


/* =========================================================
   MOBILE — SIX HEART STORIES
========================================================= */

@media (max-width: 600px) {

    .cw-heart-stories {
        padding: 4.75rem 0;
    }


    .cw-heart-stories>.container>.cw-section-heading {
        margin-bottom: 2rem;
    }


    /*
       Mobile becomes consistent:
       IMAGE
       STORY
    */

    .cw-heart-story {
        display: flex;

        flex-direction: column;

        gap: 1.75rem;

        padding: 3rem 0;
    }


    .cw-heart-story .cw-heart-story-visual {
        order: 1;

        width: 100%;
        max-width: 560px;

        aspect-ratio: 4 / 3;

        justify-self: center;
    }


    .cw-heart-story .cw-heart-story-copy {
        order: 2;

        width: 100%;

        max-width: none;
    }


    .cw-heart-story-copy h3,
    .cw-heart-story-card-copy h3 {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


    .cw-heart-story-final-grid {
        grid-template-columns: 1fr;

        gap: 2rem;

        padding-top: 3rem;
    }

    .cw-heart-story-card-copy {
        padding: 1.5rem;
    }


    .cw-heart-story-watermark {
        right: 1rem;
        bottom: 1rem;

        width: 68px;
        height: 68px;
    }

}

/* =========================================================
   04 — SHOP BY AUDIENCE
========================================================= */

.cw-shop {
    padding: 7rem 0;

    background: var(--cw-white);
}


.cw-audience-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1.25rem;
}


.cw-audience-panel {
    min-width: 0;

    color: var(--cw-ink);

    text-decoration: none;
}


.cw-audience-visual {
    position: relative;

    min-height: 390px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    padding: 1.4rem;

    border-radius: 10px;

    background:
        linear-gradient(145deg,
            #e3e7e8,
            #f4f5f3);

    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}


.cw-audience-visual img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    transition:
        transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}


.cw-audience-panel:hover .cw-audience-visual {
    transform: translateY(-5px);

    box-shadow:
        0 18px 32px rgba(23, 59, 85, 0.11);
}


.cw-audience-panel:hover .cw-audience-visual img {
    transform: scale(1.035);
}


.cw-audience-visual::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(to top,
            rgba(15, 32, 43, 0.58),
            rgba(15, 32, 43, 0.05) 55%,
            transparent 75%);
}


.cw-audience-visual span {
    position: relative;

    z-index: 2;

    color: var(--cw-white);

    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: 0.16em;
}


.cw-audience-copy {
    display: flex;

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

    gap: 1rem;

    padding-top: 1rem;
}


.cw-audience-copy strong {
    color: var(--cw-navy);

    font-size: 1rem;
    font-weight: 800;
}


.cw-audience-copy span {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    color: var(--cw-copy);

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

    letter-spacing: 0.05em;

    text-transform: uppercase;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.cw-audience-panel:hover .cw-audience-copy span {
    gap: 0.6rem;

    color: var(--cw-gold);
}


/* =========================================================
   07 — SHOP BY GARMENT
========================================================= */

.cw-garments {
    padding: 5.5rem 0;

    border-bottom: 1px solid var(--cw-line);

    background: var(--cw-white);
}


.cw-garment-nav {
    display: flex;

    align-items: center;

    gap: 0;

    overflow-x: auto;

    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);

    scrollbar-width: none;
}


.cw-garment-nav::-webkit-scrollbar {
    display: none;
}


.cw-garment-nav a {
    position: relative;

    flex: 1 0 auto;

    padding: 1.25rem 1.5rem;

    color: var(--cw-navy);

    text-align: center;
    text-decoration: none;

    font-size: 0.76rem;
    font-weight: 850;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}


.cw-garment-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 0;
    height: 3px;

    transform: translateX(-50%);

    background: var(--cw-gold);

    transition:
        width 180ms ease;
}


.cw-garment-nav a:hover {
    background: var(--cw-stone);

    color: var(--cw-ink);
}


.cw-garment-nav a:hover::after {
    width: 55%;
}


/* =========================================================
   08 — LARGE EDITORIAL CAMPAIGN
========================================================= */

.cw-editorial {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background: var(--cw-ink);
}


.cw-editorial-media,
.cw-editorial-placeholder {
    position: absolute;

    inset: 0;
}


.cw-editorial-placeholder {
    background:
        linear-gradient(115deg,
            rgba(9, 26, 38, 0.92) 0%,
            rgba(23, 59, 85, 0.63) 42%,
            rgba(23, 59, 85, 0.18) 100%),
        linear-gradient(145deg,
            #4f626c,
            #aab3b7);
}


.cw-editorial-media img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cw-editorial-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(8, 25, 37, 0.88) 0%,
            rgba(8, 25, 37, 0.55) 42%,
            rgba(8, 25, 37, 0.08) 78%,
            transparent 100%);

    pointer-events: none;
}


.cw-editorial-content {
    position: relative;

    z-index: 2;

    max-width: 640px;

    padding: 7rem 0;
}


.cw-editorial-content h2 {
    margin: 0 0 1.4rem;

    color: var(--cw-white);

    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 850;

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.cw-editorial-content p {
    max-width: 520px;

    margin: 0;

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

    font-size: 1.05rem;

    line-height: 1.75;
}


.cw-editorial-link {
    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    margin-top: 2rem;

    padding-bottom: 0.35rem;

    border-bottom: 1px solid var(--cw-gold);

    color: var(--cw-white);

    text-decoration: none;

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

    letter-spacing: 0.09em;

    text-transform: uppercase;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.cw-editorial-link:hover {
    gap: 0.9rem;

    color: var(--cw-gold);
}

/* =========================================================
   SUPPORT LITTLE HERO EDITORIAL
========================================================= */

.cw-editorial-support {
    min-height: 0;

    display: block;

    padding: clamp(4rem, 7vw, 6rem) 0;

    background:
        linear-gradient(115deg,
            #0b2231 0%,
            #173b55 100%);
}


.cw-support-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr) minmax(360px, 1.05fr);

    align-items: center;

    gap: clamp(3rem, 7vw, 6rem);
}


.cw-editorial-support .cw-support-content {
    max-width: 620px;

    padding: 0;
}


.cw-editorial-support .cw-support-content h2 {
    font-size:
        clamp(2.8rem,
            5vw,
            4.8rem);
}


.cw-editorial-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 1rem;

    margin-top: 2rem;
}


.cw-editorial-support .cw-editorial-link {
    margin-top: 0;
}


.cw-support-visual {
    min-width: 0;
}


.cw-support-image-placeholder {
    width: 100%;

    aspect-ratio: 4 / 3;

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

    overflow: hidden;

    border-radius: 28px;

    background: transparent;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);
}


.cw-support-image-placeholder img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    padding: 0;

    border-radius: 28px;
}


/* SUPPORT SECTION — TABLET / MOBILE */

@media (max-width: 767px) {

    .cw-editorial-support {
        padding: 4rem 0;
    }


    .cw-support-layout {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }


    .cw-editorial-support .cw-support-content h2 {
        font-size:
            clamp(2.6rem,
                12vw,
                4rem);
    }


    .cw-support-image-placeholder {
        aspect-ratio: 4 / 3;
    }

}

/* =========================================================
   10 — SECOND EDITORIAL / COMMUNITY
========================================================= */

.cw-editorial-secondary {
    padding: 7rem 0;

    background: var(--cw-white);
}


.cw-editorial-secondary-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr) minmax(420px, 1.15fr);

    align-items: center;

    gap: clamp(3rem, 7vw, 7rem);
}


.cw-editorial-secondary-copy {
    max-width: 540px;
}


.cw-editorial-secondary-copy h2 {
    margin: 0 0 1.3rem;

    color: var(--cw-navy);

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 850;

    line-height: 0.98;

    letter-spacing: -0.04em;
}


.cw-editorial-secondary-copy p {
    margin: 0 0 1.75rem;

    color: var(--cw-copy);

    line-height: 1.8;
}


.cw-editorial-secondary-visual {
    min-width: 0;
}

.cw-editorial-secondary-placeholder {
    position: relative;

    min-height: 580px;

    display: flex;

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

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    color: #7b878d;

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

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.cw-editorial-secondary-placeholder img {
    position: relative;

    display: block;

    width: 100%;
    height: auto;

    max-height: 100%;

    object-fit: contain;

    border-radius: 24px;
}

/* =========================================================
   11 — DEEPER BRAND STORY
========================================================= */

.cw-brand-story {
    padding: 7rem 0;

    background: var(--cw-navy);
}


.cw-brand-story-layout {
    display: grid;

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

    gap: clamp(3rem, 8vw, 8rem);
}


.cw-brand-story-heading h2 {
    max-width: 600px;

    margin: 0;

    color: var(--cw-white);

    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 850;

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.cw-brand-story-copy {
    max-width: 620px;
}


.cw-brand-story-copy p {
    margin: 0 0 1.25rem;

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

    font-size: 1rem;

    line-height: 1.85;
}


.cw-brand-story-copy strong {
    display: block;

    margin-top: 2rem;

    color: var(--cw-gold);

    font-size: 0.85rem;
    font-weight: 850;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}


/* =========================================================
   12 — FINAL CTA
========================================================= */

.cw-final-cta {
    padding: 6rem 0;

    background: var(--cw-stone);
}


.cw-final-cta-inner {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


.cw-final-cta-inner>span {
    display: block;

    margin-bottom: 1rem;

    color: var(--cw-gold);

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.2em;
}


.cw-final-cta-inner h2 {
    margin: 0;

    color: var(--cw-navy);

    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 850;

    line-height: 1;

    letter-spacing: -0.04em;
}


.cw-final-cta-inner p {
    max-width: 560px;

    margin: 1.25rem auto 2rem;

    color: var(--cw-copy);

    line-height: 1.75;
}


/* =========================================================
   FOCUS / KEYBOARD ACCESSIBILITY
========================================================= */

.cw-storefront a:focus-visible {
    outline: 3px solid var(--cw-gold);

    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .cw-storefront *,
    .cw-storefront *::before,
    .cw-storefront *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


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

@media (max-width: 991px) {

    .cw-hero {
        padding-top: 4.5rem;
    }


    .cw-hero-layout,
    .cw-editorial-secondary-layout,
    .cw-brand-story-layout {
        grid-template-columns: 1fr;
    }


    .cw-hero-layout {
        gap: 3rem;
    }


    .cw-manifesto-inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 1.25rem;
    }


    .cw-audience-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .cw-editorial-secondary-layout {
        gap: 3rem;
    }


    .cw-editorial-secondary-placeholder {
        min-height: 500px;
    }


    .cw-brand-story-layout {
        gap: 2.5rem;
    }

}


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

@media (max-width: 600px) {

    .cw-hero {
        padding:
            3.75rem 0 4rem;
    }


    .cw-hero::before {
        width: 3px;
    }


    .cw-hero-content h1 {
        font-size:
            clamp(3rem,
                15vw,
                4.4rem);
    }


    .cw-hero-copy {
        font-size: 0.96rem;
    }


    .cw-hero-actions {
        flex-direction: column;
    }


    .cw-primary-action,
    .cw-secondary-action {
        width: 100%;
    }

    .cw-manifesto {
        padding: 2.4rem 0;
    }


    .cw-manifesto-inner p {
        flex-direction: column;

        gap: 0.6rem;
    }


    .cw-shop,
    .cw-editorial-secondary,
    .cw-brand-story {
        padding:
            4.75rem 0;
    }


    .cw-section-heading {
        margin-bottom: 2rem;
    }


    .cw-section-heading-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 1rem;

        margin-bottom: 2rem;
    }


    .cw-audience-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }


    .cw-audience-visual {
        min-height: 430px;
    }

    .cw-garments {
        padding: 4rem 0;
    }


    .cw-garment-nav {
        margin-right: -12px;
    }


    .cw-garment-nav a {
        flex: 0 0 auto;

        padding:
            1.15rem 1.25rem;
    }


    .cw-editorial {
        min-height: 650px;
    }


    .cw-editorial-content {
        padding:
            5rem 0 4rem;
    }


    .cw-editorial-content h2 {
        font-size:
            clamp(2.7rem,
                13vw,
                4.2rem);
    }

    .cw-editorial-secondary-placeholder {
        min-height: 430px;
    }


    .cw-brand-story-heading h2 {
        font-size:
            clamp(2.7rem,
                13vw,
                4.2rem);
    }


    .cw-final-cta {
        padding:
            4.5rem 0;
    }

}


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

@media (max-width: 390px) {

    .cw-audience-visual {
        min-height: 390px;
    }

}