/* public/css/frontend/about.css */

/* ─────────────────────────────────────────
   PAGE HEADER
───────────────────────────────────────── */
.page-header {
    background: var(--slate);
    padding: 11rem 4.5rem 6rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(47,66,89,.6) 0%, transparent 70%);
    z-index: 0;
}
.header-content {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.page-title em { font-style: italic; color: var(--copper3); }

/* ─────────────────────────────────────────
   ABOUT LAYOUT
───────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 6rem;
    padding: 7rem 4.5rem;
    max-width: 1180px;
    margin: 0 auto;
    background: var(--ivory);
    align-items: stretch; /* Keeps the tracks equal height */
}

/* Sidebar (STICKY FIX) */
.about-sidebar {
    position: sticky;
    top: 140px;          /* Adjusted to perfectly clear the navigation bar */
    align-self: start;   /* CRITICAL: Tells it to stop stretching and stick instead! */
}

.profile-img-wrap {
    border: 1px solid rgba(181,114,42,.3);
    box-shadow: 0 8px 32px rgba(26,35,50,.1);
    padding: .5rem;
    background: var(--white);
    margin-bottom: 2.5rem;
}
.profile-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%);
    transition: filter .4s ease;
}
.profile-img-wrap:hover img {
    filter: grayscale(0%);
}

.kicker-small {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.kicker-small::before {
    content: ''; width: 16px; height: 1px; background: var(--copper);
}

/* Credentials List */
.cred-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cred-item {
    font-family: -apple-system, sans-serif;
    font-size: .85rem;
    color: var(--slate);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid rgba(181,114,42,.2);
}
.cred-item strong {
    color: var(--copper2);
    display: block;
    font-weight: 700;
    margin-bottom: .2rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
}

/* Body Content */
.about-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    font-weight: 300;
    margin-bottom: 1.75rem;
}

.about-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--slate);
    margin: 4rem 0 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}
.about-body h2 em {
    font-style: italic;
    color: var(--copper);
}

/* Editorial Drop Cap for the first paragraph */
.about-body > p:first-of-type::first-letter {
    float: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 0.15rem;
    padding-right: 0.6rem;
    color: var(--copper);
    font-weight: 400;
}

.about-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--slate);
    margin: 4rem 0 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}
.about-body h3 em {
    font-style: italic;
    color: var(--copper);
}
.body-ornament {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, var(--copper), transparent);
    margin-bottom: 2.5rem;
}

/* Custom Highlights (Pull Quote Style) */
.highlight-box {
    background: var(--white);
    border: 1px solid var(--ivory3);
    border-left: 3px solid var(--copper);
    padding: 2rem 2.5rem;
    margin: 3.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--slate);
    font-size: 1.5rem;
    line-height: 1.4;
    box-shadow: var(--card-shadow);
}

@media(max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 2.5rem; }
    /* Turn off sticky for mobile layout */
    .about-sidebar { position: relative; top: 0; align-self: auto; display: flex; align-items: flex-start; gap: 3rem; }
    .profile-img-wrap { width: 280px; margin-bottom: 0; flex-shrink: 0; }
    .page-header { padding: 9rem 2.5rem 4rem; }
}
@media(max-width: 700px) {
    .about-sidebar { flex-direction: column; gap: 2.5rem; }
    .profile-img-wrap { width: 100%; max-width: 350px; }
}