/* ============================================================
   MOMENTUM IMPACT STUDIO — Shared Stylesheet
   ============================================================ */

/* --- VARIABLES --- */
:root {
    --gradient: linear-gradient(135deg, #E0186E 0%, #F0508A 100%);
    --coral: #E0186E;
    --coral-light: #F0508A;
    --pink: #E0186E;   /* alias kept for backward compat */
    --orange: #F0508A;
    --dark: #ffffff;        /* main section backgrounds */
    --darker: #f5f3f0;      /* alternate section / nav / footer backgrounds */
    --surface: #ffffff;     /* card / credential surfaces */
    --text-light: #1a1917;  /* primary headings + UI text */
    --text-body: #4a4754;   /* body copy */
    --text-muted: #8c8a96;  /* secondary / caption text */
    --border: rgba(0, 0, 0, 0.09);
    --nav-height: 72px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-light);
    background-color: var(--dark);
    line-height: 1.7;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0 0 1rem 0;
    line-height: 1.25;
    color: var(--text-light);
}

p {
    margin: 0 0 1.25rem 0;
    color: var(--text-body);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* --- UTILITY --- */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.container--wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    display: block;
    margin-bottom: 1rem;
}

.hero .eyebrow,
.page-hero .eyebrow,
.about-hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--border);
    margin: 60px 0;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--dark);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    height: var(--nav-height);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.wordmark {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--coral);
    white-space: nowrap;
}

.footer-logo .wordmark {
    font-size: 13px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a.nav-page-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-links a.nav-page-link:hover,
.nav-links a.nav-page-link.active {
    color: var(--text-light);
}

.nav-linkedin {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav-linkedin:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.nav-linkedin svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.btn-nav {
    display: inline-block;
    padding: 9px 22px;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.btn-nav:hover {
    opacity: 0.85;
}

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    color: var(--text-body);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}

/* Mobile nav drawer */
.nav-drawer {
    display: none;
    background-color: var(--darker);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
}

.nav-drawer.open {
    display: block;
}

.nav-drawer a {
    display: block;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.nav-drawer a:last-child {
    border-bottom: none;
}

.nav-drawer a:hover {
    color: var(--coral);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    padding: 13px 32px;
    border: 1.5px solid var(--coral);
    border-radius: 50px;
    color: var(--coral);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    background: transparent;
}

.btn:hover {
    background-color: var(--coral);
    color: white;
}

/* Buttons on gradient/coral backgrounds — invert to white */
.hero .btn,
.page-hero .btn,
.about-hero .btn {
    border-color: white;
    color: white;
}

.hero .btn:hover,
.page-hero .btn:hover,
.about-hero .btn:hover {
    background-color: white;
    color: var(--coral);
}

.btn--gradient {
    background: var(--gradient);
    border: none;
    color: white;
}

.btn--gradient:hover {
    opacity: 0.85;
    background: var(--gradient);
    color: white;
}


/* ============================================================
   GRADIENT TEXT — Headings on rose-gradient backgrounds
   ============================================================ */

.hero h1,
.page-hero h1,
.about-hero h1,
.cta-band h2 {
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   HERO — Homepage
   ============================================================ */

.hero {
    background: var(--gradient);
    padding: 120px 0 100px;
    text-align: center;
}

.hero-logo {
    width: min(640px, 90vw);
    margin: 0 auto 48px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero .hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
}


/* ============================================================
   PAGE HERO — Interior pages
   ============================================================ */

.page-hero {
    background: var(--gradient);
    padding: 80px 0 72px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.page-hero .page-hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 560px;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin: 0;
}


/* ============================================================
   SERVICE CARDS — Homepage
   ============================================================ */

.services-grid {
    padding: 100px 0;
    background-color: var(--dark);
}

.services-grid h2.section-title {
    font-size: 0.7rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background-color: var(--surface);
    border-radius: 12px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    border-color: var(--coral);
    box-shadow: 0 6px 24px rgba(224, 24, 110, 0.1);
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(224, 24, 110, 0.18);
    margin-bottom: 24px;
    font-weight: 400;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    flex: 1;
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.card-items {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.card-item::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-size: 0.75rem;
    top: 2px;
}

.card-item strong {
    color: var(--text-body);
    font-weight: 600;
}

.card .btn {
    align-self: flex-start;
    margin-top: auto;
}


/* ============================================================
   HOW I WORK — Homepage teaser
   ============================================================ */

.how-i-work-teaser {
    background-color: var(--darker);
    padding: 100px 0;
    text-align: center;
}

.how-i-work-teaser h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

.how-i-work-teaser p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    color: var(--text-body);
}


/* ============================================================
   BUILDING BLOCKS — Service pages
   ============================================================ */

.building-blocks {
    background-color: var(--dark);
    padding: 100px 0;
}

.block {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0 48px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.block:first-child {
    border-top: none;
    padding-top: 0;
}

.block-number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(224, 24, 110, 0.15);
    font-weight: 400;
    padding-top: 4px;
    user-select: none;
}

.block-content h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.block-content > .block-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 36px;
    font-style: normal;
    font-family: 'Source Sans Pro', sans-serif;
}

.sub-elements {
    display: grid;
    gap: 32px;
}

.sub-elements--2 {
    grid-template-columns: 1fr 1fr;
}

.sub-elements--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.sub-element h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}

.sub-element .hook {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
    line-height: 1.55;
}

.sub-element p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Single-element block (full width) */
.sub-element--full {
    grid-column: 1 / -1;
}


/* ============================================================
   STAGES — Hiring page
   ============================================================ */

.stages {
    background-color: var(--dark);
    padding: 100px 0;
}

.stage {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0 48px;
    padding: 44px 0;
    border-top: 1px solid var(--border);
    align-items: start;
}

.stage:first-child {
    border-top: none;
    padding-top: 0;
}

.stage-number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(224, 24, 110, 0.15);
    font-weight: 400;
    padding-top: 4px;
    user-select: none;
}

.stage-content h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.stage-content > .stage-body {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.stage-content > .stage-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 36px;
    font-style: normal;
    font-family: 'Source Sans Pro', sans-serif;
}

.stage-detail h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}

.stage-detail .hook {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
    line-height: 1.55;
}

.stage-detail p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Connection section */
.tracks-connect {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}

.tracks-connect h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.tracks-connect p {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 680px;
}

.tracks-connect .start-note {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(224, 24, 110, 0.05);
    border-left: 3px solid var(--pink);
    border-radius: 0 6px 6px 0;
}

.tracks-connect .start-note p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-hero {
    background: var(--gradient);
    padding: 80px 0;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0 56px;
    align-items: center;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.about-hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.about-hero-text p {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    line-height: 1.65;
}

.about-bio {
    background-color: var(--dark);
    padding: 100px 0;
}

.about-bio h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}

.about-bio p {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 680px;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.credential {
    background-color: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 24px;
}

.credential h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
}

.credential p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}


/* ============================================================
   HOW I WORK — Full section (About page)
   ============================================================ */

.how-i-work {
    background-color: var(--darker);
    padding: 100px 0;
}

.how-i-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
}

.how-i-work-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.how-i-work-grid p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.how-i-work > .container > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}


/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.9);
}

.cta-band .btn {
    border-color: white;
    color: white;
}

.cta-band .btn:hover {
    background-color: white;
    color: var(--coral);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background-color: var(--darker);
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-social a.footer-email {
    font-size: 1rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 32px;
    text-align: center;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

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

    /* Nav */
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 72px 0 64px;
    }
    .hero-logo {
        margin-bottom: 32px;
    }
    .hero .hero-sub {
        font-size: 1.05rem;
    }

    /* Page hero */
    .page-hero {
        padding: 56px 0 52px;
    }

    /* Cards */
    .cards {
        grid-template-columns: 1fr;
    }

    /* Building blocks */
    .building-blocks, .stages {
        padding: 64px 0;
    }
    .block, .stage {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 40px 0;
    }
    .block-number, .stage-number {
        font-size: 3rem;
    }
    .sub-elements--2,
    .sub-elements--3 {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-photo {
        margin: 0 auto;
    }

    /* Credentials */
    .credentials {
        grid-template-columns: 1fr;
    }

    /* How I work */
    .how-i-work-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
