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

body {
    font-family: "Georgia", serif;
    background: #ffffff;
    color: #111;
}

/* ===============================
   HEADER
================================ */

.bio-header {
    background: #000;
    color: #fff;
    padding: 18px 0;
}

.bio-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bio-logo {
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 22px;
}

.bio-nav {
    display: flex;
    gap: 28px;
}

.bio-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.bio-nav a:hover {
    opacity: 1;
}

.bio-search {
    font-size: 18px;
    cursor: pointer;
}

/* ===============================
   CATEGORY LABEL
================================ */

.bio-category {
    background: #f1f1f1;
    text-align: center;
    padding: 20px 0;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: 2px;
}

/* ===============================
   HERO IMAGE
================================ */

.bio-hero-image {
    position: relative;
    overflow: hidden;
}

.bio-hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* subtle depth overlay */
.bio-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0) 70%
    );
}

/* ===============================
   ARTICLE INTRO CARD
================================ */

.bio-article-card {
    background: #f8f8f8;
    margin: -120px auto 120px;
    max-width: 960px;
    padding: 80px 90px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
}

.bio-article-inner {
    text-align: center;
}

.bio-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
}

.bio-subtext {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #333;
}

.bio-meta {
    font-size: 16px;
    color: #444;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.bio-author {
    font-weight: 600;
}

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

@media (max-width: 900px) {

.bio-hero-image img {
    height: 450px;
}

.bio-article-card {
    margin: -60px 20px 60px;
    padding: 40px 30px;
}
    .bio-title {
        font-size: 30px;
    }

    .bio-subtext {
        font-size: 17px;
    }

    .bio-nav {
        display: none;
    }

}


/* ======================================
   NOTABLE NOW – PREMIUM EDITORIAL
====================================== */

.bio-notable {
    background: #f2f2f2;
    padding: 120px 0 140px;
}

.bio-notable-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TITLE — Large, restrained luxury */

.bio-notable-title {
    font-size: 84px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 90px;
    position: relative;
}

/* subtle underline accent */
.bio-notable-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #000;
    display: block;
    margin-top: 25px;
}

/* GRID */

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 60px;
}

/* CARD */

.bio-card {
    text-decoration: none;
    color: #111;
    display: block;
    transition: transform 0.35s ease, opacity 0.3s ease;
}

.bio-card:hover {
    transform: translateY(-6px);
}

/* IMAGE WRAP */

.bio-card-image {
    overflow: hidden;
    margin-bottom: 28px;
    background: #ddd;
}

/* IMAGE */

.bio-card-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bio-card:hover .bio-card-image img {
    transform: scale(1.04);
}

/* TITLE */

.bio-card-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

/* META */

.bio-card-meta {
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

/* ======================================
   MOBILE – Still Premium
====================================== */

@media (max-width: 768px) {

    .bio-notable {
        padding: 80px 0 100px;
    }

    .bio-notable-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .bio-notable-title::after {
        width: 60px;
        height: 3px;
        margin-top: 18px;
    }

    .bio-grid {
        gap: 50px 25px;
    }

    .bio-card-image img {
        height: 240px;
    }

    .bio-card-content h3 {
        font-size: 18px;
    }

    .bio-card-meta {
        font-size: 13px;
    }
}


/* ======================================
   FEATURE BLOCK – ARCHITECTURAL EDITORIAL
====================================== */

.bio-feature {
    position: relative;
    background: #111;
    padding-bottom: 180px;
    overflow: hidden;
}

/* IMAGE — FULL BLEED */

.bio-feature-image {
    position: relative;
}

.bio-feature-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
    filter: contrast(110%) saturate(105%);
}

/* DARK CINEMATIC OVERLAY */

.bio-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.9) 100%
    );
}

/* REMOVE CARD LOOK COMPLETELY */

.bio-feature-card {
    position: relative;
    max-width: 1100px;
    margin: -220px auto 0;
    padding: 0 40px;
    background: transparent;
    box-shadow: none;
}

/* INNER */

.bio-feature-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* CATEGORY STRIPE ABOVE TITLE */

.bio-feature-inner::before {
    content: "FEATURE STORY";
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 25px;
}

/* TITLE — BIG + CONFIDENT */

.bio-feature-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #fff;
}

/* SUBTEXT — ELEGANT + LIGHTER */

.bio-feature-subtext {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 45px;
    color: rgba(255,255,255,0.85);
}

/* AUTHOR */

.bio-feature-author {
    font-size: 16px;
    font-weight: 600;
    color: #c40000;
    letter-spacing: 1px;
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 768px) {

    .bio-feature-image img {
        height: 500px;
    }

    .bio-feature-card {
        margin-top: -160px;
        padding: 0 20px;
    }

    .bio-feature-title {
        font-size: 34px;
    }

    .bio-feature-subtext {
        font-size: 17px;
    }

    .bio-feature-author {
        font-size: 14px;
    }
}

/* =========================
   CATEGORY LIST – INTERACTIVE PREMIUM GRID
========================= */

.bio-category-section.dark {
    background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
    padding: 140px 0;
    position: relative;
}

.bio-category-section.dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c40000, transparent);
}

.bio-category-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.bio-section-title {
    text-align: center;
    font-size: 68px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 100px;
}

/* GRID */

.bio-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

/* CARD */

.bio-list-item {
    position: relative;
    overflow: hidden;
    background: #111;
    transition: transform 0.4s ease;
}

.bio-list-item:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.bio-list-image {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.bio-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bio-list-item:hover .bio-list-image img {
    transform: scale(1.08);
}

/* DARK HOVER OVERLAY */

.bio-list-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bio-list-item:hover .bio-list-image::after {
    opacity: 1;
}

/* CONTENT CENTERED */

.bio-list-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.bio-list-item:hover .bio-list-content {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */

.bio-list-content h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* READ BUTTON */

.bio-read-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #c40000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.bio-read-btn:hover {
    background: #c40000;
    color: #fff;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {
    .bio-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bio-list {
        grid-template-columns: 1fr;
    }

    .bio-list-image {
        height: 300px;
    }

    .bio-section-title {
        font-size: 44px;
    }

    /* Always show content on mobile (no hover) */
    .bio-list-content {
        opacity: 1;
        transform: none;
        background: rgba(0,0,0,0.6);
    }

    .bio-list-image::after {
        display: none;
    }
}

/* =========================
   FOOTER — BIOGRAPHY STYLE
========================= */

.bio-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.bio-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Logo */

.bio-footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.bio-dot {
    color: #c40000;
}

/* Columns */

.bio-footer-links {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.bio-footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bio-footer-column h4 {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #aaa;
}

.bio-footer-column a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.bio-footer-column a:hover {
    opacity: 0.6;
}

/* Social */

.bio-footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 14px;
}

.bio-footer-social a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
}

.bio-footer-social a:hover {
    opacity: 0.6;
}

/* Divider */

.bio-footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    font-size: 13px;
    color: #888;
}

/* MOBILE */

@media (max-width: 768px) {

    .bio-footer-links {
        gap: 50px;
    }

    .bio-footer-logo {
        font-size: 26px;
    }

    .bio-footer-column h4 {
        font-size: 12px;
    }

    .bio-footer-column a {
        font-size: 14px;
    }
}


/* =========================
   PAGE DIVIDER – SUBTLE LUXURY
========================= */

.bio-page-divider {
    width: 100%;
    height: 120px;
    position: relative;
    background: #000;
}

/* Center red accent line */
.bio-page-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #c40000,
        transparent
    );
    opacity: 0.8;
}



/* ===============================
   STICKY HEADER + MORPH
================================ */

.bio-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

/* Header compact state */
.bio-header.scrolled {
    padding: 10px 0;
}

/* Logo animation */
.bio-logo {
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 22px;
    transition: all 0.4s ease;
}

/* Center morph */
.bio-header.scrolled .bio-header-inner {
    justify-content: center;
}

.bio-header.scrolled .bio-nav,
.bio-header.scrolled .bio-search {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.bio-header.scrolled .bio-logo {
    font-size: 18px;
    letter-spacing: 3px;
}


/* ===============================
   FEATURED BIOGRAPHY CARDS – PREMIUM REFINEMENT
================================= */

.bio-notable {
    padding: 140px 0;
    background: #f4f4f4;
    position: relative;
}

.bio-notable-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 90px;
    position: relative;
}

.bio-notable-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #c40000, transparent);
    display: block;
    margin-top: 18px;
}

/* GRID */

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

/* CARD */

.bio-card {
    display: block;
    text-decoration: none;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 18px;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.05);
}

/* Subtle luxury border glow */

.bio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(196,0,0,0.6), transparent 60%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT */

.bio-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.08);
}

.bio-card:hover::before {
    opacity: 1;
}

/* IMAGE */

.bio-card-image {
    width: 100%;
    height: 420px; /* SAME SIZE */
    overflow: hidden;
    position: relative;
}

.bio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

/* Cinematic zoom */

.bio-card:hover .bio-card-image img {
    transform: scale(1.08);
}

/* Gradient overlay for depth */

.bio-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0) 80%
    );
}

/* CONTENT */

.bio-card-content {
    position: absolute;
    bottom: 35px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.bio-card-content h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #fff;
    transition: transform 0.4s ease;
}

/* Elegant lift on hover */

.bio-card:hover .bio-card-content h3 {
    transform: translateY(-5px);
}

/* META */

.bio-card-meta {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

/* ===============================
   RESPONSIVE – STILL 2 COLUMNS
================================= */

@media (max-width: 1024px) {

    .bio-grid {
        grid-template-columns: repeat(2, 1fr); /* KEEP 2 */
        gap: 40px;
    }

    .bio-card-image {
        height: 360px;
    }

    .bio-notable-title {
        font-size: 52px;
        margin-bottom: 70px;
    }
}

@media (max-width: 768px) {

    .bio-grid {
        grid-template-columns: repeat(2, 1fr); /* STILL 2 */
        gap: 24px;
    }

    .bio-card-image {
        height: 240px; /* smaller but proportional */
    }

    .bio-card-content {
        bottom: 18px;
        left: 18px;
        right: 18px;
    }

    .bio-card-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .bio-card-meta {
        font-size: 11px;
        margin-top: 6px;
    }

    .bio-notable-title {
        font-size: 34px;
    }
}