/* About page — loads AFTER home.css which provides shared base (header, buttons, reveal, address, etc.) */

/* =========================================================
   PAGE HERO (shorter than home hero)
   ========================================================= */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    filter: brightness(.55) contrast(1.02);
    z-index: 0;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.75) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 24px 70px;
    max-width: 900px;
}
.page-hero-title {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.page-hero-title .accent { color: var(--teal); font-style: italic; }
.page-hero-sub {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
}

/* =========================================================
   BIO CARDS
   ========================================================= */
.bios {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 32px 40px;
    display: grid;
    gap: 72px;
}
.bio-card {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.bio-card.reverse { grid-template-columns: 1.25fr 1fr; direction: rtl; }
.bio-card.reverse > * { direction: ltr; }

.bio-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    aspect-ratio: 4/5;
    background: #eee;
}
.bio-img-wrap::before {
    content: "";
    position: absolute;
    top: 18px; left: -18px;
    width: 100%; height: 100%;
    border: 3px solid var(--teal);
    border-radius: 8px;
    z-index: -1;
}
.bio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.bio-card:hover .bio-img { transform: scale(1.06); }

.bio-body h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(32px, 3.6vw, 48px);
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.1;
}
.bio-role {
    display: block;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 4px;
}
.bio-status {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(233,52,52,0.08);
    border: 1px solid rgba(233,52,52,0.35);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.bio-body p {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 14px 0 0;
}

.jake-insta-link {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid var(--teal);
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.jake-insta-link:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 880px) {
    .bios { padding: 60px 24px 20px; gap: 56px; }
    .bio-card,
    .bio-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }
    .bio-img-wrap { max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; }
    .bio-img-wrap::before { display: none; }
    .page-hero { min-height: 44vh; }
    .page-hero-content { padding: 120px 20px 50px; }
}
