/* ── CSS VARIABLES ───────────────────────────────────────────────────── */
:root {
    --plum:       #713357;
    --coral:      #fb7b44;
    --magenta:    #d20d89;
    --dark-gray:  #444444;
    --warm-peach: #fbefe1;
    --white:      #ffffff;
    --border:     #eeeeee;
}

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

html, body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--white);
}

/* ── SKIP LINK ───────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--plum);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* ── TOP BANNER ──────────────────────────────────────────────────────── */
.banner, .top-banner {
    background-color: var(--plum);
    color: var(--white);
    text-align: center;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
}
.banner a, .top-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}
.banner a:hover, .top-banner a:hover { opacity: 0.85; }

/* ── CORAL STRIPE ────────────────────────────────────────────────────── */
.brand-stripe, .coral-stripe {
    height: 3px;
    background-color: var(--coral);
}

/* ── NAVIGATION ──────────────────────────────────────────────────────── */
nav {
    background: var(--white);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Logo variants */
.logo-link, .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon { height: 46px; width: auto; flex-shrink: 0; }
.logo-text, .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name, .nav-logo-text .logo-line1 {
    font-size: 17px;
    font-weight: 700;
    color: var(--plum);
    letter-spacing: 0.01em;
}
.logo-sub, .nav-logo-text .logo-line2 {
    font-size: 13px;
    font-weight: 400;
    color: var(--plum);
    opacity: 0.75;
    letter-spacing: 0.01em;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    color: var(--plum);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 0.65; }
.nav-links a.active { color: var(--coral); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum);
    font-size: 24px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum);
    transition: 0.3s;
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s, filter 0.2s;
    width: 210px;
}
.btn:hover { opacity: 0.88; }
.btn-primary  { background-color: var(--plum);    color: var(--white);  border: 2px solid var(--plum); }
.btn-secondary{ background-color: transparent;    color: var(--plum);   border: 2px solid var(--plum); }
.btn-coral    { background-color: var(--coral);   color: var(--white);  border: 2px solid var(--coral); }
.btn-magenta  { background-color: var(--magenta); color: var(--white);  border: 2px solid var(--magenta); }
.btn-white    { background-color: var(--white);   color: var(--plum);   border: 2px solid var(--white); }
.btn-outline  { background-color: transparent;    color: var(--plum);   border: 2px solid var(--plum); }
.btn-ghost    { background-color: transparent;    color: var(--white);  border: 2px solid var(--white); }
.btn-primary:hover, .btn-secondary:hover { filter: brightness(1.08); }

/* ── SECTION SHARED ──────────────────────────────────────────────────── */
.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-intro {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 48px;
}

/* ── CARD SYSTEM ─────────────────────────────────────────────────────── */
.card, .feature-item, .why-card, .level-card, .major-card, .partner-category,
.pricing-card, .cat-card, .persona-card, .mvs-card, .connect-card, .pathway-card {
    border-top: 4px solid;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    background: var(--white);
}
.c-plum    { border-top-color: var(--plum); }
.c-coral   { border-top-color: var(--coral); }
.c-magenta { border-top-color: var(--magenta); }
.c-peach   { border-top-color: var(--plum); background: var(--warm-peach); }

/* ── CTA STRIP ───────────────────────────────────────────────────────── */
.cta-strip {
    background: var(--plum);
    padding: 36px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-strip p {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    flex: 1;
}
.cta-strip p span { color: var(--coral); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
    background: var(--plum);
    color: var(--white);
    padding: 60px 0 40px;
    border-top: 3px solid var(--coral);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand-text, .footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.footer-brand-sub { font-weight: 400; font-size: 18px; color: var(--white); }
.footer-column p, .footer-column address { font-size: 14px; line-height: 1.9; font-style: normal; }
.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-col ul, .footer-column ul { list-style: none; }
.footer-col ul li, .footer-column ul li { margin-bottom: 8px; }
.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}
.footer-column a:hover { opacity: 0.7; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); text-align: center; }

/* ── LEGAL PAGES ─────────────────────────────────────────────────────── */
.page-hero {
    background: var(--warm-peach);
    padding: 64px 60px 48px;
}
.page-hero .section-label { color: var(--plum); margin-bottom: 14px; }
.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero .last-updated { font-size: 14px; color: var(--dark-gray); opacity: 0.65; }
.content-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 60px 80px;
}
.content-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--plum);
    margin-top: 44px;
    margin-bottom: 14px;
    line-height: 1.3;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.content-wrap h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.content-wrap h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--plum);
    margin-top: 28px;
    margin-bottom: 10px;
}
.content-wrap p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.85;
    margin-bottom: 16px;
}
.content-wrap p:last-child { margin-bottom: 0; }
.content-wrap ul { margin: 12px 0 16px 24px; }
.content-wrap ul li {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.85;
    margin-bottom: 8px;
}
.content-wrap a { color: var(--plum); font-weight: 600; text-decoration: underline; }
.content-wrap a:hover { color: var(--coral); }
.distinction-box {
    background: var(--warm-peach);
    border-left: 4px solid var(--plum);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.distinction-box p {
    font-size: 15px;
    font-weight: 600;
    color: var(--plum);
    line-height: 1.7;
    margin-bottom: 0;
}
.contact-block {
    background: var(--warm-peach);
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 28px;
}
.contact-block p { font-size: 15px; line-height: 1.85; margin-bottom: 0; }

/* ── PAGE LAYOUT ─────────────────────────────────────────────────────── */
.page-section { padding: 80px 60px; }
.page-section--white { background-color: var(--white); }
.page-section--peach { background-color: var(--warm-peach); }
.page-section--centered { text-align: center; }
.page-section--narrow { padding: 80px 40px; }
.page-section--flush { padding: 0; margin: 0; overflow: hidden; }
.page-section--tall { padding-top: 100px; }
.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 720px; margin: 0 auto; text-align: center; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ── GRID LAYOUTS ───────────────────────────────────────────────────── */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-2col-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-2col-lg { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-3col-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-3col-lg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-4col-sm { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.align-stretch { align-items: stretch; }
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.flex-row--center { justify-content: center; }

/* ── TEXT ACCENTS ────────────────────────────────────────────────────── */
.accent-coral { color: var(--coral); display: block; }
.accent-magenta { color: var(--magenta); display: block; }
.text-coral { color: var(--coral); }
.text-magenta { color: var(--magenta); }

/* ── SECTION MODIFIERS ──────────────────────────────────────────────── */
.section-label--coral { color: var(--coral); }
.section-label--magenta { color: var(--magenta); }
.section-intro--centered { max-width: 640px; margin: 0 auto 40px; }
.subsection-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 48px;
}

/* ── HERO PATTERNS ──────────────────────────────────────────────────── */
.hero-home {
    background-color: var(--warm-peach);
    padding: 96px 40px 80px;
}
.hero-home-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-home .hero-subtext { line-height: 1.65; max-width: 480px; margin-bottom: 36px; }
.hero-partners {
    background-color: var(--plum);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 420px;
}
.hero-partners .hero-subtext { max-width: 540px; }
.hero-give {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 60px 0;
}
.hero-give-image {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.hero-give-content {
    background-color: var(--warm-peach);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-sponsorships {
    background-color: var(--warm-peach);
    padding: 96px 60px 80px;
    text-align: center;
}
.hero-sponsorships .hero-subtext {
    font-size: 19px;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 40px;
}
.hero-heading { font-weight: 700; margin-bottom: 24px; }
.hero-heading--md { font-size: 46px; line-height: 1.18; }
.hero-heading--lg { font-size: 48px; line-height: 1.15; margin-bottom: 20px; }
.hero-heading--xl { font-size: 54px; line-height: 1.15; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-heading--plum { color: var(--plum); }
.hero-heading--white { color: var(--white); }
.hero-subtext { font-size: 18px; color: var(--dark-gray); line-height: 1.7; margin-bottom: 32px; }
.hero-subtext--light { color: rgba(255,255,255,0.88); }
.hero-image-frame { border-radius: 8px; overflow: hidden; }
.hero-image-frame--md { height: 320px; }
.hero-image-frame--lg { height: 420px; border-radius: 12px; }
.hero-image-frame--square { width: 100%; aspect-ratio: 1 / 1; border-radius: 8px; }
.hero-image-frame picture { display: block; width: 100%; height: 100%; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo { padding: 0; margin: 0; overflow: hidden; }
.hero-photo--sm { max-height: 380px; }
.hero-photo--lg { max-height: 420px; }
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img { width: 100%; object-fit: cover; display: block; }
.hero-photo--sm img { height: 380px; }
.hero-photo--lg img { height: 420px; }

/* ── BODY TEXT ───────────────────────────────────────────────────────── */
.body-text { font-size: 16px; color: var(--dark-gray); line-height: 1.8; margin-bottom: 18px; }
.body-text:last-child { margin-bottom: 0; }
.body-text--lg { font-size: 18px; line-height: 1.75; margin-bottom: 18px; }
.body-text--lg:last-child { margin-bottom: 0; }
.body-text--light { color: rgba(255,255,255,0.88); }
.body-text--story { font-size: 16px; color: var(--dark-gray); line-height: 1.85; margin-bottom: 18px; }
.body-text--story:last-child { margin-bottom: 0; }

/* ── EYEBROW TEXT ───────────────────────────────────────────────────── */
.eyebrow, .mvs-eyebrow, .connect-eyebrow, .persona-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}
.eyebrow { margin-bottom: 10px; }
.mvs-eyebrow { margin-bottom: 12px; }
.connect-eyebrow { margin-bottom: 10px; }
.persona-eyebrow { margin-bottom: 10px; }
.eyebrow--coral, .connect-eyebrow.c-coral { color: var(--coral); }
.eyebrow--plum, .connect-eyebrow.c-plum { color: var(--plum); }
.eyebrow--magenta, .connect-eyebrow.c-magenta { color: var(--magenta); }

/* ── CARD COMPONENTS ────────────────────────────────────────────────── */
.card-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.card-icon--sm { width: 36px; height: 36px; margin-bottom: 14px; }
.card-icon--lg { width: 48px; height: 48px; margin-bottom: 16px; }
.card-title { font-size: 18px; font-weight: 700; color: var(--plum); margin-bottom: 10px; }
.card-title--sm { font-size: 16px; font-weight: 700; color: var(--plum); margin-bottom: 8px; }
.card-title--lg { font-size: 20px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.card-title--xl { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.card-title--19 { font-size: 19px; font-weight: 700; color: var(--plum); margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--dark-gray); line-height: 1.65; }
.card-desc--md { font-size: 15px; line-height: 1.7; }
.card-desc--lg { font-size: 15px; line-height: 1.75; }
.card-desc--xl { font-size: 16px; line-height: 1.85; }
.card-desc--flex { flex: 1; margin-bottom: 24px; }
.card-desc--flex-18 { flex: 1; margin-bottom: 18px; }
.card-meta { margin-top: 20px; padding-top: 16px; border-top: 1px solid #eeeeee; font-size: 13px; color: #888; }
.card-meta strong { color: var(--dark-gray); }
.card-link { text-decoration: none; font-size: 15px; font-weight: 600; margin-top: auto; }
.card-link--plum { color: var(--plum); }
.card-link--coral { color: var(--coral); }
.card-link--magenta { color: var(--magenta); }

/* ── CARD TYPE STYLES ───────────────────────────────────────────────── */
.feature-item { padding: 28px 24px; }
.why-card { padding: 32px 28px; }
.cat-card { padding: 32px 28px; display: flex; flex-direction: column; }
.persona-card { padding: 36px 28px; }
.persona-card.c-coral   { border-top-color: var(--coral); }
.persona-card.c-plum    { border-top-color: var(--plum); }
.persona-card.c-magenta { border-top-color: var(--magenta); }
.persona-card.c-coral   .persona-eyebrow { color: var(--coral); }
.persona-card.c-plum    .persona-eyebrow { color: var(--plum); }
.persona-card.c-magenta .persona-eyebrow { color: var(--magenta); }
.mvs-card { padding: 36px 28px; }
.connect-card { padding: 32px 24px; display: flex; flex-direction: column; }
.level-card { padding: 32px 24px; display: flex; flex-direction: column; position: relative; transition: transform 0.15s, box-shadow 0.15s; }
.major-card { padding: 36px 32px; display: flex; flex-direction: column; }
.pricing-card { padding: 36px 32px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.pathway-card { padding: 36px; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.pathway-card h3 { font-size: 20px; font-weight: 700; color: var(--plum); margin-bottom: 16px; }
.pathway-card p { font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--dark-gray); margin-bottom: 24px; flex-grow: 1; }

/* Org-type cards */
.org-card { border-top-width: 4px; border-top-style: solid; border-radius: 8px; padding: 32px 28px; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.org-card.c-coral   { border-top-color: var(--coral); }
.org-card.c-plum    { border-top-color: var(--plum); }
.org-card.c-magenta { border-top-color: var(--magenta); }
.org-list { list-style: none; padding: 0; }
.org-list li { font-size: 14px; color: var(--dark-gray); padding: 4px 0 4px 18px; position: relative; }
.org-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 2px; border-radius: 9999px; }
.c-coral .org-list li::before { background: var(--coral); }
.c-plum .org-list li::before { background: var(--plum); }
.c-magenta .org-list li::before { background: var(--magenta); }

/* ── CALLOUT BOXES ──────────────────────────────────────────────────── */
.callout-plum { background: var(--plum); color: var(--white); border-radius: 8px; padding: 48px 56px; }
.callout-plum--grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.callout-plum h2, .callout-plum h3 { color: var(--white); font-weight: 700; margin-bottom: 16px; }
.callout-plum h2 { font-size: 32px; }
.callout-plum h3 { font-size: 28px; }
.callout-plum p { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.75; }
.callout-plum p.callout-plum--lg { font-size: 17px; }
.btn--sm { width: auto; min-width: 0; padding: 10px 20px; font-size: 14px; }
.callout-plum-full { background: var(--plum); border-radius: 8px; padding: 56px 64px; }
.callout-plum-full .section-label { margin-bottom: 16px; }
.callout-plum-full h2 { font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.callout-plum-full p { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 18px; }
.callout-plum-full p:last-child { margin-bottom: 0; }
.callout-peach { background: var(--warm-peach); border-radius: 8px; padding: 24px 32px; display: flex; align-items: center; gap: 18px; }
.callout-peach-grid { background: var(--warm-peach); border-radius: 8px; padding: 40px 48px; margin-top: 48px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.callout-peach-grid h3 { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.callout-peach-grid p { font-size: 15px; color: var(--dark-gray); line-height: 1.75; }
.info-strip { background: var(--plum); border-radius: 8px; padding: 28px 36px; display: flex; align-items: center; gap: 24px; }
.info-strip p { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.7; }
.info-strip strong { color: var(--white); }

/* ── MARKET CALLOUT ─────────────────────────────────────────────────── */
.market-callout { background: var(--plum); border-radius: 8px; padding: 44px 40px; }
.market-callout h3 { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.market-callout p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 20px; }
.market-callout p:last-child { margin-bottom: 0; }

/* ── STATS STRIP ────────────────────────────────────────────────────── */
.stats-strip { background: var(--plum); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 44px 28px; text-align: center; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.15); }
.stat-number { font-size: 52px; font-weight: 700; color: var(--coral); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 4px; }
.stat-source { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 400; }

/* ── STEPS ──────────────────────────────────────────────────────────── */
.step { position: relative; }
.step-number { font-size: 48px; font-weight: 700; color: var(--coral); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--plum); margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--dark-gray); line-height: 1.65; }

/* ── PRICING TABLE ──────────────────────────────────────────────────── */
.pricing-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-label--plum { color: var(--plum); }
.pricing-label--coral { color: var(--coral); }
.pricing-title { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 8px; }
.pricing-desc { font-size: 15px; color: var(--dark-gray); line-height: 1.7; margin-bottom: 24px; }
.pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; gap: 16px; }
.pricing-row--border { border-bottom: 1px solid var(--border); }
.pricing-row-label { font-size: 14px; color: var(--dark-gray); line-height: 1.5; flex: 1; }
.pricing-row-value { font-size: 15px; font-weight: 700; color: var(--plum); white-space: nowrap; }
.pricing-note { font-size: 13px; color: #888; line-height: 1.6; margin-top: 20px; font-style: italic; }

/* ── RECOGNITION ITEMS ──────────────────────────────────────────────── */
.recognition-item { display: flex; gap: 18px; align-items: flex-start; }
.recognition-icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px; }
.recognition-item h4 { font-size: 16px; font-weight: 700; color: var(--plum); margin-bottom: 6px; }
.recognition-item p { font-size: 14px; color: var(--dark-gray); line-height: 1.7; }

/* ── CSR SECTION ────────────────────────────────────────────────────── */
.csr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.csr-facts { display: flex; flex-direction: column; gap: 20px; }
.csr-fact { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 20px 24px; border-left: 3px solid var(--magenta); }
.csr-fact p { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.65; }
.csr-fact strong { color: var(--white); }

/* ── GIVING LEVELS ──────────────────────────────────────────────────── */
.level-amount { font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 18px; }
.level-amount--plum { color: var(--plum); }
.level-amount--coral { color: var(--coral); }
.level-amount--magenta { color: var(--magenta); }
.level-impact { font-size: 14px; color: var(--dark-gray); line-height: 1.65; flex: 1; margin-bottom: 24px; }
.level-cta { display: block; width: 100%; padding: 11px; text-align: center; border-radius: 6px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 14px; text-decoration: none; transition: opacity 0.2s; }
.level-cta--outline-plum { border: 2px solid var(--plum); color: var(--plum); background: transparent; }
.level-cta--filled-coral { background: var(--coral); border: 2px solid var(--coral); color: var(--white); }
.level-cta--outline-magenta { border: 2px solid var(--magenta); color: var(--magenta); background: transparent; }
.level-badge { position: absolute; top: -13px; left: 24px; background: var(--coral); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 20px; }

/* ── MAJOR GIFTS ────────────────────────────────────────────────────── */
.major-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.major-title { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.major-desc { font-size: 15px; color: var(--dark-gray); line-height: 1.75; margin-bottom: 28px; flex: 1; }
.major-cta-btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 15px; text-decoration: none; transition: opacity 0.2s; align-self: flex-start; background: transparent; }
.major-cta-btn--plum { border: 2px solid var(--plum); color: var(--plum); }
.major-cta-btn--magenta { border: 2px solid var(--magenta); color: var(--magenta); }

/* ── CTA STRIP VARIANT ──────────────────────────────────────────────── */
.cta-strip--coral { background: var(--coral); }

/* ── CONTACT PAGE ───────────────────────────────────────────────────── */
.top-split { display: grid; grid-template-columns: 2fr 1fr; }
.split-story { background: var(--warm-peach); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-contact { background: var(--plum); padding: 48px 40px; display: flex; flex-direction: column; justify-content: flex-start; }
.split-contact h2 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 28px; line-height: 1.25; }
.contact-info-block { margin-bottom: 16px; }
.contact-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 7px; }
.contact-text { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.8; }
.contact-text a { color: rgba(255,255,255,0.88); text-decoration: none; }
.contact-subtext { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-top: 4px; }
.ein-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; margin-bottom: 16px; line-height: 1.6; }
.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 16px 0; }
.social-row { display: flex; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.social-link { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); text-decoration: none; }

/* ── CONNECT CARDS ──────────────────────────────────────────────────── */
.connect-title { font-size: 18px; font-weight: 700; color: var(--plum); margin-bottom: 12px; line-height: 1.3; }
.connect-desc { font-size: 14px; color: var(--dark-gray); line-height: 1.75; flex: 1; margin-bottom: 24px; }
.connect-btn { display: inline-block; padding: 11px 24px; border-radius: 4px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 14px; text-decoration: none; transition: opacity 0.2s; }
.connect-btn--plum { background: var(--plum); color: var(--white); border: 2px solid var(--plum); }
.connect-btn--coral { background: var(--coral); color: var(--white); border: 2px solid var(--coral); }
.connect-btn--magenta-outline { background: transparent; color: var(--magenta); border: 2px solid var(--magenta); }

/* ── FORM ELEMENTS ──────────────────────────────────────────────────── */
.ml-form { margin-top: auto; }
.ml-input { width: 100%; padding: 10px 14px; border: 2px solid #eeeeee; border-radius: 6px; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--dark-gray); background: var(--white); margin-bottom: 10px; transition: border-color 0.2s; }
.ml-submit { display: block; width: 100%; padding: 11px 24px; border-radius: 4px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; text-align: center; transition: opacity 0.2s; background: var(--plum); color: var(--white); border: 2px solid var(--plum); }

/* ── MVS CARDS ──────────────────────────────────────────────────────── */
.mvs-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.mvs-card p { font-size: 16px; color: var(--dark-gray); line-height: 1.85; }

/* ── NEWSLETTER CARD (homepage) ─────────────────────────────────────── */
.newsletter-card { background-color: var(--white); max-width: 680px; margin: 0 auto; border-radius: 12px; padding: 40px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.newsletter-card h3 { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.newsletter-card p { font-size: 15px; color: var(--dark-gray); margin-bottom: 24px; line-height: 1.6; }
.newsletter-inline-form { display: flex; }
.newsletter-inline-form input[type="email"] { flex: 1; padding: 12px 16px; border: 2px solid var(--plum); border-right: none; border-radius: 6px 0 0 6px; font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--dark-gray); background-color: #f9f9f9; min-width: 200px; }
.newsletter-inline-form input[type="email"]::placeholder { color: #aaa; }
.newsletter-inline-form button { padding: 12px 24px; background-color: var(--plum); color: var(--white); border: 2px solid var(--plum); border-radius: 0 6px 6px 0; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; }
.newsletter-confirm { font-size: 14px; color: var(--plum); font-weight: 600; margin-top: 12px; }

/* ── PULLQUOTE ──────────────────────────────────────────────────────── */
.audience-pullquote { text-align: center; padding: 0 80px 52px; }
.audience-pullquote .quote-mark { font-size: 80px; font-weight: 700; color: var(--magenta); line-height: 0.6; margin-bottom: 16px; display: block; font-family: Georgia, serif; }
.audience-pullquote p { font-size: 22px; font-weight: 700; color: var(--plum); line-height: 1.5; font-style: italic; max-width: 820px; margin: 0 auto; }

/* ── PROBLEM GRID (homepage) ────────────────────────────────────────── */
.problem-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 42% 58%; gap: 60px; align-items: center; }

/* ── CAT CARD DETAILS ───────────────────────────────────────────────── */
.cat-fit-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.cat-brands { font-size: 13px; color: #888; line-height: 1.6; }

/* ── LAYOUT GRIDS (page-specific) ──────────────────────────────────── */
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.recognition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

/* ── TIERS CALLOUT ─────────────────────────────────────────────────── */
.tiers-callout { background: var(--warm-peach); border-radius: 8px; padding: 40px 48px; margin-top: 48px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.tiers-callout h3 { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.tiers-callout p { font-size: 15px; color: var(--dark-gray); line-height: 1.75; }

/* ── UTILITY CLASSES ───────────────────────────────────────────────── */
.mt-48 { margin-top: 48px; }
.text-left { text-align: left; }
.flex-shrink-0 { flex-shrink: 0; }
.text-plum { color: var(--plum); }
a.text-plum { font-weight: 600; text-decoration: underline; }

/* ── INQUIRY FORMS ─────────────────────────────────────────────────── */
.inquiry-form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1080px; margin: 0 auto; align-items: start; }
.inquiry-form-text { padding-top: 8px; }
.inquiry-form { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; color: var(--plum); margin-bottom: 6px; }
.form-field input { width: 100%; padding: 11px 14px; border: 2px solid #e0e0e0; border-radius: 6px; font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--dark-gray); background: #fafafa; transition: border-color 0.2s; box-sizing: border-box; }
.form-field input:focus { outline: none; border-color: var(--plum); background: var(--white); }
.form-optional { font-weight: 400; color: #999; font-size: 13px; }

/* ── RESPONSIVE MEDIA QUERIES ────────────────────────────────────────── */
@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-links { display: none; gap: 0; flex-direction: column; }
    .nav-links.nav-open { display: flex; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .cta-strip { padding: 28px 24px; flex-direction: column; gap: 16px; text-align: center; }
    .section-title { font-size: 28px; }
    .page-hero { padding: 48px 24px 36px; }
    .page-hero h1 { font-size: 28px; }
    .content-wrap { padding: 48px 24px 64px; }
    .page-section { padding: 60px 24px; }
    .page-section--narrow { padding: 60px 20px; }
    .grid-2col, .grid-2col-wide, .grid-2col-lg { grid-template-columns: 1fr; gap: 32px; }
    .grid-3col, .grid-3col-sm, .grid-3col-lg { grid-template-columns: 1fr; }
    .grid-4col, .grid-4col-sm { grid-template-columns: 1fr 1fr; }
    .problem-grid { grid-template-columns: 1fr; gap: 32px; }
    .csr-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-home { padding: 60px 20px; }
    .hero-home-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-partners { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; }
    .hero-give { grid-template-columns: 1fr; margin: 0; border-radius: 0; min-height: auto; }
    .hero-give-image { padding: 40px; }
    .hero-give-content { padding: 60px 24px; }
    .hero-sponsorships { padding: 60px 24px; }
    .hero-heading--md, .hero-heading--lg { font-size: 32px; }
    .hero-heading--xl { font-size: 36px; max-width: none; }
    .hero-image-frame--md { height: 240px; }
    .hero-image-frame--lg { height: 280px; }
    .top-split { grid-template-columns: 1fr; }
    .split-story { padding: 60px 24px; }
    .split-contact { padding: 40px 24px; }
    .callout-plum { padding: 36px 28px; }
    .callout-plum--grid { grid-template-columns: 1fr; gap: 24px; }
    .callout-plum-full { padding: 40px 28px; }
    .callout-peach-grid { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .stat-item + .stat-item { border-left: none; }
    .stat-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); }
    .newsletter-inline-form { flex-direction: column; gap: 8px; }
    .newsletter-inline-form input[type="email"] { border-right: 2px solid var(--plum); border-radius: 6px; }
    .newsletter-inline-form button { border-radius: 6px; }
    .audience-pullquote { padding: 0 20px 40px; }
    .market-callout { padding: 32px 24px; }
    .market-callout h3 { font-size: 24px; }
    .info-strip { flex-direction: column; padding: 24px; }
    .market-grid { grid-template-columns: 1fr; gap: 40px; }
    .persona-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .recognition-grid { grid-template-columns: 1fr; }
    .tiers-callout { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
    .inquiry-form-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .inquiry-form { padding: 28px 24px; }
}
@media (max-width: 480px) {
    footer { padding: 48px 20px 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .footer-bottom { padding-left: 0; padding-right: 0; }
    .page-section { padding: 48px 16px; }
    .grid-4col, .grid-4col-sm { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-item + .stat-item { border-left: none; }
    .stat-item:nth-child(even) { border-left: none; }
    .hero-heading--md, .hero-heading--lg { font-size: 26px; }
    .hero-heading--xl { font-size: 28px; }
    .hero-give-image { display: none; }
}

/* ── THANK YOU PAGE ─────────────────────────────────────────────────── */
.thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 80px 24px;
    text-align: center;
}
.thank-you-content {
    max-width: 520px;
}
.thank-you-content svg {
    margin-bottom: 24px;
}
.thank-you-content .section-title {
    margin-bottom: 16px;
}
.thank-you-content .body-text--lg {
    margin-bottom: 32px;
}
.thank-you-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
