/* ── BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #f7f6f3;
    color: #1a0f3c;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════
           SITE NAV — exact from index
           ════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: #1a0f3c;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: box-shadow .3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s, color .18s;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.nav-trigger:hover,
.nav-item:hover>.nav-trigger {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.nav-trigger.active {
    color: #e63975;
    font-weight: 600;
}

.nav-trigger .chev {
    font-size: .57rem;
    opacity: .5;
    transition: transform .2s;
}

.nav-item:hover>.nav-trigger .chev {
    transform: rotate(180deg);
    opacity: .9;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-ghost-nav {
    text-decoration: none;
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .22);
    transition: all .2s;
}

.btn-ghost-nav:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.btn-pill-nav {
    text-decoration: none;
    color: #1a0f3c;
    font-size: .875rem;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 50px;
    background: #fff;
    transition: all .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.btn-pill-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    transition-delay: 0.12s;
    z-index: 600;
    min-width: 220px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-item:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.nav-dropdown.wide {
    min-width: 720px;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.nav-dropdown.wide2 {
    min-width: 480px;
    padding: 18px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.ndp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s;
}

.ndp-item:hover {
    background: #fce7f3;
}

.ndp-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.ndp-name {
    font-size: .84rem;
    font-weight: 700;
    color: #1a0f3c;
    margin-bottom: 1px;
}

.ndp-desc {
    font-size: .73rem;
    color: #6b7280;
    line-height: 1.35;
}

.ndp-simple a {
    display: block;
    padding: 9px 14px;
    font-size: .84rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all .15s;
}

.ndp-simple a:hover {
    background: #fce7f3;
    color: #e63975;
    font-weight: 600;
}

.ndp-label {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 4px 14px 8px;
    display: block;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .nav-dropdown.wide {
        grid-template-columns: 1fr 1fr;
        min-width: 460px;
    }
}

/* ════════════════════════════
           CONTAINER & GLOBAL TOKENS
           ════════════════════════════ */
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #e63975;
    margin-bottom: 24px;
}

.h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1a0f3c;
    margin-bottom: 24px;
}

.h2 em {
    font-weight: 800;
    font-style: normal;
    color: #e63975;
}

.h2.light {
    color: #fff;
}

.h2.light em {
    color: #f8a4c0;
}

.body-lg {
    font-size: 1.2rem;
    color: #5a5080;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 500;
}

/* ════════════════════════════
           SECTION WRAPPERS
           ════════════════════════════ */
.section-white {
    background: #fff;
    padding: 140px 0;
}

.section-light {
    background: #f7f6f3;
    padding: 140px 0;
}

.section-dark {
    background: #1a0f3c;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(230, 57, 117, .18) 0%, transparent 60%);
}

.section-teal {
    background: #0d1a0f;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-teal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(230, 57, 117, .18) 0%, transparent 60%);
}

/* ════════════════════════════
           HERO — dark navy with canvas
           ════════════════════════════ */
.about-hero {
    background: #1a0f3c;
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 960px;
}

.about-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 117, .15);
    border: 1px solid rgba(230, 57, 117, .3);
    color: #e63975;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.about-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 28px;
}

.about-hero h1 em {
    font-style: normal;
    color: #e63975;
}

.about-hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 44px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e63975;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 6px 28px rgba(230, 57, 117, .4);
    border: 2px solid #e63975;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #e63975;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(230, 57, 117, .25);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .25);
    transition: all .25s;
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
    transform: translateY(-3px);
}

/* ════════════════════════════
           SPLIT SECTION
           ════════════════════════════ */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

/* ════════════════════════════
           BRAND FEATURES (no icons)
           ════════════════════════════ */
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.brand-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), box-shadow .32s cubic-bezier(.22, 1, .36, 1), border-color .32s ease;
}

.brand-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 15, 60, .08);
    border-color: rgba(230, 57, 117, .2);
}

.brand-feature h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a0f3c;
}

.brand-feature p {
    font-size: .95rem;
    color: #5a5080;
    line-height: 1.6;
}

/* ════════════════════════════
           STAT CARDS GRID (right col)
           ════════════════════════════ */
.stat-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: #f7f6f3;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all .3s;
}

.stat-card:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(26, 15, 60, .07);
    transform: translateY(-4px);
}

.stat-card-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a0f3c;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.stat-card-num span {
    color: #e63975;
}

.stat-card-label {
    font-size: .88rem;
    font-weight: 600;
    color: #1a0f3c;
    margin-bottom: 4px;
}

.stat-card-sub {
    font-size: .78rem;
    color: #5a5080;
    line-height: 1.5;
}

.stat-card.accent {
    background: #1a0f3c;
}

.stat-card.accent .stat-card-num {
    color: #fff;
}

.stat-card.accent .stat-card-num span {
    color: #e63975;
}

.stat-card.accent .stat-card-label {
    color: rgba(255, 255, 255, .85);
}

.stat-card.accent .stat-card-sub {
    color: rgba(255, 255, 255, .5);
}

/* ════════════════════════════
           PILLARS / VALUES GRID
           ════════════════════════════ */
.section-header {
    margin-bottom: 72px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .body-lg {
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .02);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 15, 60, .08);
}

.pillar-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a0f3c;
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 1rem;
    color: #5a5080;
    line-height: 1.65;
}

/* ════════════════════════════
           STORY TIMELINE (no icons)
           ════════════════════════════ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e63975, rgba(230, 57, 117, .1));
}

.timeline-item {
    display: flex;
    gap: 28px;
    padding-bottom: 36px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #e63975;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.tl-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e63975;
}

.tl-content {
    padding-top: 6px;
    flex: 1;
}

.tl-year {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e63975;
    margin-bottom: 6px;
}

.tl-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a0f3c;
    margin-bottom: 6px;
}

.tl-body {
    font-size: .9rem;
    color: #5a5080;
    line-height: 1.6;
}

/* ════════════════════════════
           CTA SECTION
           ════════════════════════════ */
.cta-band {
    background: #1a0f3c;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(230, 57, 117, .22) 0%, transparent 60%);
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-band .eyebrow {
    color: rgba(230, 57, 117, .9);
}

.cta-band .body-lg {
    color: rgba(255, 255, 255, .65);
    margin: 0 auto 44px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    background: #e63975;
    box-shadow: 0 6px 28px rgba(230, 57, 117, .4);
    transition: all .25s;
    border: 2px solid #e63975;
    margin-right: 12px;
}

.btn-cta-primary:hover {
    background: #c8255e;
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 34px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    transition: all .25s;
}

.btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
    transform: translateY(-2px);
}

/* ════════════════════════════
           QUOTE / PHILOSOPHY STRIP
           ════════════════════════════ */
.philosophy-strip {
    background: #f7f6f3;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding: 80px 0;
}

.philosophy-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}

.philosophy-bar {
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, #e63975, #1a0f3c);
    border-radius: 4px;
    flex-shrink: 0;
}

.philosophy-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a0f3c;
}

.philosophy-quote em {
    font-style: normal;
    color: #e63975;
}

.philosophy-attr {
    margin-top: 20px;
    font-size: .9rem;
    color: #5a5080;
    font-weight: 500;
}

@media (max-width: 768px) {
    .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .philosophy-bar {
        width: 56px;
        height: 4px;
    }
}

/* ════════════════════════════
           REVEAL ANIMATION
           ════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ════════════════════════════
           FOOTER — exact from index
           ════════════════════════════ */
.site-footer {
    background: #0d1a0f;
    padding: 64px 0 36px;
}

.sf-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

.sf-brand-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 240px;
}

.sf-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.sf-social {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    transition: all .2s;
}

.sf-social:hover {
    background: #e63975;
    color: #fff;
    transform: translateY(-2px);
}

.sf-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.sf-col h5 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sf-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf-col li a {
    text-decoration: none;
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.sf-col li a:hover {
    color: #fff;
}

.sf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
}

.sf-bottom a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.sf-bottom a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .site-nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-menu {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .split-section {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .sf-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sf-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

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

    .sf-cols {
        grid-template-columns: 1fr;
    }

    .sf-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ── ABOUT: Responsive section padding ── */
@media (max-width: 1024px) {

    .section-white,
    .section-light,
    .section-dark,
    .section-teal {
        padding: 100px 0;
    }

    .about-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .cta-band {
        padding: 96px 0;
    }
}

@media (max-width: 768px) {

    .section-white,
    .section-light,
    .section-dark,
    .section-teal {
        padding: 72px 0;
    }

    .about-hero {
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .cta-band {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {

    .section-white,
    .section-light,
    .section-dark,
    .section-teal {
        padding: 56px 0;
    }

    .about-hero {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    .cta-band {
        padding: 56px 0;
    }
}

/* ── Container side padding — matches index.html breakpoint system ── */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}