/* =============================================
   KMK MAKUBURI — SITE CSS
   Colors: #FFBC0C (gold) | #A4A4A4 (muted) | #2F2F2F (dark)
   ============================================= */

:root {
    --primary: #FFBC0C;
    --primary-dk: #d49a00;
    --dark: #2F2F2F;
    --dark-2: #1a1a1a;
    --muted: #A4A4A4;
    --light: #f5f5f5;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #e0e0e0;
    --text: #2F2F2F;
    --text-light: #A4A4A4;
    --radius: 14px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s, color .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-dk);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-sm {
    padding: 7px 16px !important;
    font-size: 13px !important;
}

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--light);
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-inner p {
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.topbar-inner a {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: opacity .2s;
}

.topbar-inner a:hover {
    opacity: .7;
}

.brand-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--dark);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .22);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 15px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    white-space: nowrap;
}

.brand-text span {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

/* Nav links */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    list-style: none;
}

.main-nav ul a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    border-radius: 8px;
    white-space: nowrap;
    transition: color .2s, background .2s;
    text-decoration: none;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    color: var(--primary);
    background: rgba(255, 188, 12, .08);
}

/* CTA button in nav */
.nav-cta {
    flex-shrink: 0;
    font-size: 14px !important;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 0 60px;
}

.pagination-info {
    font-size: 13px;
    color: var(--muted);
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    background: #f0f0f0;
    text-decoration: none;
    transition: background .2s, color .2s;
    border: 2px solid transparent;
}

.page-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.page-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    cursor: default;
}

.page-btn.disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark-2);
    color: var(--muted);
    padding: 60px 0 0;
}

.footer-managed {
    font-size: 12px;
    color: rgba(164, 164, 164, .45);
    margin: 0;
}

.footer-managed a {
    color: var(--primary);
    text-decoration: none;
}

.footer-managed a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

.footer-managed {
    font-size: 12px;
    color: rgba(164, 164, 164, .45);
    margin: 0;
}

.footer-managed a {
    color: var(--primary);
    text-decoration: none;
}

.footer-managed a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-grid>div h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-grid>div h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-grid>div p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-grid>div p a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-grid>div p a:hover {
    color: var(--primary);
}

.footer-grid>div ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid>div ul li {
    list-style: none;
}

.footer-grid>div ul a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-grid>div ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(164, 164, 164, .12);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(164, 164, 164, .55);
    margin: 0;
}

/* =============================================
   RESPONSIVE — HEADER & FOOTER
   ============================================= */
@media (max-width: 1024px) {
    .brand-text strong {
        font-size: 13px;
    }

    .main-nav ul a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .navbar {
        flex-wrap: wrap;
        min-height: 64px;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
        padding-bottom: 12px;
    }

    .main-nav ul a {
        width: 100%;
        padding: 12px 14px;
        justify-content: flex-start;
    }

    .nav-cta {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: relative;
    min-height: 92vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-content {
    max-width: 700px;
    padding: 60px 24px;
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(255, 188, 12, .12);
    padding: 5px 14px;
    border-radius: 999px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .80);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

/* =============================================
   SECTION LABELS & HEADINGS
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--primary);
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
    padding: 80px 0;
    background: var(--light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-grid h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--dark);
    margin: 12px 0 18px;
    line-height: 1.2;
}

.intro-grid p {
    color: var(--muted);
    font-size: 16px;
}

.intro-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mini-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 4px solid var(--primary);
}

.mini-card strong {
    font-size: 15px;
    color: var(--dark);
    font-weight: 800;
}

.mini-card span {
    font-size: 13px;
    color: var(--muted);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cards-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: transform .22s, box-shadow .22s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

/* =============================================
   STORIES SECTION
   ============================================= */
.stories-section {
    padding: 80px 0;
    background: var(--light);
}

.story-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.story-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.story-card p {
    color: var(--muted);
    font-size: 15px;
}

/* =============================================
   WORKS SECTION
   ============================================= */
.soft-section {
    padding: 80px 0;
    background: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.work-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .22s;
}

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

.work-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.work-card p {
    color: var(--muted);
    font-size: 15px;
    flex: 1;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 188, 12, .15);
    color: var(--primary-dk);
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
}

/* =============================================
   NEWS / EVENTS SECTION
   ============================================= */
.news-section {
    padding: 80px 0;
    background: var(--dark);
}

.news-section .section-heading h2 {
    color: var(--white);
}

.news-section .section-heading p {
    color: var(--muted);
}

.news-card {
    background: #3a3a3a;
    border-radius: var(--radius);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 4px solid var(--primary);
    transition: transform .22s;
}

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

.news-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.news-card p {
    color: var(--muted);
    font-size: 15px;
    flex: 1;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: var(--light);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--dark);
    margin: 10px 0 14px;
}

.cta-box p {
    color: rgba(47, 47, 47, .75);
    font-size: 16px;
}

.cta-box .section-label {
    color: var(--dark);
    opacity: .6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 200px;
}

.cta-section .btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-section .btn-primary:hover {
    background: var(--dark-2);
    border-color: var(--dark-2);
}

.cta-section .btn-outline {
    border-color: var(--dark);
    color: var(--dark);
}

.cta-section .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* FOOTER */

/* =============================================
   INNER PAGES
   ============================================= */
.page-banner {
    background: var(--dark);
    padding: 80px 0 60px;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
}

.page-banner p {
    color: var(--muted);
    font-size: 18px;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

/* About pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pillar-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-left: 5px solid var(--primary);
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--muted);
    font-size: 15px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.value-badge {
    background: var(--primary);
    color: var(--dark);
    font-weight: 800;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
}

/* Team cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .22s;
}

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

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.team-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-card .role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--muted);
    font-size: 14px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-item a {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    transition: color .2s;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--light);
    border-radius: var(--radius);
    font-weight: 700;
    color: var(--dark);
    transition: background .2s, color .2s;
    border-left: 4px solid var(--primary);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-link {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--light);
    color: var(--dark);
    font-weight: 700;
    border: 1px solid var(--border);
    transition: background .2s, color .2s;
}

.pagination .page-link:hover,
.pagination .active .page-link {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: row;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px 24px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-slider {
        min-height: 80vh;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .intro-boxes {
        grid-template-columns: 1fr;
    }
}

.content-section {
    padding: 88px 0;
}

.soft-section {
    background: var(--light);
    padding: 88px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    align-items: start;
}

.highlight-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.highlight-panel h3 {
    color: var(--navy);
    margin-bottom: 14px;
    font-size: 24px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.value-chip {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.leader-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: left;
}

.leader-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--gold));
}

.leader-card h3 {
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 24px;
}

.leader-role {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
}

.leader-card p {
    color: var(--muted);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.work-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 24px;
}

.work-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.contact-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 18px;
}

.contact-card span {
    color: var(--muted);
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.social-list a {
    color: var(--navy);
    font-weight: 700;
}

.social-list a:hover {
    color: var(--primary);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

@media (max-width: 1024px) {

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .leader-grid,
    .works-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ALBUM DETAIL PAGE
   ============================================= */
.album-detail {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: flex-start;
}

.album-cover img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.album-songs h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background: var(--primary);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
}

.badge-muted {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
}

.badge-primary {
    background: rgba(255, 188, 12, .15);
    color: var(--primary-dk);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Songs list */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow .2s, background .2s;
}

.song-item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.song-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
    min-width: 24px;
    text-align: center;
}

.song-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.song-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-info p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-action {
    flex-shrink: 0;
}

.btn-sm {
    padding: 7px 14px !important;
    font-size: 13px !important;
}

/* Card meta row */
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.card-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .album-detail {
        grid-template-columns: 1fr;
    }

    .album-cover img {
        max-height: 280px;
        object-fit: cover;
    }
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.team-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    padding: 18px 18px 22px;
    text-align: center;
}

.team-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.team-role {
    margin: 0;
    color: var(--primary-dk);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Back link */
.back-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    transition: opacity .2s;
}

.back-link:hover {
    opacity: .75;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 16px;
}

/* Cards grid (if not already defined) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.card:hover .card-img img {
    transform: scale(1.04);
}

.card-body {
    padding: 20px;
    margin-top: auto;
    align-self: flex-start;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.card-text {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}