﻿        body.page-about {
            --site-page-font: 'Inter', sans-serif;
        }

        /* Cinematic Main Layout */
        main {
            padding: 2vh 8% 15vh;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Full Width Hero Image */
        .hero-wrapper {
            width: 100%;
            height: 43vh;
            min-height: 300px;
            max-height: 360px;
            margin-bottom: 56px;
            overflow: hidden;
            border-radius: 2px;
            position: relative;
        }

        .hero-wrapper::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(18, 16, 14, 0.22) 0%, rgba(18, 16, 14, 0.1) 36%, rgba(18, 16, 14, 0.18) 100%),
                linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0.18) 100%);
            pointer-events: none;
        }

        .hero-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 43%;
            transform: scale(1.16);
            filter: brightness(0.8) contrast(0.94) saturate(0.92) sepia(0.02);
        }

        /* Asymmetric Text Grid with Vertical Line */
        .bio-grid {
            display: grid;
            grid-template-columns: 1fr auto 1.5fr; /* Added middle column for the line */
            gap: 5vw;
            align-items: stretch; /* Ensures the line stretches the full height of the text */
        }

        .bio-title {
            position: sticky;
            top: 40px; 
        }

        .overline {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--text-body);
            margin-bottom: 1.5rem;
            display: block;
            max-width: 14rem;
            line-height: 1.8;
        }

        h1 {
            font-family: 'TT Drugs Trial Regular', sans-serif;
            font-size: 2.64rem;
            font-weight: 400;
            color: var(--text-heading-soft);
            letter-spacing: 0.05em;
            line-height: 1.08;
            max-width: 12rem;
            text-transform: uppercase;
        }

        .bio-intro {
            margin-top: 1.35rem;
            max-width: 17rem;
            font-family: 'Karla Local', sans-serif;
            font-size: 0.98rem;
            line-height: 1.7;
            font-weight: 300;
            color: var(--text-body);
        }

        .bio-intro p + p {
            margin-top: 1rem;
        }

        /* The vertical architectural line */
        .vertical-line {
            width: 1px;
            background: linear-gradient(
                180deg,
                rgba(168, 163, 157, 0),
                rgba(168, 163, 157, 0.22) 14%,
                rgba(168, 163, 157, 0.28) 50%,
                rgba(168, 163, 157, 0.22) 86%,
                rgba(168, 163, 157, 0)
            );
        }

        .bio-content p {
            font-family: 'Karla Local', sans-serif;
            font-weight: 300;
            font-size: 1.05rem;
            color: var(--text-body);
            margin-bottom: 2rem;
            max-width: 600px; 
        }

        .bio-content .money-line {
            font-family: 'Karla Local', sans-serif;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-body);
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0;
            margin-bottom: 2rem;
        }

        .signature {
            margin-top: 4rem;
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: var(--text-heading);
        }

        .signature .name {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-body);
        }

        .signature .title {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            color: var(--text-body);
            text-transform: uppercase;
            letter-spacing: 0.25em;
            display: block;
            margin-top: 10px;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            main { padding-top: 74px; }
            .hero-wrapper { height: 34vh; min-height: 220px; margin-bottom: 40px; }
            .bio-grid { grid-template-columns: 1fr; gap: 34px; }
            .vertical-line { display: none; } /* Hides line on mobile */
            .bio-title { position: static; }
            h1 { font-size: 2rem; max-width: none; }
            .bio-intro {
                max-width: none;
                padding-bottom: 1.65rem;
            }
            .bio-content {
                position: relative;
                display: grid;
                gap: 1.8rem;
                padding-top: 1.6rem;
            }
            .bio-content::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(
                    90deg,
                    rgba(183, 162, 141, 0),
                    rgba(183, 162, 141, 0.22) 12%,
                    rgba(183, 162, 141, 0.22) 88%,
                    rgba(183, 162, 141, 0)
                );
            }
            .bio-content p,
            .bio-content .money-line {
                max-width: 100%;
                margin-bottom: 0;
            }
            .signature {
                margin-top: 2.4rem;
            }
        }
