:root {
    --orange: #E8572A;
    --orange-light: #FF7043;
    --dark: #111110;
    --dark-2: #1A1917;
    --cream: #F5F0E8;
    --cream-2: #FAF7F2;
    --text-muted-custom: #8A8070;
}

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

/* ── HERO ── */
.hero {
    position: relative;
    height: 440px;
    background: #0b0a08;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 56px;
}

.hero-split {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
    background: linear-gradient(160deg, #1a1510 0%, #0e0c09 100%);
    z-index: 0;
}

.hero-split::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(232, 87, 42, 0.12) 100%);
}

.hero-right-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1c1208 0%, #0d0b07 100%);
    z-index: 0;
    overflow: hidden;
}

.hero-right-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(232, 87, 42, 0.03) 30px, rgba(232, 87, 42, 0.03) 31px);
}

.hero-right-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 80% 40%, rgba(232, 87, 42, 0.18) 0%, transparent 65%);
}

.hero-vline {
    position: absolute;
    left: 56%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
    z-index: 2;
}

.hero-bg-word {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 20vw, 240px);
    color: rgba(232, 87, 42, 0.05);
    line-height: 1;
    letter-spacing: -8px;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
}

.hero-ticker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
    opacity: 0.35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.hero-ticker-inner {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.hero-ticker span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-ticker span::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 56px;
    max-width: 680px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero-eyebrow span {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 120px);
    color: #fff;
    line-height: 0.88;
    letter-spacing: 2px;
}

.hero h1 .outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.hero h1 .accent {
    color: var(--orange);
}

.hero-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange-light) 60%, transparent);
    z-index: 10;
}

/* ── SECTION LABELS ── */
.section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--orange);
}

/* ── MISSION ── */
.mission-section {
    background: var(--cream-2);
    padding: 80px 0 60px;
}

.mission-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 80px);
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--dark);
}

.mission-body {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4540;
}

.mission-pull {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--dark);
    border-left: 3px solid var(--orange);
    padding-left: 20px;
    margin-top: 28px;
    line-height: 1.6;
}

.pillar-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
    border-color: rgba(232, 87, 42, 0.2);
}

.pillar-card:hover::after {
    transform: scaleX(1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 87, 42, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
    margin-bottom: 16px;
}

.pillar-card h5 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.pillar-card p {
    font-size: 13px;
    color: var(--text-muted-custom);
    line-height: 1.65;
    margin: 0;
}

/* ── STATEMENT BAND ── */
.statement-band {
    background: var(--dark);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.statement-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(232, 87, 42, 0.10) 0%, transparent 70%);
}

.statement-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.statement-left {
    flex: 0 0 38%;
    display: flex;
    align-items: center;
    padding-right: 48px;
}

.statement-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 2.8vw, 32px);
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.25;
}

.statement-text em {
    color: var(--orange);
    font-style: normal;
}

.statement-vline {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: stretch;
}

.statement-right {
    flex: 1;
    padding-left: 48px;
}

.statement-vision-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

.statement-vision-heading span {
    color: var(--orange);
}

.statement-vision-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 18px;
}

.statement-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statement-check {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.statement-check i {
    color: var(--orange);
    font-size: 13px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .statement-inner {
        flex-direction: column;
        gap: 32px;
    }

    .statement-left {
        flex: none;
        padding-right: 0;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .statement-vline {
        display: none;
    }

    .statement-right {
        padding-left: 0;
    }
}

/* ══════════════════════════════════════════════
── VISION SECTION — FULL WIDTH SINGLE COLUMN ─
══════════════════════════════════════════════ */
.vision-section {
    background: var(--cream-2);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Big decorative background text */
.vision-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 280px);
    color: rgba(232, 87, 42, 0.04);
    letter-spacing: -10px;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Header block */
.vision-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vision-header-left {
    flex: 0 0 auto;
    width: 40%;
    min-width: 280px;
}

.vision-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5.5vw, 72px);
    letter-spacing: 1.5px;
    line-height: 0.95;
    color: var(--dark);
}

.vision-heading .outline-txt {
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.15);
    color: transparent;
}

.vision-heading .accent {
    color: var(--orange);
}

.vision-header-right {
    flex: 1;
    min-width: 260px;
}

.vision-lead {
    font-size: 15px;
    line-height: 1.85;
    color: #4a4540;
    margin-bottom: 24px;
}

/* Check items */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon i {
    font-size: 11px;
    color: #fff;
}

.check-text {
    font-size: 14px;
    color: #4a4540;
    line-height: 1.6;
}

/* ── GOALS GRID — 4 cards across full width ── */
.goals-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.goals-label-row h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted-custom);
    margin: 0;
}

.goals-label-row .goals-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--orange);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.goal-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 28px 22px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(232, 87, 42, 0.10);
    border-color: rgba(232, 87, 42, 0.3);
}

.goal-card:hover .goal-card-accent {
    transform: scaleX(1);
}

.goal-card:hover .goal-card-num {
    color: rgba(232, 87, 42, 0.08);
}

/* Top accent bar */
.goal-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Big ghost number */
.goal-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    letter-spacing: 2px;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.goal-card-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 87, 42, 0.09);
    border: 1px solid rgba(232, 87, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--orange);
    margin-bottom: 14px;
}

.goal-card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.goal-card-desc {
    font-size: 12.5px;
    color: var(--text-muted-custom);
    line-height: 1.6;
    flex: 1;
    margin: 0 0 18px;
}

@media (max-width: 991px) {
    .vision-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }

    .vision-heading {
        font-size: clamp(52px, 14vw, 80px);
    }
}

/* ── CLOSING SECTION ── */
/* ── CLOSING SECTION ── */
.closing-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.closing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 120% at 0% 50%, rgba(232, 87, 42, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 100% 50%, rgba(232, 87, 42, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.closing-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 0;
}

/* Left: big headline */
.closing-left {
    flex: 0 0 50%;
    padding: 52px 48px 52px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.closing-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.closing-eyebrow i {
    font-size: 11px;
    color: var(--orange);
}

.closing-eyebrow span {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
}

.closing-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    color: #fff;
    line-height: 0.95;
    letter-spacing: 1px;
    margin: 0;
}

.closing-headline .hl-outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
    color: transparent;
    display: block;
}

.closing-headline .hl-accent {
    color: var(--orange);
}

.closing-headline .hl-dim {
    color: rgba(255, 255, 255, 0.25);
}

/* Right: quote */
.closing-right {
    flex: 1;
    padding: 52px 0 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.closing-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: rgba(232, 87, 42, 0.25);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.closing-quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(14px, 1.4vw, 17px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin: 0 0 24px;
}

.closing-quote-text strong {
    color: #fff;
    font-style: normal;
    font-weight: 600;
}

.closing-divider {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 16px;
}

.closing-promise-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .closing-inner {
        flex-direction: column;
    }

    .closing-left {
        flex: none;
        padding: 40px 0 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .closing-right {
        padding: 32px 0 40px;
    }
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 28px;
    }

    .hero-vline {
        display: none;
    }

    .hero-split {
        clip-path: none;
    }

    .hero-right-panel {
        width: 100%;
        opacity: 0.3;
    }
}

/* ── COACHES SECTION ── */
.coaches-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.coaches-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT: static text panel */
.coaches-left {
    flex: 0 0 300px;
    min-width: 0;
}

.coaches-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--dark);
    margin: 10px 0 14px;
}

.coaches-sub {
    font-size: 13.5px;
    color: var(--text-muted-custom);
    line-height: 1.75;
    margin-bottom: 32px;
}

.coaches-section .section-eyebrow {
    color: var(--orange);
}

.coaches-section .section-eyebrow::after {
    background: var(--orange);
}

.coaches-nav {
    display: flex;
    gap: 10px;
}

.coach-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-muted-custom);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.coach-nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 87, 42, 0.25);
}

/* RIGHT: carousel */
.coaches-right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.coaches-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Coach card — no card frame, just photo + label below */
.coach-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
    cursor: default;
}

.coach-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #e0d8cc;
}

.coach-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img-wrap img {
    transform: scale(1.04);
}

.coach-sport-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.coach-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.coach-card:hover .coach-img-wrap::after {
    transform: scaleX(1);
}

.coach-info {
    padding: 14px 4px 0;
}

.coach-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
}

.coach-role {
    font-size: 12px;
    color: var(--text-muted-custom);
}

/* Dots below carousel */
.coaches-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.coach-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.coach-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .coaches-layout {
        flex-direction: column;
        gap: 36px;
    }

    .coaches-left {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .coach-card {
        flex: 0 0 calc(100%);
    }
}

/* ── LEADERSHIP SECTION ── */
.leadership-section {
    background: #fff;
    padding: 90px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.leadership-layout {
    display: flex;
    align-items: center;
    gap: 72px;
}

/* Left photo col */
.leadership-img-col {
    flex: 0 0 420px;
    position: relative;
}

.leadership-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
}

.leadership-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Decorative orange offset block behind image */
.leadership-deco-block {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 60%;
    height: 60%;
    background: rgba(232, 87, 42, 0.10);
    border-radius: 18px;
    z-index: 1;
    border: 2px solid rgba(232, 87, 42, 0.18);
}

.leadership-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.leadership-img-badge i {
    color: var(--orange);
    font-size: 14px;
}

/* Right text col */
.leadership-text-col {
    flex: 1;
    min-width: 0;
}

.leadership-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted-custom);
    margin: 6px 0 12px;
}

.leadership-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 1px;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 20px;
}

.leadership-body {
    font-size: 14.5px;
    line-height: 1.85;
    color: #4a4540;
    margin-bottom: 28px;
}

/* Quote */
.leadership-quote {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.leadership-quote-bar {
    width: 3px;
    flex-shrink: 0;
    background: var(--orange);
    border-radius: 2px;
    align-self: stretch;
    min-height: 60px;
}

.leadership-quote-inner {
    display: flex;
    flex-direction: column;
}

.leadership-quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin: 0 0 6px;
}

.leadership-quote-attr {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
}

/* Stats */
.leadership-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.leadership-stat {
    flex: 1;
}

.leadership-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--dark);
    letter-spacing: 1px;
    line-height: 1;
}

.leadership-stat-num span {
    color: var(--orange);
    font-size: 24px;
}

.leadership-stat-label {
    font-size: 11px;
    color: var(--text-muted-custom);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.leadership-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin: 0 28px;
}

@media (max-width: 991px) {
    .leadership-layout {
        flex-direction: column;
        gap: 40px;
    }

    .leadership-img-col {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ── COMBINED MISSION & VISION ── */
.mv-section {
    background: var(--cream-2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mv-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 20vw, 260px);
    color: rgba(232, 87, 42, 0.03);
    letter-spacing: -8px;
    user-select: none;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.mv-section-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}

.mv-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 8px;
}

.mv-section-sub {
    font-size: 13.5px;
    color: var(--text-muted-custom);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two-col layout */
.mv-cols {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 2;
}

.mv-col {
    flex: 1;
    min-width: 0;
    padding: 0 48px;
}

.mv-col:first-child {
    padding-left: 0;
}

.mv-col:last-child {
    padding-right: 0;
}

.mv-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.mv-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream-2);
    border: 2px solid rgba(232, 87, 42, 0.3);
}

.mv-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

/* Eyebrow */
.mv-col-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(232, 87, 42, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(232, 87, 42, 0.18);
}

.mv-col-eyebrow i {
    font-size: 11px;
}

.mv-col-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 20px;
}

.mv-outline {
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.18);
    color: transparent;
}

/* Body */
.mv-col-body {
    font-size: 13.5px;
    line-height: 1.8;
    color: #4a4540;
}

/* Mission pull quote */
.mv-pull {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--dark);
    border-left: 3px solid var(--orange);
    padding-left: 16px;
    margin: 20px 0 24px;
    line-height: 1.65;
}

.mv-pull strong {
    color: var(--orange);
    font-style: normal;
}

/* Mission pillars */
.mv-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.mv-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mv-pillar-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 87, 42, 0.09);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--orange);
    flex-shrink: 0;
}

.mv-pillar-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 1px;
}

.mv-pillar-desc {
    font-size: 12px;
    color: var(--text-muted-custom);
    line-height: 1.5;
}

/* Vision checks */
.mv-checks {
    margin: 20px 0 28px;
}

/* Vision goals — text list */
.mv-goals-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted-custom);
    margin-bottom: 12px;
}

.mv-goal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mv-goal-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 13px;
    color: #4a4540;
    line-height: 1.5;
}

.mv-goal-list li:last-child {
    border-bottom: none;
}

.mv-goal-list li strong {
    color: var(--dark);
}

.mv-goal-list-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 22px;
}

@media (max-width: 991px) {
    .mv-cols {
        flex-direction: column;
        gap: 40px;
    }

    .mv-col {
        padding: 0;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .mv-divider::before {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mv-divider::after {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}