@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

body {
    background-color: #f4f7f5; /* Light green tint */
}

/* ══════════════════════════════════════════════════════════════════════════
   BREADCRUMB & HEADER
══════════════════════════════════════════════════════════════════════════ */
.breadcrumb-section {
    padding: 120px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #49594d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: #9b7826;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #d39f3c;
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: #b4c5b9;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROFILE LAYOUT
══════════════════════════════════════════════════════════════════════════ */
.profile-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Sidebar (Image) */
.profile-sidebar {
    flex: 1;
    max-width: 400px;
    position: sticky;
    top: 100px;
}

.profile-image-wrap {
    width: 100%;
    height: 450px; /* Fixed height to prevent stretching */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 44, 23, 0.08);
    border: 1px solid rgba(211, 159, 60, 0.15);
    background-color: #ffffff;
}

.profile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Right Content Area */
.profile-main {
    flex: 2;
    padding-top: 10px;
}

.profile-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #d39f3c;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #0c2c17;
    line-height: 1.1;
    margin-bottom: 10px;
}

.profile-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #9b7826;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(12, 44, 23, 0.1);
}

.profile-bio {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #3b4e41;
    margin-bottom: 50px;
}

.profile-bio p {
    margin-bottom: 20px;
}

/* Information Blocks */
.info-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    margin-bottom: 30px;
    border-left: 3px solid #d39f3c;
}

.info-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0c2c17;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #49594d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #d39f3c;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .profile-container {
        flex-direction: column;
        gap: 40px;
    }
    .profile-sidebar {
        max-width: 100%;
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .profile-image-wrap {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section { padding: 100px 20px 20px; }
    .profile-name { font-size: 2.5rem; }
    .info-section { padding: 30px 20px; }
}