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

:root {
    --navy: #1B2A4A;
    --navy-light: #253A5E;
    --navy-mid: #2E4268;
    --navy-muted: #3A4F70;
    --gold: #C5991F;
    --gold-light: #D4AB3A;
    --gold-dim: #A07E18;
    --gold-pale: rgba(197, 153, 31, 0.10);
    --gold-border: rgba(197, 153, 31, 0.28);
    --cream: #F4F2ED;
    --cream-dark: #EAE7E0;
    --off-white: #F9F8F6;
    --body: #2C2C2C;
    --subtle: #5C5C5C;
    --rule: rgba(27, 42, 74, 0.10);
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    display: block !important;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--body);
    overflow-x: hidden;
}

#page-banner-container {
    position: unset !important;
    padding-top: 64px;
}

#page-banner {
    position: unset !important;
    background:var(--navy);
}

.btn-primary {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.18s;
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.18s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}


.btn-outline-dark {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--navy);
    border: 1px solid var(--rule);
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.18s;
}

.btn-outline-dark:hover {
    border-color: var(--gold);
}

.btn-outline-light {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.18s;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.suite-pill {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 5px 11px;
}

.suite-pill.entry {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.section {
    padding: 88px 52px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-white {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-navy {
    background: var(--navy);
}

.section-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 800 !important;
    text-transform: uppercase;
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-headline .gold {
    color: var(--gold);
}

.section-headline.light {
    color: var(--white);
}

.section-intro {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.80;
    color: var(--subtle);
    max-width: 600px;
    margin-bottom: 52px;
}

.section-intro.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ── UTILITY ─────────────────────────── */
.eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* Reusable */

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.topic-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.topic-card:hover {
    border-color: rgba(197, 153, 31, 0.3);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
    transform: translateY(-2px);
}

.topic-card:hover::before {
    transform: scaleX(1);
}

.topic-icon {
    width: 34px;
    height: 34px;
    background: var(--gold-pale);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topic-icon svg {
    width: 17px;
    height: 17px;
}

.topic-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.topic-count {
    font-size: 10px;
    font-weight: 500;
    color: var(--subtle);
    margin-top: auto;
}

.topic-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 10px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s;
}

.topic-card:hover .topic-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fu {
    animation: fadeUp 0.65s ease both;
}

.d1 {
    animation-delay: 0.08s;
}

.d2 {
    animation-delay: 0.18s;
}

.d3 {
    animation-delay: 0.30s;
}

.d4 {
    animation-delay: 0.44s;
}

.d5 {
    animation-delay: 0.56s;
}

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

    .btn-primary,
    .btn-outline-light {
        text-align: center;
    }

    .section {
        padding: 52px 20px;
    }
}