/* Advisory Board — dark navy + gold (match reference mockup) */
.ab-page {
    --ab-dark: #050a14;
    --ab-navy: #001428;
    --ab-gold: #c5a059;
    --ab-gold-glow: rgba(197, 160, 89, 0.35);
    position: relative;
    overflow: hidden;
}

/* Side palace backgrounds from reference image */
.ab-bg-left,
.ab-bg-right {
    position: absolute;
    top: 0;
    width: 22%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}

.ab-bg-left {
    left: 0;
    background-position: left 8% center;
}

.ab-bg-right {
    right: 0;
    background-position: right 8% center;
    transform: scaleX(-1);
}

.ab-page > section {
    position: relative;
    z-index: 1;
}

/* ===== HERO ===== */
.ab-hero {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 40, 80, 0.3) 0%, transparent 70%);
}

.ab-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ab-flourish {
    width: clamp(50px, 12vw, 120px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ab-gold), transparent);
    position: relative;
}

.ab-flourish::after {
    content: '❧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    font-size: 0.7rem;
    color: var(--ab-gold);
}

.ab-title-row .ab-flourish:last-child::after {
    transform: translate(-50%, -50%);
}

.ab-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 5vw, 2.75rem);
    color: var(--ab-gold);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.ab-subtitle {
    font-family: var(--serif);
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    color: var(--ab-gold);
    margin-bottom: 1.5rem;
}

.ab-subtitle em { font-style: italic; }

.ab-intro {
    max-width: 720px;
    margin: 0 auto 0.85rem;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

/* Section headings */
.ab-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ab-section-head h2 {
    font-family: var(--serif);
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--ab-gold);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.ab-head-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ab-gold), transparent);
}

.ab-flourish-sm {
    width: 40px;
    height: 1px;
    background: var(--ab-gold);
    position: relative;
}

.ab-flourish-sm::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.4rem;
    color: var(--ab-gold);
}

/* ===== GUIDANCE ===== */
.ab-guidance {
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.ab-guidance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.ab-guidance-item {
    text-align: center;
}

.ab-guidance-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.65rem;
    border: 2px solid var(--ab-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-gold);
    font-size: 1.2rem;
    box-shadow: 0 0 18px var(--ab-gold-glow);
    background: rgba(0, 20, 40, 0.4);
}

.ab-guidance-item span {
    display: block;
    font-size: clamp(0.55rem, 1.4vw, 0.65rem);
    letter-spacing: 0.05em;
    color: var(--ab-gold);
    font-weight: 700;
    line-height: 1.35;
}

/* ===== ADVISORS GRID ===== */
.ab-advisors {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.ab-advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.ab-advisor-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 28, 55, 0.75) 0%, rgba(0, 12, 28, 0.9) 100%);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ab-advisor-card:hover {
    border-color: var(--ab-gold);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
}

.ab-advisor-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    overflow: hidden;
    background: rgba(0, 20, 40, 0.8);
}

.ab-advisor-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.ab-advisor-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-gold);
    font-size: 2rem;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.12) 0%, rgba(0, 20, 40, 0.9) 70%);
}

.ab-advisor-photo-frame {
    position: absolute;
    inset: 0;
    border-bottom: 2px solid var(--ab-gold);
    box-shadow: inset 0 -24px 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.ab-advisor-body {
    padding: 0.75rem 0.65rem 0.85rem;
    text-align: center;
    flex: 1;
}

.ab-advisor-orn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.ab-advisor-orn span {
    width: 28px;
    height: 1px;
    background: var(--ab-gold);
}

.ab-advisor-orn em {
    font-style: normal;
    font-size: 0.4rem;
    color: var(--ab-gold);
}

.ab-advisor-card h3 {
    font-family: var(--serif);
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--ab-gold);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.ab-advisor-role {
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.ab-advisor-divider {
    width: 30px;
    height: 1px;
    background: var(--ab-gold);
    margin: 0 auto 0.45rem;
    opacity: 0.65;
}

.ab-advisor-exp {
    font-size: clamp(0.75rem, 1.3vw, 0.84rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    text-align: left;
    display: block;
}

.ab-announce-inline {
    margin-top: 0.5rem;
}

/* ===== ANNOUNCEMENT ===== */
.ab-announce {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.ab-announce-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 20, 40, 0.45);
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}

.ab-announce-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: 2px solid var(--ab-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-gold);
    font-size: 1.25rem;
}

.ab-announce-text h3 {
    font-family: var(--serif);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--ab-gold);
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.ab-announce-text p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.ab-footer {
    padding: 2rem 0 4.5rem;
    text-align: center;
    position: relative;
}

.ab-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    opacity: 0.75;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70'%3E%3Cpath fill='none' stroke='%23c5a059' stroke-width='1.5' d='M0 70 L40 52 L80 60 L120 44 L160 56 L200 40 L240 52 L280 36 L320 48 L360 32 L400 44 L440 34 L480 50 L520 38 L560 54 L600 42 L640 58 L680 46 L720 62 L760 50 L800 66 L840 54 L880 70 L920 58 L960 70 L1000 58 L1040 70 L1080 58 L1120 70 L1160 58 L1200 68 V70Z'/%3E%3C/svg%3E") center bottom / 100% auto no-repeat;
}

.ab-footer-inner {
    position: relative;
    z-index: 1;
}

.ab-footer-inner p {
    font-family: var(--serif);
    font-size: clamp(0.8rem, 2.5vw, 1.05rem);
    color: var(--ab-gold);
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
    .ab-advisors-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .ab-bg-left,
    .ab-bg-right {
        width: 35%;
        opacity: 0.08;
    }

    .ab-guidance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .ab-advisors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 520px;
    }

    .ab-advisor-photo-wrap {
        min-height: 180px;
    }

    .ab-announce-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ab-guidance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-advisors-grid {
        grid-template-columns: 1fr;
        max-width: 260px;
    }

    .ab-title-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ab-flourish { width: 80px; }
}
