:root {
    --wildrosedevs: #DE1B4B;
    --wrd-darkr: #640C23;
    --wrd-red: #FF0040;
    --wrd-black: #0a0a0a;
    --wrd-white: #ffffff;
    --wrd-grey: #e4e4e4;
    --wrd-tile: #d9d9d9;
}

/* === Projects page — force solid red navbar === */
header.navbar {
    background: var(--wildrosedevs) !important;
    /* brand red */
    box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
    /* subtle separation */
}

/* === Projects page — NAVBAR CONTRAST OVERRIDES === */
header.navbar .logo {
    color: #fff !important;
    /* higher contrast than the pink */
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

header.navbar .cta {
    background: #f9f9f9 !important;
    /* make the button pop on red/black */
    color: #111 !important;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

header.navbar .cta:hover,
header.navbar .cta:focus-visible {
    filter: brightness(0.94);
}

header.navbar .hamburger {
    color: #f9f9f9 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

/* --- HERO container --- */
.about-hero {
    background: var(--wildrosedevs);
    color: #fff;
    height: 100vh;
    padding: 140px 48px 64px;
    display: grid;
    align-items: center;
}

/* Content area */
.about-hero__inner {
    width: 925px;
    max-width: calc(100% - 96px);
    justify-self: start;
    transform: translateY(6%);
}

/* H1 */
.about-hero__title {
    font-family: "League Spartan", system-ui, sans-serif;
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    margin: 0 0 16px 0;
}

/* Lede */
.about-hero__lede {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2;
    max-width: 70vw;
    margin: 0 0 18px 0;
}

/* Paragraph */
.about-hero__copy {
    font-family: "Reddit Sans Condensed", system-ui, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    max-width: 56vw;
    margin: 0;
}

/* Responsive guards */
@media (max-width:1200px) {
    .about-hero__inner {
        transform: translateY(4%);
    }
}

@media (max-width:900px) {
    .about-hero {
        height: 560px;
        padding: 120px 24px 48px;
    }

    .about-hero__inner {
        width: 100%;
        transform: translateY(2%);
    }

    .about-hero__title {
        font-size: 72px;
    }

    .about-hero__lede {
        font-size: 28px;
        width: 100%;
    }

    .about-hero__copy {
        font-size: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero__inner {
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-hero__title,
    .about-hero__lede,
    .about-hero__copy {
        max-width: 100% !important;
        text-align: left;
    }
}

@media (max-width:600px) {
    .about-hero {
        height: 520px;
        padding: 96px 20px 44px;
    }

    .about-hero__inner {
        transform: none;
    }

    .about-hero__title {
        font-size: 56px;
    }

    .about-hero__lede {
        font-size: 24px;
    }

    .about-hero__copy {
        font-size: 18px;
    }
}

/* ---------- ABCDs & Working With ---------- */
.abcds,
.working-with {
    background: #000;
    /* darker than previous #0d0d0d */
    color: #fff;
    border: none !important;
    box-shadow: none !important;
}

/* ---------- ABCDs ---------- */
.abcds {
    padding: 112px 24px 72px;
    /* more top/bottom space */
}

.abcds__wrap {
    width: 1024px;
    /* give the content room */
    max-width: calc(100% - 64px);
    margin: 0 auto;
}

/* Big gradient title exactly like figma */
.abcds__title {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 600;
    /* SemiBold */
    font-size: 104px;
    /* slightly larger for impact */
    line-height: 88px;
    text-align: center;
    margin: 0 0 40px;
    background: linear-gradient(180deg, #FFE2E9 0%, var(--wildrosedevs) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 2 columns with generous gutters */
.abcds__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 96px;
    /* more white space between columns */
    row-gap: 56px;
    align-items: start;
}

.abcds__h {
    margin: 0 0 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.abcds__h-letter {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 700;
    font-size: 72px;
    /* bigger initial */
    line-height: 1;
    color: var(--wildrosedevs);
}

.abcds__h-rest {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 700;
    font-size: 56px;
    /* heavier & larger than before */
    line-height: 1;
}

/* Body copy sized up, tight leading like the comp */
.abcds__copy {
    font-family: "Reddit Sans Condensed", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.05;
    /* near 100% per figma */
    margin: 0;
    max-width: 420px;
    /* keep lines short like the design */
}

/* ---------- Working With ---------- */
.working-with {
    padding: 72px 24px 120px;
    /* more bottom space before next section */
}

.working-with__wrap {
    width: 1024px;
    max-width: calc(100% - 64px);
    margin: 0 auto;
    text-align: center;
}

/* Very large, airy headline */
.working-with__title {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 275;
    /* ExtraLight */
    font-size: 112px;
    /* larger than figma to match viewport feel */
    line-height: 1.2;
    margin: 0 0 24px;
}

.working-with__brand {
    font-weight: 275;
}

/* Centered body block ~714px wide */
.working-with__text {
    width: 740px;
    /* slightly wider for balance with larger H2 */
    max-width: 100%;
    margin: 0 auto;
}

.working-with__text p {
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    /* a touch more legible than 1.0 */
    margin: 0 0 18px;
}

/* ---------- Responsive guards ---------- */
@media (max-width: 1100px) {

    .abcds__wrap,
    .working-with__wrap {
        width: 900px;
    }

    .abcds__title {
        font-size: 88px;
        line-height: 76px;
    }

    .abcds__h-letter {
        font-size: 64px;
    }

    .abcds__h-rest {
        font-size: 44px;
    }

    .abcds__copy {
        font-size: 20px;
    }

    .working-with__title {
        font-size: 96px;
        line-height: 82px;
    }

    .working-with__text {
        width: 700px;
    }
}

@media (max-width: 900px) {
    .abcds {
        padding: 88px 24px 60px;
    }

    .abcds__wrap,
    .working-with__wrap {
        width: 100%;
        max-width: 720px;
    }

    .abcds__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 40px;
    }

    .abcds__title {
        font-size: 72px;
        line-height: 64px;
        margin-bottom: 28px;
    }

    .working-with {
        padding: 56px 24px 88px;
    }

    .working-with__title {
        font-size: 72px;
        line-height: 62px;
    }

    .working-with__text {
        width: 100%;
    }
}

@media (max-width: 560px) {

    .abcds__title,
    .working-with__title {
        font-size: 48px;
        line-height: 44px;
    }

    .abcds__h-letter {
        font-size: 48px;
    }

    .abcds__h-rest {
        font-size: 32px;
    }

    .abcds__copy {
        font-size: 18px;
    }
}

/* ---------- The Early Days ---------- */
.early-days {
    background: #000;
    color: #f5f5f5;
    padding: 64px 0 88px;
}

.early-days__wrap {
    width: min(1040px, calc(100% - 48px));
    margin: 0 auto;
}

.early-days__title {
    font-family: "League Spartan", "Poppins", system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: clamp(46px, 6.6vw, 75px);
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 12px 0;
    max-width: 100%;
    color: var(--wrd-red) !important;
    background: none !important;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.early-days__text {
    margin: 18px 0;
}

.early-days__text p {
    font-family: "Poppins", system-ui, sans-serif;
    color: #d9d9d9;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.175;
    margin: 0;
    text-wrap: pretty;
}

/* (keep your existing media rules; included here for context) */
.early-days__media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.early-days__media img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    background: #0ECADF;
}

.early-days__media--bottom {
    margin-top: 18px;
}

/* Responsive guards—scale type but keep the ratios */
@media (max-width:900px) {
    .early-days__wrap {
        width: min(720px, calc(100% - 32px));
    }

    .early-days__text {
        max-width: 100%;
    }

    .early-days__media {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .early-days__text p {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .early-days__text p {
        font-size: 18px;
        line-height: 1.45;
    }
}

@media (max-width:560px) {
    .early-days {
        padding: 48px 0 64px;
    }

    .early-days__wrap {
        width: calc(100% - 24px);
    }

    .early-days__media {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .early-days__media img {
        height: 44vw;
    }
}