        /* ========== Page Hero (smaller than homepage hero) ========== */
        .page-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .page-hero .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .page-hero .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
        }
        .page-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }
        .page-hero-content {
            position: relative;
            z-index: 2;
            padding: 160px 20px 80px;
        }
        .page-hero-title {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.05;
            margin-bottom: 16px;
        }
        .page-hero-title .text-accent {
            color: var(--red);
        }
        .page-hero-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 2vw, 1.35rem);
            color: rgba(255,255,255,0.7);
            font-weight: 400;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        /* --- About Hero --- */
        .about-hero {
            background: var(--bg);
            position: relative;
            min-height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding: 160px 24px 100px;
        }
        .about-hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(200, 16, 46, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(200, 16, 46, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        .about-hero .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        .about-hero .page-hero-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 20px;
        }
        .about-hero .page-hero-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-secondary);
            font-weight: 300;
            letter-spacing: 0.02em;
            max-width: 600px;
            margin: 0 auto;
        }
        .about-hero .section-tag {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red);
            border: 1px solid var(--red);
            padding: 6px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
        }
        @media (max-width: 768px) {
            .about-hero {
                min-height: 50vh;
                padding: 140px 20px 80px;
            }
        }

        /* ========== Bio Section ========== */
        .bio-section {
            padding: 120px 0;
        }
        .bio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .bio-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 3/4;
        }
        .bio-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .bio-image-wrapper:hover img {
            transform: scale(1.05);
        }
        .bio-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            pointer-events: none;
        }
        .bio-image-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--red);
            border-radius: var(--radius-lg);
            z-index: -1;
        }
        .bio-text h2 {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 32px;
            line-height: 1.15;
        }
        .bio-text p {
            font-family: var(--font-sans);
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .bio-text p:last-child {
            margin-bottom: 0;
        }
        .bio-text .bio-highlight {
            color: var(--text);
            font-weight: 600;
        }
        .bio-featured-list {
            list-style: none;
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .bio-featured-list li {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            font-family: var(--font-sans);
            letter-spacing: 0.02em;
        }

        /* ========== Timeline Section ========== */
        .timeline-section {
            padding: 120px 0;
            background: var(--bg-elevated);
        }
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
            padding: 0 20px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            width: 50%;
            padding: 0 40px 60px;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }
        .timeline-dot {
            position: absolute;
            top: 8px;
            width: 16px;
            height: 16px;
            background: var(--red);
            border-radius: 50%;
            border: 3px solid var(--bg-elevated);
            z-index: 2;
        }
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -8px;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -8px;
        }
        .timeline-label {
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--red);
            margin-bottom: 8px;
        }
        .timeline-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
        .timeline-desc {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== Values Section ========== */
        .values-section {
            padding: 120px 0;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        .value-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            text-align: center;
            transition: transform 0.4s, border-color 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        .value-card::before {
            content: '';
            position: absolute;
            top: var(--glow-y, 50%);
            left: var(--glow-x, 50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .value-card:hover::before {
            opacity: 1;
        }
        .value-card:hover {
            border-color: var(--border-hover);
        }
        .value-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(200, 16, 46, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--red);
        }
        .value-icon svg {
            width: 32px;
            height: 32px;
        }
        .value-card h3 {
            font-family: var(--font-sans);
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text);
            margin-bottom: 16px;
        }
        .value-card p {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== Stats Section ========== */
        .about-stats-section {
            padding: 100px 0;
            background: var(--bg-elevated);
        }
        .about-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .about-stat-item {
            text-align: center;
            padding: 40px 20px;
        }
        .about-stat-number {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            color: var(--red);
            line-height: 1;
            margin-bottom: 8px;
        }
        .about-stat-number .stat-suffix {
            font-size: 0.6em;
        }
        .about-stat-label {
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ========== CTA Section ========== */
        .about-cta-section {
            position: relative;
            padding: 160px 20px;
            text-align: center;
            overflow: hidden;
        }
        .about-cta-section .cta-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .about-cta-section .cta-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-cta-section .cta-bg .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%);
        }
        .about-cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-cta-content h2 {
            font-family: var(--font-serif);
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.15;
        }
        .about-cta-content p {
            font-family: var(--font-sans);
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        /* ========== Responsive ========== */
        @media (max-width: 900px) {
            .bio-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .bio-image-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
            .values-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 60px auto 0;
            }
            .about-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                width: 100%;
                left: 0;
                text-align: left;
                padding-left: 50px;
                padding-right: 0;
            }
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 12px;
                right: auto;
            }
        }
        @media (max-width: 600px) {
            .about-stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .about-stat-item {
                padding: 24px 8px;
                min-width: 0;
            }
            .about-stat-number {
                font-size: 2.25rem;
            }
            .page-hero {
                min-height: 50vh;
            }
        }