* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
    line-height: 1.6;
}

.top-header {
    background: #111;
    padding: 20px 40px;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.profile-hero {
    background: linear-gradient(to bottom, #111 0%, #222 60%, #f5f5f5 100%);
    padding: 60px 20px 120px;
    text-align: center;
}

.profile-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.profile-card {
    max-width: 900px;
    margin: -80px auto 80px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-label span {
    background: #000;
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    font-size: 14px;
}

.profile-label p {
    letter-spacing: 3px;
    font-size: 14px;
    color: #555;
}

.profile-name {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-title {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.profile-meta {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
}

.meta-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.meta-label {
    font-size: 14px;
    color: #777;
}



.bio-section {
    background: #f0f0f0;
    padding: 80px 20px;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    overflow: hidden;
}

.section-heading {
    font-size: 28px;
    font-weight: 600;
    padding: 30px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.bio-grid {
    width: 100%;
}

.bio-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid #eee;
}

.bio-row:last-child {
    border-bottom: none;
}

.bio-label {
    background: #fafafa;
    padding: 22px 30px;
    font-weight: 600;
    color: #444;
}

.bio-value {
    padding: 22px 30px;
    color: #333;
}

@media (max-width: 768px) {
    .bio-row {
        grid-template-columns: 1fr;
    }

    .bio-label {
        border-bottom: 1px solid #eee;
    }
}


.content-section {
    padding: 80px 20px;
    background: #ffffff;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 17px;
    margin-bottom: 40px;
    color: #333;
}

.accordion-item {
    border-top: 1px solid #e5e5e5;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding-bottom: 25px;
    color: #444;
}

.accordion-content p {
    font-size: 16px;
}

.related-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.related-container {
    max-width: 900px;
    margin: 0 auto;
}

.related-heading {
    font-size: 24px;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    gap: 20px;
}

.related-card {
    display: block;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
}


.related-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.related-thumb {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.related-content p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .related-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-thumb {
        width: 100%;
        height: 180px;
    }
}


.site-footer {
    background: #111;
    color: #ccc;
    padding: 80px 20px 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 500px;
    font-size: 15px;
    color: #aaa;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #777;
}


/* =========================
   PASSPORT SECTION — TIGHT & CONTROLLED
========================= */

.passport-section {
    background: #f7f8fa;
    padding: 40px 0 30px;   /* reduced vertical space */
    text-align: center;
    position: relative;
}

/* remove decorative depth band */
.passport-section::before {
    display: none;
}

.passport-wrapper {
    max-width: 280px;
    margin: -90px auto 40px;  /* controlled lift, no giant gap */
    position: relative;
    z-index: 2;
}

.passport-frame {
    padding: 14px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 8px 25px rgba(0,0,0,0.05);
}

.passport-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(197,164,95,0.35);
    pointer-events: none;
}

.passport-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.profile-card {
    background: #ffffff;
    max-width: 1100px;
    margin: -90px auto 80px;
    padding: 70px 50px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
}

.profile-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    color: #777;
}

.profile-badge {
    background: #000;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
}

.profile-type {
    font-weight: 500;
}

.profile-name {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.profile-title {
    font-size: 21px;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.profile-divider {
    width: 80px;
    height: 2px;
    background: #000;
    margin: 0 auto 45px;
    opacity: 0.2;
}

.profile-meta {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
}

.meta-heading {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.meta-value {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

@media (max-width: 768px) {

    .profile-card {
        padding: 50px 25px;
    }

    .profile-name {
        font-size: 34px;
    }

    .profile-meta {
        gap: 40px;
    }
}


/* =========================
   BIO SECTION — EXECUTIVE
========================= */

.bio-section {
    background: #ffffff;
    padding: 40px 0;
}

.bio-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.bio-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
    color: #0f1f3a; /* deep institutional navy */
}

.section-rule {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0f1f3a, #c5a45f);
    margin: 0 auto;
    border-radius: 3px;
}

/* GRID */

.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #ececec;
}

/* ROWS */

.bio-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 32px 0;
    border-bottom: 1px solid #ececec;
    align-items: start;
    transition: background 0.2s ease;
}

.bio-row:hover {
    background: #fafafa;
}

/* LABEL */

.bio-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a88b4a; /* muted gold accent */
    font-weight: 600;
}

/* VALUE */

.bio-value {
    font-size: 18px;
    line-height: 1.75;
    color: #111;
}

.bio-value.strong {
    font-weight: 600;
    font-size: 22px;
    color: #0f1f3a;
}

/* MOBILE */

@media (max-width: 768px) {

    .bio-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bio-label {
        font-size: 11px;
    }

    .bio-value {
        font-size: 16px;
    }

    .passport-wrapper {
        margin: -100px auto 50px;
        max-width: 230px;
    }

    .section-heading {
        font-size: 30px;
    }
}

/* =========================
   CONTENT SECTION — EDITORIAL REFINED
========================= */

.content-section {
    background: #ffffff;
    padding: 60px 0 80px;   /* tighter top spacing */
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Remove excess spacing from inherited headings */
.content-section .section-heading {
    font-size: 36px;
    margin: 0 0 25px;   /* kill top margin */
    text-align: left;
    color: #0f1f3a;
    letter-spacing: -0.5px;
}

/* subtle divider */
.content-section .section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #0f1f3a, #c5a45f);
    border-radius: 2px;
}

/* Intro paragraph */
.intro-text {
    font-size: 19px;
    line-height: 1.85;
    color: #2b2b2b;
    margin-bottom: 50px;
}

/* =========================
   ACCORDION — PREMIUM CLEAN
========================= */

.accordion {
    border-top: 1px solid #ececec;
}

.accordion-item {
    border-bottom: 1px solid #ececec;
}

/* Button styling */
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #1a2a45;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

/* Hover refinement */
.accordion-header:hover {
    color: #c5a45f;
}

/* plus indicator */
.accordion-header::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    font-weight: 300;
    color: #999;
}

/* Open state */
.accordion-header.active::after {
    content: "−";
    color: #c5a45f;
}

.accordion-content {
    display: none;
    padding-bottom: 28px;
}

.accordion-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .content-section {
        padding: 40px 0 60px;
    }

    .content-container {
        padding: 0 24px;
    }

    .content-section .section-heading {
        font-size: 28px;
    }

    .accordion-header {
        font-size: 18px;
        padding: 22px 0;
    }

    .intro-text {
        font-size: 16px;
    }
}



/* =========================
   RELATED SECTION — PREMIUM EDITORIAL
========================= */

.related-section {
    background: #f7f8fa;
    padding: 90px 0 100px;
}

.related-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Heading */
.related-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f1f3a;
    position: relative;
}

.related-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #0f1f3a, #c5a45f);
    border-radius: 2px;
}

/* Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.related-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Lift on hover */
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* Image wrapper */
.related-thumb {
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* subtle zoom */
.related-card:hover .related-thumb img {
    transform: scale(1.04);
}

/* Content */
.related-content {
    padding: 28px 30px 32px;
}

.related-content h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 14px;
    color: #111;
    font-weight: 600;
    transition: color 0.2s ease;
}

.related-card:hover .related-content h4 {
    color: #0f1f3a;
}

.related-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .related-section {
        padding: 60px 0 70px;
    }

    .related-container {
        padding: 0 24px;
    }

    .related-heading {
        font-size: 26px;
    }

    .related-thumb img {
        height: 200px;
    }

    .related-content h4 {
        font-size: 19px;
    }

    .related-content p {
        font-size: 15px;
    }
}