﻿:root {
    --red: #E5172B;
    --red-deep: #B8121F;
    --ink: #0F0F10;
    --ink-2: #1C1C1E;
    --paper: #FFFFFF;
    --cream: #F7F4EF;
    --line: rgba(15,15,16,.10);
    --muted: rgba(15,15,16,.60);
    --green: #2D9B5C;
    --gold: #B8860B;
    --serif: 'Montserrat', sans-serif;
    --sans: 'Montserrat', sans-serif;
    --mono: 'Montserrat', sans-serif;
    --color-bg: #F4F1EA;
    --color-card: #FFFFFF;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #7A7670;
    --color-accent: #C0392B;
    --color-pill-green-bg: #E4EDE3;
    --color-pill-green-text: #3E6B4F;
    --color-pill-pink-bg: #F9E3E3;
    --color-pill-pink-text: #C0392B;
    --color-border: #ECE8E0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

::selection {
    background: var(--red);
    color: var(--paper)
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}

@media (max-width:640px) {
    .wrap {
        padding: 0 20px
    }
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--red);
    z-index: 1000;
    transition: width .12s
}

/* Topbar */
.topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    padding: 8px 0;
    font-family: var(--mono);
    letter-spacing: .04em
}

    .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap
    }

    .topbar .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,.78)
    }

    .topbar .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse 2s infinite
    }

    .topbar .links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap
    }

    .topbar a:hover {
        color: var(--red)
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45,155,92,.7)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(45,155,92,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45,155,92,0)
    }
}

@media (max-width:780px) {
    .topbar .links {
        display: none
    }
}

/* Page tag - tells user what page they're on */
.page-tag {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

    .page-tag .wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap
    }

    .page-tag .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px
    }

        .page-tag .breadcrumb a {
            color: var(--muted)
        }

            .page-tag .breadcrumb a:hover {
                color: var(--ink)
            }

        .page-tag .breadcrumb .sep {
            opacity: .4
        }

        .page-tag .breadcrumb .current {
            color: var(--red);
            font-weight: 600
        }

    .page-tag .meta {
        margin-left: auto;
        opacity: .6
    }

@media (max-width:640px) {
    .page-tag .meta {
        display: none
    }
}

/* Navigation */
nav.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .3s
}

    nav.nav.scrolled {
        background: rgba(255,255,255,.97);
        border-bottom-color: var(--line)
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-mark {
    width: 38px;
    height: 28px;
    color: var(--red);
    flex-shrink: 0
}

.logo-word {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .04em;
    color: var(--ink)
}

    .logo-word .india {
        color: var(--red)
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

    .nav-links > li {
        position: relative
    }

    .nav-links a, .nav-links button.menu-trigger {
        padding: 10px 14px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        transition: all .2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--ink)
    }

        .nav-links a:hover, .nav-links button.menu-trigger:hover {
            background: rgba(15,15,16,.05)
        }

        .nav-links a.active {
            background: var(--ink);
            color: var(--paper)
        }

.mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    min-width: 640px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.25);
    display: grid;
    gap: 24px
}

    .mega.cols-2 {
        grid-template-columns: 1fr 1fr
    }

    .mega.cols-3 {
        grid-template-columns: 1fr 1fr 280px
    }

.nav-links li.has-mega:hover > .mega, .nav-links li.has-mega:focus-within > .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.mega-h {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px
}

    .mega-list a {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 13.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.3
    }

        .mega-list a:hover {
            background: var(--ink);
            color: var(--paper)
        }

        .mega-list a .idx {
            font-family: var(--mono);
            font-size: 10px;
            opacity: .5
        }

.mega-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

    .mega-card h4 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 400;
        line-height: 1.15;
        margin-bottom: 10px
    }

        .mega-card h4 em {
            color: var(--red);
            font-style: italic;
            font-weight: 500
        }

    .mega-card p {
        font-size: 13px;
        opacity: .75;
        margin-bottom: 20px
    }

    .mega-card .arrow {
        font-family: var(--mono);
        font-size: 12px;
        color: var(--red);
        display: inline-flex;
        align-items: center;
        gap: 8px
    }

.nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    font-weight: 600 !important
}

    .nav-cta:hover {
        background: var(--red) !important
    }

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--paper)
}

    .burger svg {
        width: 20px;
        height: 20px
    }

@media (max-width:1080px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }
}

/* Drawer */
.drawer {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--paper);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.65,.05,.36,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

    .drawer.open {
        transform: translateX(0)
    }

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

    .drawer-head .logo-word {
        color: var(--paper)
    }

.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center
}

.drawer-body {
    padding: 8px 8px 24px;
    flex: 1
}

.d-section {
    border-bottom: 1px solid rgba(255,255,255,.06)
}

    .d-section summary {
        padding: 18px 16px;
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 400;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .d-section summary::-webkit-details-marker {
            display: none
        }

        .d-section summary::after {
            content: '+';
            font-family: var(--mono);
            font-size: 24px;
            color: var(--red);
            transition: transform .2s
        }

    .d-section[open] summary::after {
        content: 'b'
    }

    .d-section ul {
        list-style: none;
        padding: 0 16px 16px
    }

    .d-section li a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        opacity: .85
    }

        .d-section li a:hover {
            color: var(--red);
            opacity: 1
        }

.d-link {
    display: block;
    padding: 18px 16px;
    font-family: var(--serif);
    font-size: 22px;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.drawer-foot {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.08)
}

    .drawer-foot .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .15em;
        text-transform: uppercase;
        opacity: .5
    }

    .drawer-foot .phone {
        font-family: var(--serif);
        font-size: 22px;
        margin-top: 6px;
        color: var(--red)
    }

    .drawer-foot .cta {
        display: block;
        margin-top: 16px;
        padding: 14px;
        background: var(--red);
        color: var(--paper);
        text-align: center;
        font-weight: 600;
        border-radius: 10px
    }

/* Type system */
h1.headline {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 6.5vw, 92px);
    line-height: .98;
    letter-spacing: -.025em;
    color: var(--ink)
}

    h1.headline em {
        font-style: italic;
        font-weight: 600;
        color: var(--red)
    }

    h1.headline .underline {
        background-image: linear-gradient(transparent 78%, rgba(229,23,43,.28) 78%);
        background-size: 0% 100%;
        background-repeat: no-repeat;
        transition: background-size 1.6s cubic-bezier(.65,.05,.36,1) .6s
    }

body.loaded h1.headline .underline {
    background-size: 100% 100%
}

h2.section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.6vw, 60px);
    line-height: 1.04;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 18px
}

    h2.section-title em {
        font-style: italic;
        color: var(--red);
        font-weight: 600
    }

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px
}

    .eyebrow::before {
        content: '';
        width: 24px;
        height: 1px;
        background: currentColor
    }

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.65
}

@media (max-width:640px) {
    .lead {
        font-size: 16px
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s
}

.btn-primary {
    background: var(--red);
    color: var(--paper)
}

    .btn-primary:hover {
        background: var(--red-deep);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px -10px rgba(229,23,43,.6)
    }

.btn-ghost {
    border: 1.5px solid var(--ink);
    color: var(--ink)
}

    .btn-ghost:hover {
        background: var(--ink);
        color: var(--paper)
    }

.btn-dark {
    background: var(--ink);
    color: var(--paper)
}

    .btn-dark:hover {
        background: var(--red)
    }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s, transform .8s
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s, transform .7s
}

.reveal-stagger.in > * {
    opacity: 1;
    transform: none
}

    .reveal-stagger.in > *:nth-child(1) {
        transition-delay: .05s
    }

    .reveal-stagger.in > *:nth-child(2) {
        transition-delay: .15s
    }

    .reveal-stagger.in > *:nth-child(3) {
        transition-delay: .25s
    }

    .reveal-stagger.in > *:nth-child(4) {
        transition-delay: .35s
    }

    .reveal-stagger.in > *:nth-child(5) {
        transition-delay: .45s
    }

    .reveal-stagger.in > *:nth-child(6) {
        transition-delay: .55s
    }

    .reveal-stagger.in > *:nth-child(7) {
        transition-delay: .65s
    }

    .reveal-stagger.in > *:nth-child(8) {
        transition-delay: .75s
    }

    .reveal-stagger.in > *:nth-child(9) {
        transition-delay: .85s
    }

/* Footer */
footer.foot {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 40px;
    margin-top: 120px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1)
}

@media (max-width:980px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
}

@media (max-width:640px) {
    .foot-grid {
        grid-template-columns: 1fr
    }
}

.foot-brand .logo-word {
    color: var(--paper)
}

.foot-brand p {
    margin-top: 18px;
    font-size: 14px;
    opacity: .65;
    line-height: 1.6;
    max-width: 380px
}

.foot-newsletter {
    margin-top: 28px
}

    .foot-newsletter form {
        display: flex;
        gap: 8px;
        margin-top: 10px
    }

    .foot-newsletter input {
        flex: 1;
        padding: 12px 14px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        color: var(--paper);
        font-size: 13px;
        font-family: inherit
    }

        .foot-newsletter input:focus {
            outline: none;
            border-color: var(--red);
            background: rgba(255,255,255,.08)
        }

    .foot-newsletter button {
        padding: 12px 18px;
        background: var(--red);
        color: var(--paper);
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600
    }

.foot-h {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 18px
}

.foot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .foot-list a {
        font-size: 14px;
        opacity: .75;
        transition: all .2s
    }

        .foot-list a:hover {
            opacity: 1;
            color: var(--red)
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
    opacity: .55;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--mono);
    letter-spacing: .04em
}

    .foot-bottom a:hover {
        opacity: 1;
        color: var(--red)
    }

.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 14px 24px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.4);
    z-index: 50;
    transition: all .25s
}

    .float-cta:hover {
        background: var(--red);
        transform: translateY(-2px)
    }

@media (max-width:640px) {
    .float-cta {
        display: none
    }
}



:root {
    --butter: #FFF5CC;
    --butter-line: #E8D78A;
    --butter-ink: #5C4A0E;
    --sand: #F1E8D6;
    --sand-line: #DCCFB3;
    --gold: #D9A431;
    --ghost: rgba(15,15,16,.04);
}

/* ====================================================================
   HERO b  editorial, oversized, with rotating word + scroll cue
   ==================================================================== */
.cb-hero {
    position: relative;
    padding: 10px 0 0px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, #FCF8EE 60%, #FBF5E7 100%);
}

    .cb-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 80% 60% at 90% 0%, rgba(229,23,43,.05), transparent 65%), radial-gradient(ellipse 60% 50% at 0% 100%, rgba(217,164,49,.10), transparent 70%);
    }

/* Hero b  top meta strip (eyebrow + tagline + scroll cue) */
.cb-hero-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.cb-hero-eye {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 9px 16px;
    border: 1px solid var(--ink);
    background: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
}

    .cb-hero-eye .dot {
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        animation: cbPulse 2s infinite
    }

    .cb-hero-eye .accent {
        color: var(--red);
        font-weight: 700
    }

    .cb-hero-eye .sep {
        width: 1px;
        height: 14px;
        background: var(--line)
    }

.cb-hero-microtag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cb-hero-microtag .num {
        color: var(--red);
        font-weight: 600
    }

/* Hero b  main H1 b  editorial, oversized */
.cb-hero-h1 {
    font-family: var(--serif);
    font-weight: 300;
    color: var(--ink);
    font-size: 46px;
    line-height: .95;
    letter-spacing: -.035em;
    margin: 0 0 36px;
    position: relative;
    z-index: 2;
    max-width: 30ch;
}

    .cb-hero-h1 em {
        font-style: italic;
        color: var(--red);
        font-weight: 400
    }

    .cb-hero-h1 .hi {
        position: relative;
        display: inline-block;
    }

        .cb-hero-h1 .hi::after {
            content: "";
            position: absolute;
            left: -2%;
            right: -2%;
            bottom: .1em;
            height: .22em;
            background: var(--butter);
            z-index: -1;
            transform: skewX(-3deg);
        }

/* Word cycle b  animated rotating word */
.word-cycle {
    display: inline-grid;
    vertical-align: baseline;
    font-style: italic;
    color: var(--red);
    font-weight: 400;
    position: relative;
}

    .word-cycle > span {
        grid-area: 1/1;
        animation: wordCycle 12s infinite;
        opacity: 0;
        transform: translateY(20px);
    }

        .word-cycle > span:nth-child(1) {
            animation-delay: 0s
        }

        .word-cycle > span:nth-child(2) {
            animation-delay: 3s
        }

        .word-cycle > span:nth-child(3) {
            animation-delay: 6s
        }

        .word-cycle > span:nth-child(4) {
            animation-delay: 9s
        }

@keyframes wordCycle {
    0%, 2% {
        opacity: 0;
        transform: translateY(20px)
    }

    6%, 22% {
        opacity: 1;
        transform: translateY(0)
    }

    26%, 100% {
        opacity: 0;
        transform: translateY(-20px)
    }
}

@keyframes cbPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229,23,43,.6)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(229,23,43,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229,23,43,0)
    }
}

/* Hero b  sub-grid: tagline copy + CTAs left, programme-map vis right */
.cb-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 2;
}

@media (max-width:980px) {
    .cb-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

.cb-hero-lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    opacity: .82;
    max-width: 50ch;
    margin: 0 0 32px;
}

    .cb-hero-lead strong {
        color: var(--ink);
        opacity: 1;
        font-weight: 600
    }

.cb-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 75px;
}

    .cb-hero-ctas .btn {
        padding: 14px 22px;
        font-size: 13px
    }

.btn .ic-lead {
    display: inline-flex;
    align-items: center;
    margin-right: 8px
}

    .btn .ic-lead svg {
        width: 14px;
        height: 14px
    }

.cb-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

    .cb-hero-meta .pulse {
        width: 8px;
        height: 8px;
        background: var(--green);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(45,155,92,.6);
        animation: cbPulseGreen 2s infinite;
    }

@keyframes cbPulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(45,155,92,.6)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45,155,92,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45,155,92,0)
    }
}

/* Hero right b  Programme Map (17-cell visual catalog) */
.cb-pmap {
    position: relative
}

.cb-pmap-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ink);
}

.cb-pmap-title {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
}

.cb-pmap-count {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.02em;
}

    .cb-pmap-count em {
        font-style: normal;
        font-size: 14px;
        color: var(--muted);
        margin-left: 4px
    }

.cb-pmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 0 0 120px;
}

.cb-pmap-cell {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all .2s ease;
}

    .cb-pmap-cell:hover {
        background: var(--butter);
        border-color: var(--butter-line);
        transform: scale(1.04);
        z-index: 5
    }

    .cb-pmap-cell .code {
        font-family: var(--mono);
        font-size: 8.5px;
        letter-spacing: .1em;
        color: var(--muted);
        text-transform: uppercase;
    }

    .cb-pmap-cell .ic {
        width: 18px;
        height: 18px;
        color: var(--red);
        margin: auto auto 2px auto
    }

        .cb-pmap-cell .ic svg {
            width: 100%;
            height: 100%
        }

    .cb-pmap-cell .label {
        font-family: var(--sans);
        font-size: 9.5px;
        line-height: 1.15;
        color: var(--ink);
        text-align: center;
        font-weight: 600;
    }

    .cb-pmap-cell.new::after {
        content: "NEW";
        position: absolute;
        top: 3px;
        right: 3px;
        background: var(--red);
        color: var(--paper);
        font-family: var(--mono);
        font-size: 7.5px;
        letter-spacing: .06em;
        padding: 2px 4px;
        border-radius: 2px;
        font-weight: 700;
    }

    .cb-pmap-cell.featured {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink);
        grid-column: span 2
    }

        .cb-pmap-cell.featured:hover {
            background: #1a1a1d
        }

        .cb-pmap-cell.featured .code {
            color: #FFD56A
        }

        .cb-pmap-cell.featured .ic {
            color: #FFD56A
        }

        .cb-pmap-cell.featured .label {
            color: var(--paper)
        }

/* Scroll cue at bottom of hero */
.cb-hero-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
}

    .cb-hero-cue svg {
        width: 14px;
        height: 14px;
        animation: bobUp 2s infinite
    }

@keyframes bobUp {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(4px)
    }
}

/* ====================================================================
   TICKER b  endless marquee of programme names
   ==================================================================== */
.cb-ticker {
    background: var(--ink);
    color: var(--paper);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.cb-ticker-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: tickerSlide 80s linear infinite;
    width: max-content;
}

@keyframes tickerSlide {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.cb-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--paper);
}

    .cb-ticker-item .star {
        color: #FFD56A;
        font-size: 18px
    }

    .cb-ticker-item .code {
        font-family: var(--mono);
        font-style: normal;
        font-size: 10.5px;
        letter-spacing: .16em;
        color: rgba(255,255,255,.5);
        margin-right: 6px;
    }

/* ====================================================================
   MANIFESTO b  bold short statement
   ==================================================================== */
.cb-manifesto {
    padding: 50px 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: relative;
}

.cb-manifesto-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 120px;
    color: var(--ghost);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-manifesto-eye {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

    .cb-manifesto-eye::after {
        content: "";
        width: 60px;
        height: 1px;
        background: var(--red)
    }

.cb-manifesto-text {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 3.6vw, 38px);
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0;
    position: relative;
    z-index: 2;
}

    .cb-manifesto-text em {
        font-style: italic;
        color: var(--red);
        font-weight: 400
    }

    .cb-manifesto-text .hi {
        position: relative;
        display: inline-block;
    }

        .cb-manifesto-text .hi::after {
            content: "";
            position: absolute;
            left: -3%;
            right: -3%;
            bottom: .08em;
            height: .18em;
            background: var(--butter);
            z-index: -1;
        }

/* ====================================================================
   STATS b  dramatic, oversized numerals
   ==================================================================== */
.cb-stats {
    padding: 0;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    border-top: 4px solid var(--red);
}

.cb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

@media (max-width:760px) {
    .cb-stats-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

.cb-stat {
    padding: 60px 36px 50px;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}

    .cb-stat:hover {
        background: #1a1a1d
    }

    .cb-stat:last-child {
        border-right: none
    }

@media (max-width:760px) {
    .cb-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08)
    }

        .cb-stat:nth-child(2n) {
            border-right: none
        }
}

.cb-stat .ic {
    width: 32px;
    height: 32px;
    color: #FFD56A;
    margin-bottom: 24px;
    opacity: .7;
}

    .cb-stat .ic svg {
        width: 100%;
        height: 100%
    }

.cb-stat .v {
    font-family: var(--serif);
    font-weight: 300;
    color: var(--paper);
    font-size: clamp(56px, 7vw, 96px);
    line-height: .9;
    letter-spacing: -.04em;
}

    .cb-stat .v em {
        font-style: normal;
        color: #FFD56A;
        font-weight: 400
    }

    .cb-stat .v small {
        font-size: .35em;
        color: rgba(255,255,255,.5);
        font-family: var(--mono);
        letter-spacing: .1em;
        margin-left: 8px
    }

.cb-stat .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 14px;
}

/* ====================================================================
   WHO WE ARE b  editorial 2-col
   ==================================================================== */
.cb-who {
    padding: 50px 0 50px;
    background: var(--paper);
    position: relative
}

.cb-who-num {
    position: absolute;
    top: 80px;
    left: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 200px;
    color: var(--ghost);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-who-grid {
    display: grid;
    grid-template-columns: .4fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2
}

@media (max-width:880px) {
    .cb-who-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.cb-eye {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .cb-eye::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--red)
    }

.cb-who h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 4.6vw, 38px);
    line-height: 1.02;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    color: var(--ink);
}

    .cb-who h2 em {
        font-style: italic;
        color: var(--red)
    }

.cb-who-body p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 20px;
    opacity: .85
}

    .cb-who-body p:first-child::first-letter {
        font-family: var(--serif);
        font-size: 5em;
        float: left;
        line-height: .88;
        padding: 8px 14px 0 0;
        color: var(--red);
        font-weight: 400;
    }

.cb-who-body .pull {
    margin-top: 32px;
    padding: 32px 36px;
    background: var(--butter);
    border-left: 4px solid var(--red);
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    color: var(--butter-ink);
    position: relative;
}

    .cb-who-body .pull::before {
        content: "\201C";
        position: absolute;
        top: 0px;
        left: 14px;
        font-size: 80px;
        color: var(--red);
        font-family: var(--serif);
        line-height: 1;
        opacity: .4;
    }

    .cb-who-body .pull .attr {
        display: block;
        margin-top: 14px;
        font-family: var(--mono);
        font-style: normal;
        font-size: 11px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--butter-ink);
        opacity: .7;
    }

/* ====================================================================
   PROGRAMME CATALOG b  grouped by category, editorial directory
   ==================================================================== */
.cb-cat {
    padding: 50px 0 50px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative
}

.cb-cat-num {
    position: absolute;
    top: 70px;
    right: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 200px;
    color: rgba(15,15,16,.045);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-cat-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width:760px) {
    .cb-cat-head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.cb-cat-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    color: var(--ink);
    max-width: 14ch;
}

    .cb-cat-head h2 em {
        font-style: italic;
        color: var(--red)
    }

.cb-cat-head .right {
    text-align: right;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

    .cb-cat-head .right .big {
        display: block;
        font-family: var(--serif);
        font-style: italic;
        font-size: 48px;
        font-weight: 300;
        color: var(--ink);
        letter-spacing: -.02em;
        line-height: 1;
        margin-bottom: 4px;
    }

        .cb-cat-head .right .big em {
            font-style: normal;
            color: var(--red)
        }

.cb-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 60px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
}

.cb-jump-lbl {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 6px 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cb-jump a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    transition: all .18s ease;
}

    .cb-jump a:hover {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink)
    }

    .cb-jump a .cnt {
        display: inline-block;
        margin-left: 6px;
        padding: 1px 6px;
        border-radius: 8px;
        font-size: 10px;
        background: var(--cream);
        color: var(--muted);
    }

    .cb-jump a:hover .cnt {
        background: rgba(255,255,255,.18);
        color: var(--paper)
    }

/* Category section b  header strip + cards */
.cb-cat-section {
    margin-bottom: 70px;
    position: relative;
    z-index: 2
}

    .cb-cat-section:last-of-type {
        margin-bottom: 0
    }

.cb-cat-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 30px;
    padding: 24px 0 24px;
    border-top: 2px solid var(--ink);
    position: relative;
}

    .cb-cat-strip .cat-num {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .18em;
        color: var(--red);
        font-weight: 600;
    }

    .cb-cat-strip .cat-info h3 {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(26px, 3vw, 38px);
        line-height: 1.1;
        letter-spacing: -.015em;
        margin: 0 0 4px;
        color: var(--ink);
    }

        .cb-cat-strip .cat-info h3 em {
            font-style: italic;
            color: var(--red)
        }

    .cb-cat-strip .cat-info p {
        font-size: 14.5px;
        line-height: 1.5;
        color: var(--muted);
        margin: 0;
        max-width: 50ch;
    }

    .cb-cat-strip .cat-count {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        padding: 6px 12px;
        border: 1px solid var(--line);
        background: var(--paper);
    }

        .cb-cat-strip .cat-count strong {
            color: var(--red);
            font-weight: 600;
            margin-right: 4px
        }

/* Card grid within each category */
.cb-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

@media (max-width:980px) {
    .cb-cards {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:620px) {
    .cb-cards {
        grid-template-columns: 1fr
    }
}

.cb-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 26px 24px;
    position: relative;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

    .cb-card::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 3px;
        background: var(--ink);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .cb-card:hover {
        border-color: var(--ink);
        transform: translateY(-3px);
        box-shadow: 0 6px 0 var(--red)
    }

        .cb-card:hover::before {
            transform: scaleX(1)
        }

    .cb-card.new::before {
        background: var(--red);
        transform: scaleX(1)
    }

    .cb-card.new:hover::before {
        background: var(--ink)
    }

.cb-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.cb-code {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.cb-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--butter);
    border: 1px solid var(--butter-line);
    border-radius: 8px;
    color: var(--butter-ink);
}

    .cb-icon svg {
        width: 20px;
        height: 20px
    }

.cb-card.new .cb-icon {
    background: #FDEEEF;
    border-color: #F5C9CD;
    color: var(--red)
}

.cb-newbadge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    padding: 3px 7px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.cb-card.new .cb-card-top {
    padding-right: 42px
}

.cb-card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 12px;
    color: var(--ink);
}

.cb-card-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 22px
}

.cb-card-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cb-mode {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
}

    .cb-mode.both {
        background: #EEF7F1;
        color: #1F7A47;
        border: 1px solid #C9E6D4
    }

    .cb-mode.inperson {
        background: #FDEEEF;
        color: #B8121F;
        border: 1px solid #F5C9CD
    }

    .cb-mode.virtual {
        background: #EAF2FB;
        color: #1F4B8E;
        border: 1px solid #C9DBEF
    }

    .cb-mode .dt {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor
    }

.cb-learn {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
}

    .cb-learn::after {
        content: " b";
        display: inline-block;
        transition: transform .2s ease
    }

.cb-card:hover .cb-learn::after {
    transform: translateX(4px)
}

/* Featured Wellbeing card b  full-width, dramatic */
.cb-feat-wrap {
    margin-top: 50px
}

.cb-feat {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 44px 48px;
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1d 100%);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .cb-feat::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--gold) 0%, var(--red) 100%);
    }

    .cb-feat::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(rgba(255,213,106,.06) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .cb-feat:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 0 var(--gold)
    }

@media (max-width:880px) {
    .cb-feat {
        grid-template-columns: 1fr;
        padding: 36px 28px
    }
}

.cb-feat > * {
    position: relative;
    z-index: 2
}

.cb-feat-icon {
    width: 96px;
    height: 96px;
    background: rgba(255,213,106,.12);
    border: 1px solid rgba(255,213,106,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFD56A;
    flex-shrink: 0;
}

    .cb-feat-icon svg {
        width: 44px;
        height: 44px
    }

.cb-feat-body .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FFD56A;
    margin-bottom: 14px;
    font-weight: 600;
}

    .cb-feat-body .badge .dot {
        width: 6px;
        height: 6px;
        background: #FFD56A;
        border-radius: 50%
    }

    .cb-feat-body .badge .code {
        padding: 3px 8px;
        background: rgba(255,213,106,.12);
        border: 1px solid rgba(255,213,106,.3);
        border-radius: 2px;
        color: #FFD56A;
        font-weight: 700;
    }

.cb-feat-body h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 38px;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--paper);
}

    .cb-feat-body h3 em {
        font-style: italic;
        color: #FFD56A
    }

.cb-feat-body p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,.7);
    margin: 0 0 18px;
    max-width: 60ch
}

.cb-feat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px
}

.cb-feat-chip {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    color: var(--paper);
}

.cb-feat-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    align-items: center;
}

    .cb-feat-addons .lbl {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: #FFD56A;
        margin-right: 6px;
    }

    .cb-feat-addons .ad {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 6px 12px;
        background: rgba(255,213,106,.12);
        border: 1px solid rgba(255,213,106,.3);
        color: #FFD56A;
        border-radius: 24px;
    }

        .cb-feat-addons .ad .ic {
            width: 14px;
            height: 14px
        }

.cb-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FFD56A;
    font-weight: 600;
    padding: 12px 18px;
    border: 1px solid #FFD56A;
}



/* ====================================================================
   METHODOLOGY b  connected journey visual
   ==================================================================== */
.cb-method {
    padding: 34px 0 55px;
    background: var(--paper);
    position: relative
}

.cb-method-num {
    position: absolute;
    top: 80px;
    left: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 200px;
    color: var(--ghost);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-method-head {
    margin-bottom: 60px;
    position: relative;
    z-index: 2
}

    .cb-method-head h2 {
        font-family: var(--serif);
        font-weight: 300;
        font-size: 38px;
        line-height: 1;
        letter-spacing: -.025em;
        margin: 18px 0 24px;
        color: var(--ink);
    }

        .cb-method-head h2 em {
            font-style: italic;
            color: var(--red)
        }

    .cb-method-head p {
        font-size: 17px;
        line-height: 1.65;
        color: var(--muted);
        margin: 0;
    }

.cb-journey {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--cream);
    border: 1px solid var(--line);
    position: relative;
    z-index: 2;
}

@media (max-width:880px) {
    .cb-journey {
        grid-template-columns: 1fr
    }
}

.cb-step {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background .25s ease;
}

    .cb-step:hover {
        background: var(--paper)
    }

    .cb-step:last-child {
        border-right: none
    }

@media (max-width:880px) {
    .cb-step {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

        .cb-step:last-child {
            border-bottom: none
        }
}

.cb-step .num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cb-step .num::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--line)
    }

.cb-step .ic-big {
    width: 56px;
    height: 56px;
    background: var(--butter);
    border: 1px solid var(--butter-line);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--butter-ink);
    margin-bottom: 22px;
}

    .cb-step .ic-big svg {
        width: 28px;
        height: 28px
    }

.cb-step h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -.01em;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--ink);
}

.cb-step p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0
}
/* Connector arrow between steps */
.cb-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50px;
    width: 14px;
    height: 14px;
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(-45deg);
    z-index: 3;
}

@media (max-width:880px) {
    .cb-step:not(:last-child)::after {
        display: none
    }
}

/* ====================================================================
   WHY US b  5 differentiators, editorial directory style
   ==================================================================== */
.cb-why {
    padding: 50px 0 50px;
    background: linear-gradient(180deg, #FFFCF2 0%, var(--cream) 100%);
    border-top: 1px solid var(--butter-line);
    border-bottom: 1px solid var(--butter-line);
    position: relative
}

.cb-why-num {
    position: absolute;
    top: 80px;
    right: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 200px;
    color: rgba(15,15,16,.045);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-why-grid {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2
}

@media (max-width:880px) {
    .cb-why-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.cb-why h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size:38px;
    line-height: 1;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    color: var(--ink);
    max-width: 15ch;
}

    .cb-why h2 em {
        font-style: italic;
        color: var(--red)
    }

.cb-why-intro {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    margin: 24px 0 0;
    max-width: 36ch
}

.cb-why-list {
    display: flex;
    flex-direction: column
}

.cb-why-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 30px;
    padding: 28px 0;
    border-top: 1px solid var(--ink);
    align-items: start;
    transition: padding .25s ease;
    cursor: default;
}

    .cb-why-item:last-child {
        border-bottom: 1px solid var(--ink)
    }

    .cb-why-item:hover {
        padding-left: 12px
    }

    .cb-why-item .n {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--red);
        font-weight: 600;
        padding-top: 5px;
    }

    .cb-why-item .body h4 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 22px;
        letter-spacing: -.01em;
        line-height: 1.2;
        margin: 0 0 6px;
        color: var(--ink);
    }

    .cb-why-item .body p {
        font-size: 14.5px;
        line-height: 1.6;
        color: var(--muted);
        margin: 0;
        max-width: 56ch
    }

    .cb-why-item .meta {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        padding-top: 7px;
        text-align: right;
    }

/* ====================================================================
   WHO WE SERVE b  5 sectors, distinctive
   ==================================================================== */
.cb-serve {
    padding: 50px 0 50px;
    background: var(--paper);
    position: relative
}

.cb-serve-num {
    position: absolute;
    top: 80px;
    left: 30px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 200px;
    color: var(--ghost);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.cb-serve-head {
    margin-bottom: 60px;
    position: relative;
    z-index: 2
}

.cb-serve h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    color: var(--ink);
}

    .cb-serve h2 em {
        font-style: italic;
        color: var(--red)
    }

.cb-serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink);
    position: relative;
    z-index: 2;
}

@media (max-width:980px) {
    .cb-serve-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:560px) {
    .cb-serve-grid {
        grid-template-columns: 1fr
    }
}

.cb-sector {
    background: var(--paper);
    padding: 36px 26px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .25s ease;
    position: relative;
    overflow: hidden;
}

    .cb-sector:hover {
        background: var(--butter)
    }

    .cb-sector::before {
        content: attr(data-n);
        position: absolute;
        bottom: 14px;
        right: 18px;
        font-family: var(--serif);
        font-size: 60px;
        color: var(--ghost);
        line-height: 1;
        letter-spacing: -.06em;
        pointer-events: none;
        transition: color .25s ease;
    }

    .cb-sector:hover::before {
        color: rgba(15,15,16,.08)
    }

    .cb-sector .ic {
        width: 44px;
        height: 44px;
        background: var(--ink);
        border: 1px solid var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 18px;
        color: var(--paper);
    }

        .cb-sector .ic svg {
            width: 22px;
            height: 22px
        }

    .cb-sector .t {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 18px;
        line-height: 1.3;
        color: var(--ink);
        letter-spacing: -.005em;
        max-width: 18ch;
    }

    .cb-sector .meta {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 14px;
    }

/* ====================================================================
   CLOSING CTA b  dramatic full-width with offset gold
   ==================================================================== */
.cb-cta {
    padding: 100px 0;
    background: var(--cream);
    border-top: 1px solid var(--line)
}

.cb-cta-inner {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1d 100%);
    color: var(--paper);
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

@media (max-width:680px) {
    .cb-cta-inner {
        padding: 48px 30px
    }
}

.cb-cta-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}

.cb-cta-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,245,204,.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cb-cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

@media (max-width:880px) {
    .cb-cta-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.cb-cta .turnaround {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255,213,106,.12);
    border: 1px solid rgba(255,213,106,.3);
    border-radius: 24px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FFD56A;
    margin-bottom: 26px;
}

    .cb-cta .turnaround svg {
        width: 14px;
        height: 14px
    }

.cb-cta h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 22px;
    color: var(--paper);
}

    .cb-cta h2 em {
        font-style: italic;
        color: #FFD56A
    }

.cb-cta p {
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.72);
    margin: 0 0 32px;
    max-width: 54ch
}

.cb-cta .row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn.btn-light {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--paper)
}

    .btn.btn-light:hover {
        background: transparent;
        color: var(--paper)
    }

.btn.btn-outline-light {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(255,255,255,.4)
}

    .btn.btn-outline-light:hover {
        border-color: var(--paper);
        background: rgba(255,255,255,.06)
    }

.cb-cta-side {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.16);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .cb-cta-side .lbl {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #FFD56A
    }

    .cb-cta-side a {
        color: var(--paper);
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px
    }

        .cb-cta-side a:hover {
            color: #FFD56A
        }

        .cb-cta-side a svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            flex-shrink: 0
        }

/* ====================================================================
   FORMS b  Request a Trainer + Join as Trainer
   ==================================================================== */
.cb-forms-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--paper) 0%, #FFFCF2 100%);
    border-top: 1px solid var(--butter-line)
}

.cb-forms-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

    .cb-forms-head .cb-eye {
        justify-content: center
    }

        .cb-forms-head .cb-eye::before {
            display: none
        }

    .cb-forms-head h2 {
        font-family: var(--serif);
        font-weight: 300;
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -.025em;
        margin: 18px 0 22px;
        color: var(--ink);
    }

        .cb-forms-head h2 em {
            font-style: italic;
            color: var(--red)
        }

    .cb-forms-head p {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.6;
        margin: 0
    }

.cb-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

@media (max-width:880px) {
    .cb-forms {
        grid-template-columns: 1fr
    }
}

.cb-form {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 44px 40px;
    position: relative;
    box-shadow: 0 1px 0 rgba(15,15,16,.04), 0 8px 24px rgba(15,15,16,.05);
}

    .cb-form::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 4px;
        background: var(--red)
    }

    .cb-form.dark {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink)
    }

        .cb-form.dark::before {
            background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%)
        }

        .cb-form.dark label {
            color: rgba(255,255,255,.75)
        }

        .cb-form.dark input, .cb-form.dark select, .cb-form.dark textarea {
            background: transparent;
            color: var(--paper);
            border-color: rgba(255,255,255,.25)
        }

            .cb-form.dark input::placeholder, .cb-form.dark textarea::placeholder {
                color: rgba(255,255,255,.45)
            }

.cb-form-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px
}

.cb-form.dark .cb-form-eye {
    color: #FFD56A
}

.cb-form-eye .d {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%
}

.cb-form h3 {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin: 0 0 10px
}

.cb-form > p.intro {
    font-size: 14.5px;
    color: var(--muted);
    margin: 0 0 16px;
    line-height: 1.6
}

.cb-form.dark > p.intro {
    color: rgba(255,255,255,.65)
}

.cb-form .quick-promise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--butter);
    color: var(--butter-ink);
    border: 1px solid var(--butter-line);
    border-radius: 20px;
    margin-bottom: 24px
}

.cb-form.dark .quick-promise {
    background: rgba(255,213,106,.12);
    color: #FFD56A;
    border-color: rgba(255,213,106,.3)
}

.cb-form .quick-promise svg {
    width: 12px;
    height: 12px
}

.cb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

@media (max-width:540px) {
    .cb-form-row {
        grid-template-columns: 1fr
    }
}

.cb-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

    .cb-field label {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted)
    }

    .cb-field input, .cb-field select, .cb-field textarea {
        font-family: var(--sans);
        font-size: 14.5px;
        padding: 12px 14px;
        border: 1px solid var(--line);
        background: var(--paper);
        color: var(--ink);
        outline: none;
        transition: border-color .15s ease
    }

        .cb-field input:focus, .cb-field select:focus, .cb-field textarea:focus {
            border-color: var(--red)
        }

    .cb-field textarea {
        min-height: 90px;
        resize: vertical
    }

.cb-radios {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cb-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13.5px;
    padding: 7px 12px;
    border: 1px solid var(--line)
}

    .cb-radio input {
        accent-color: var(--red)
    }

.cb-form .submit {
    margin-top: 18px;
    width: 100%;
    padding: 14px;
    background: var(--red)!important;
    color: var(--paper);
    border: none;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s ease
}

    .cb-form .submit:hover {
        background: var(--red-deep)
    }

.cb-form .promise {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--butter);
    border-left: 3px solid var(--gold);
    font-size: 13px;
    color: var(--butter-ink)
}

.cb-form.dark .promise {
    background: rgba(255,213,106,.1);
    border-left-color: #FFD56A;
    color: rgba(255,255,255,.85)
}


.cb-hero-grid1 {
    padding-top: 35px;
}


.all-section {
    max-width: 1200px;
    margin: 0 auto;
}

.all-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.section-eyebrow {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 8px 0;
    color: var(--color-text-primary);
    line-height: 1.15;
}

.section-lede {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary);
    margin: 0;
}

.course-count {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: right;
    white-space: nowrap;
}

    .course-count strong {
        font-size: 22px;
        color: var(--color-text-primary);
        display: block;
        font-family: 'Georgia', serif;
    }

/* Filter chips */
.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.chip {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .chip:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }

    .chip.active {
        background: var(--color-text-primary);
        color: #fff;
        border-color: var(--color-text-primary);
    }

/* Grid */
.all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Mini card */
.mini-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .mini-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--color-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .mini-card:hover {
        border-color: var(--ink);
        transform: translateY(-3px);
    }

        .mini-card:hover::after {
            transform: scaleX(1);
        }

    .mini-card.hidden {
        display: none;
    }

.mini-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.mini-cat {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: none;
}

.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #FDF4D8;
    color: #B8860B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-badge {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-pill-pink-bg);
    color: var(--color-pill-pink-text);
    padding: 5px 12px;
    border-radius: 999px;
    height: fit-content;
}

.mini-title {
    font-size: 21px;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.mini-desc {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.mini-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .mini-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        padding: 6px 11px;
        border-radius: 999px;
        background: var(--color-pill-green-bg);
        color: var(--color-pill-green-text);
    }

        .mini-meta span:nth-child(2) {
            background: #F3F1ED;
            color: var(--color-text-secondary);
        }

.mini-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.mini-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.mini-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mini-card:hover .mini-arrow {
    background: var(--color-accent);
    color: #fff;
    transform: translateX(3px);
}

/* Empty state */
.empty-state {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-secondary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

    .empty-state.visible {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .empty-state svg {
        color: var(--color-border);
        margin-bottom: 12px;
    }

/* Responsive */
@media (max-width:980px) {
    .all-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .all-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .all-head {
        align-items: flex-start;
    }

    .course-count {
        text-align: left;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mini-card, .mini-arrow, .mini-card::after, .chip {
        transition: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.wellbeing {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

    .wellbeing .label{
        color:#fff!important;
    }

    .wellbeing .label:hover {
        color: #fff !important;
    }