@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   KB WP — Design tokens
   ============================================================ */
:root {
    --primary: #d4af37;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --bg-dark: #070707;
    --bg-card: #121212;
    --bg-elevated: #1a1a1a;
    --text-main: #fcfcfc;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 1200px;
}

/* ============================================================
   Reset / base
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    line-height: 1.15;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* ============================================================
   Buttons & badges
   ============================================================ */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    padding: 1.1rem 3rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.9rem 2.4rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
}

.btn-ghost:hover {
    background: var(--primary);
    color: #000;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary);
}

/* ============================================================
   Section base
   ============================================================ */
.section {
    padding: clamp(5rem, 12vw, 10rem) 0;
}

.bg-alt {
    background-color: var(--bg-card);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-top: 1.1rem;
    border-radius: 2px;
}

.text-center .section-title::after,
.section-header.text-center .section-title::after { margin-left: auto; margin-right: auto; }

.section-header {
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.nav-container.scrolled {
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    padding-top: 14px;
    box-sizing: border-box;
    gap: 1.5rem;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }

.nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a.current-menu-item > a,
.nav-links a.current_page_item > a { color: var(--primary); }

.brand-logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(1rem, 4vw, 1.25rem);
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-logo img { height: 38px; width: auto; }

.logo-first { color: var(--text-main); }
.logo-last { color: var(--primary); margin-left: 5px; }

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--primary);
}

.nav-links a:hover::after { width: 100%; }

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(500px 280px at 50% 115%, rgba(212, 175, 55, 0.14), transparent 65%),
        linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu-brand {
    position: absolute;
    top: 30px;
    left: 28px;
    text-decoration: none;
}

.mobile-menu-brand::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 34px;
    height: 2px;
    background: var(--primary);
    opacity: 0.7;
}

.mobile-menu-nav a {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--serif);
    position: relative;
    display: inline-block;
    padding: 0.35rem 0.5rem;
    transition: color var(--transition);
}

.mobile-menu-nav a:hover { color: var(--primary); }

.mobile-menu-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.mobile-menu-nav a:hover::after { width: 70%; }

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: #000;
}

.mobile-menu-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    max-width: 90vw;
}

.mobile-menu-social { margin-top: 0.5rem; }
.mobile-menu-social .social-icons a {
    width: 38px;
    height: 38px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.25) 0%, #070707 92%), rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 900px;
    margin-top: 80px;
}

.hero-pretitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 12vw, 6.5rem);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.75;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   Biography
   ============================================================ */
.bio-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--primary);
    z-index: -1;
}

.bio-text .lead {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #fff;
}

.bio-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.bio-stat {
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
}
.bio-stat:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 15px 35px rgba(212,175,55,0.12); }
.bio-stat .num { display: block; font-family: var(--serif); font-size: 3rem; color: var(--primary); line-height: 1; margin-bottom: 0.8rem; }
.bio-stat .lbl { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; }

.achievements {
    list-style: none;
    display: grid;
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.achievements li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.achievements li::before {
    content: '✓';
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================================
   Events
   ============================================================ */
.event-list-group { margin-bottom: 2.75rem; }
.event-list-group h3 {
    font-family: var(--serif);
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.event-row {
    display: grid;
    grid-template-columns: 92px 180px 1fr;
    gap: 1.4rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.event-row:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.event-date-block {
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 1rem;
    line-height: 1;
}
.event-date-block .day {
    display: block;
    font-family: var(--serif);
    font-size: 2.1rem;
    color: var(--text-main);
}
.event-date-block .mon {
    display: block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}
.event-date-block .yr {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 0.2rem;
}

.event-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
}
.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-row:hover .event-thumb img { transform: scale(1.05); }

.event-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.event-badge {
    align-self: flex-start;
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    margin-bottom: 0.55rem;
}
.event-info h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 0 0 0.45rem;
}
.event-info h3 a { color: var(--text-main); text-decoration: none; }
.event-info h3 a:hover { color: var(--primary); }
.event-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 0.85rem;
}
.event-btn {
    align-self: flex-start;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 3px;
}
.event-btn:hover {
    color: #fff;
    border-bottom-color: #fff;
    padding-left: 5px;
}

@media (max-width: 720px) {
    .event-row {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }
    .event-thumb { display: none; }
    .event-date-block { border-right: none; padding-right: 0; }
}

/* ============================================================
   Discography
   ============================================================ */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.album-card {
    text-align: center;
    transition: var(--transition);
    color: inherit;
    display: block;
}

.album-art {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.album-hover {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-hover { opacity: 1; }
.album-card:hover img { transform: scale(1.1); }

.play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.play-btn:hover { transform: scale(1.15); }

.album-card h3 {
    font-family: var(--serif);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.album-card:hover h3 { color: var(--primary); }

.album-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.grid-actions { text-align: center; margin-top: 4rem; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.6rem 1.6rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,175,55,0.45), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item::before {
    content: attr(data-caption);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem;
    color: #fff;
    font-family: var(--serif);
    font-size: 1.15rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.gallery-item:hover::before { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 2rem;
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox img { max-width: 90%; max-height: 80vh; }

.lightbox-caption { color: var(--primary); font-family: var(--serif); font-size: 1.2rem; }

.lightbox-details { color: #aaa; font-size: 0.9rem; margin-top: 0.5rem; max-width: 600px; line-height: 1.6; }

.lb-detail-row {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}
.lb-detail-row i {
    width: 18px;
    text-align: center;
    margin-right: 6px;
}
.lb-detail-text {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.6rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.6rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* ============================================================
   Watch / Video
   ============================================================ */
.video-main {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.video-aspect-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.video-aspect-ratio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.5s ease;
}

.video-aspect-ratio:hover img { filter: brightness(0.7); }

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 1rem;
    text-align: center;
}

.play-icon {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 24px solid #000;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.play-overlay:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--primary-glow);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card .video-aspect-ratio { margin-bottom: 1.2rem; }
.video-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.4rem; }
.video-card span { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ============================================================
   Blog
   ============================================================ */
.blog-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.blog-filters .filter-btn {
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}
.blog-filters .filter-btn.active, .blog-filters .filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.blog-card:hover { transform: translateY(-6px); border-color: var(--primary); }

.blog-thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }

.blog-body { padding: 1.8rem; }
.blog-cat {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 0.2rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.blog-meta { color: var(--primary); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.blog-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.8rem; }
.blog-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   Fan Zone
   ============================================================ */
.fan-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fan-form {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fan-form input,
.fan-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 1.4rem;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
}

.fan-form input:focus,
.fan-form textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
}

.fan-form textarea { height: 160px; resize: vertical; }

.kbwp-feedback {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.kbwp-feedback-success { background: rgba(212,175,55,0.15); border: 1px solid var(--primary); color: var(--primary); }
.kbwp-feedback-error { background: rgba(200,50,50,0.15); border: 1px solid #c83232; color: #ff8a8a; }

.testimonials {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-left: 3px solid var(--primary);
}

.testimonial p { font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; }
.testimonial .author { color: var(--primary); font-family: var(--serif); font-weight: 700; }
.testimonial .role { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   News
   ============================================================ */
.news-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.news-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.8rem 2rem;
    transition: var(--transition);
}

.news-row:hover { border-color: var(--primary); transform: translateX(8px); }

.news-source {
    flex-shrink: 0;
    width: 120px;
    font-family: var(--serif);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.news-info { flex: 1; }
.news-info h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--text-main); }
.news-info .date { color: var(--text-muted); font-size: 0.8rem; }

.news-row .btn-ghost { flex-shrink: 0; padding: 0.7rem 1.6rem; }

/* ============================================================
   Social band
   ============================================================ */
.social-band {
    text-align: center;
    padding: clamp(4rem, 10vw, 7rem) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-band .social-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-stat .count { font-family: var(--serif); font-size: 2rem; color: var(--primary); }
.social-stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }

/* ============================================================
   Footer
   ============================================================ */
.main-footer {
    padding: 6rem 0 2rem;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
}

.footer-brand h3 {
    color: var(--primary);
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p { color: var(--text-muted); }

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-social { display: flex; gap: 1rem; justify-content: center; }
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    transition: var(--transition);
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-copyright { font-size: 0.85rem; color: var(--text-muted); }
.footer-credit a { color: var(--primary); }
.footer-credit a:hover { text-decoration: underline; }

/* ============================================================
   Page / Archive / Single
   ============================================================ */
.page-hero {
    padding: 12rem 0 4rem;
    text-align: center;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--primary);
}

.page-hero p { color: var(--text-muted); max-width: 700px; margin: 1.5rem auto 0; }

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

.taxonomy-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.taxonomy-filter a {
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.taxonomy-filter a.active, .taxonomy-filter a:hover { border-color: var(--primary); color: var(--primary); }

/* Album hero */
.album-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}
.album-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.85) 60%, var(--bg-dark) 100%);
}
.album-hero-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(7,7,7,0.45);
}
.album-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: end;
}
.album-hero-cover { box-shadow: 0 30px 60px rgba(0,0,0,0.6); border-radius: 6px; overflow: hidden; }
.album-hero-cover img { width: 100%; display: block; }
.album-hero-info { padding-bottom: 1rem; }
.album-hero-kicker { color: var(--primary); letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }
.album-hero-info h1 { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--text-main); margin: 0.8rem 0 1rem; line-height: 1.05; }
.album-hero-info .meta { color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.album-hero-desc { color: var(--text-muted); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.album-hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.album-hero .kbwp-song-play { font-size: 0.85rem; }

/* Album detail */
.album-detail { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.album-detail .cover { box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.album-info h1 { font-family: var(--serif); font-size: 2.8rem; color: var(--text-main); margin-bottom: 1rem; }
.album-info .meta { color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2rem; }

.tracklist { margin-top: 2rem; }
.track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.track:hover { border-color: var(--primary); padding-left: 0.8rem; }
.track .num { color: var(--primary); font-family: var(--serif); font-size: 1.3rem; width: 40px; }
.track .title { flex: 1; font-weight: 600; }
.track .dur { color: var(--text-muted); font-size: 0.9rem; }

.lyrics-box {
    margin-top: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    white-space: pre-wrap;
    font-family: var(--serif);
    line-height: 1.9;
    color: var(--text-muted);
}

/* Timeline (biography) */
.timeline { position: relative; max-width: 800px; margin: 3rem auto 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 3rem; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}
.timeline-item .year { color: var(--primary); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }
.timeline-item h3 { font-family: var(--serif); font-size: 1.3rem; margin: 0.4rem 0; }
.timeline-item p { color: var(--text-muted); }

.timeline-summary { color: var(--text-muted); font-style: italic; margin: 0.3rem 0 0.9rem; }
.timeline-media { margin-top: 1rem; display: inline-block; }
.timeline-media img { border-radius: 8px; max-width: 240px; height: auto; border: 1px solid var(--border); }
.timeline-item.has-media h3,
.timeline-item.has-media .timeline-summary { margin-bottom: 0.5rem; }
.timeline-item h3 a { color: var(--text-main); transition: var(--transition); }
.timeline-item h3 a:hover { color: var(--primary); }
.timeline-more { display: inline-block; margin-top: 1rem; padding: 0.6rem 1.4rem; font-size: 0.72rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }

/* Event banner hero */
.event-banner {
	position: relative;
	min-height: 54vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 9rem 0 3.5rem;
}
.event-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, rgba(7, 7, 7, 0.88) 100%);
}
.event-banner-inner { position: relative; z-index: 1; }
.event-banner h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); margin: 0.6rem 0; }
.event-banner .meta { color: var(--text-muted); }
.event-banner .text-muted { color: var(--text-muted); margin: 0.4rem 0 0; }
.contact-info h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1rem; }
.contact-info a { color: var(--text-main); border-bottom: 1px solid var(--primary); }

.booking-box { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; margin-top: 2rem; }

/* Single post */
.post-single { max-width: 800px; margin: 0 auto; }
.post-single .entry-title { font-family: var(--serif); font-size: 2.6rem; color: var(--text-main); margin: 1.5rem 0; }
.post-single .entry-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.post-single .entry-content h2, .post-single .entry-content h3 { color: var(--primary); margin: 2rem 0 1rem; }
.post-meta { color: var(--primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; }

.share-row { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.share-row a {
    border: 1px solid var(--border);
    padding: 0.6rem 1.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: var(--transition);
}
.share-row a:hover { border-color: var(--primary); color: var(--primary); }

/* Comments */
.comments-area { max-width: 800px; margin: 4rem auto 0; }
.comment-form input, .comment-form textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    width: 100%;
    margin-bottom: 1rem;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--primary); }
.comment { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.comment-author { color: var(--primary); font-weight: 700; }

/* Pagination */
.kbwp-pagination {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
}
.kbwp-pagination a, .kbwp-pagination span {
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    color: var(--text-muted);
}
.kbwp-pagination a:hover, .kbwp-pagination .current { border-color: var(--primary); color: var(--primary); }

/* Calendar (events) */
.event-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 4rem; }
.cal-cell {
    aspect-ratio: 1/1;
    border: 1px solid var(--border);
    padding: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    min-height: 70px;
}
.cal-cell.head { color: var(--primary); text-transform: uppercase; font-size: 0.65rem; letter-align: center; align-self: center; }
.cal-cell.has-event { border-color: var(--primary); cursor: pointer; }
.cal-cell .cal-day { font-weight: 700; color: var(--text-main); }
.cal-cell .cal-event { color: var(--primary); font-size: 0.65rem; margin-top: 4px; display: block; line-height: 1.2; }

.event-list-group { margin-bottom: 3rem; }
.event-list-group h3 { font-family: var(--serif); color: var(--primary); font-size: 1.4rem; margin-bottom: 1.5rem; }

/* 404 / search */
.empty-state { text-align: center; padding: 4rem 0; }
.empty-state p { color: var(--text-muted); margin-bottom: 2rem; }

/* ============================================================
   Spotify music player (legacy helper, kept for safety)
   ============================================================ */
.spotify-embed {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   Song player (audio + YouTube)
   ============================================================ */
.kbwp-audio {
    width: 100%;
    margin-top: 1rem;
    accent-color: var(--primary);
    border-radius: 6px;
}

.track-play {
    color: var(--primary);
    font-size: 0.8rem;
    margin-left: 0.6rem;
    opacity: 0;
    transition: var(--transition);
}

.track:hover .track-play { opacity: 1; }

.track-play-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    padding: 0;
    width: 24px;
    text-align: center;
}
.track:hover .track-play-btn,
.track.playing .track-play-btn { opacity: 1; }
.track.playing .num { color: #fff; }
.track.playing .title { color: var(--primary); }
.track.playing {
    border-left: 3px solid var(--primary);
    padding-left: 1.2rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), transparent 70%);
}

.album-cover-wrap { position: relative; }
.album-cover-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}
.album-cover-wrap:hover .album-cover-play { opacity: 1; }
.album-cover-play span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.kbwp-song-play {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0.9rem 1.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}
.kbwp-song-play:hover { box-shadow: 0 0 30px var(--primary-glow); }

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.song-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.song-card:hover { border-color: var(--primary); transform: translateY(-6px); }
.song-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.song-card .dur { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   KB WP custom "Now Playing" bar
   ============================================================ */
.kbwp-now-playing {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1600;
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid var(--primary);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.kbwp-now-playing.open { transform: translateY(0); }

.kbwp-np-inner {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(260px, 2.2fr) auto auto;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
}
.kbwp-np-track { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.kbwp-np-cover { width: 54px; height: 54px; object-fit: cover; border-radius: 6px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5); flex-shrink: 0; }
.kbwp-np-meta { display: flex; flex-direction: column; min-width: 0; }
.kbwp-np-title { font-family: var(--serif); font-size: 1.05rem; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kbwp-np-album { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.kbwp-np-controls { display: flex; align-items: center; gap: 1rem; }
.kbwp-np-controls button { background: none; border: none; color: var(--text-main); cursor: pointer; font-size: 1.1rem; transition: var(--transition); line-height: 1; }
.kbwp-np-controls button:hover { color: var(--primary); }
.kbwp-np-play { font-size: 1.5rem !important; color: var(--primary) !important; }
.kbwp-np-progress { position: relative; flex: 1; height: 5px; background: rgba(255, 255, 255, 0.12); border-radius: 3px; cursor: pointer; min-width: 80px; }
.kbwp-np-bar { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--primary); border-radius: 3px; }
.kbwp-np-time { font-size: 0.75rem; color: var(--text-muted); font-variant-numeric: tabular-nums; min-width: 44px; text-align: right; }

.kbwp-np-volume { display: flex; align-items: center; gap: 0.6rem; }
.kbwp-np-volume input[type="range"] { width: 90px; accent-color: var(--primary); cursor: pointer; }
.kbwp-np-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.kbwp-np-close:hover { color: var(--primary); }

.kbwp-np-msg { color: var(--text-muted); font-size: 0.8rem; padding: 0 1.5rem 0.9rem; }
.kbwp-np-yt { display: none; }
.kbwp-np-yt iframe { display: block; width: 100%; max-width: 720px; height: 220px; margin: 0 auto; border: 0; }
.kbwp-np-spotify { display: none; }
.kbwp-np-spotify iframe { display: block; width: 100%; max-width: 720px; height: 352px; margin: 0 auto; border: 0; }
.kbwp-np-audio { display: none; }

@media (max-width: 760px) {
    .kbwp-np-inner { grid-template-columns: 1fr auto; gap: 0.8rem; }
    .kbwp-np-volume { display: none; }
    .kbwp-np-controls { grid-column: 1 / -1; order: 3; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-toggle { display: none; }
    .section-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
    .input-group { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; align-items: center; }
    .footer-links { justify-content: center; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    .hero-actions { flex-direction: row; gap: 4rem; justify-content: center; }
    .masonry { column-count: 3; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .album-detail { grid-template-columns: 380px 1fr; }
    .album-hero { padding-top: 9rem; }
    .album-hero-inner { grid-template-columns: 320px 1fr; gap: 4rem; }
}

@media (max-width: 900px) {
    .masonry { column-count: 2; }
    .news-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .news-source { width: auto; }
}

@media (max-width: 600px) {
    .masonry { column-count: 1; }
    .event-calendar { grid-template-columns: repeat(7, 1fr); gap: 3px; }
    .cal-cell { min-height: 50px; font-size: 0.7rem; }
}

@media (min-width: 1024px) {
    .bio-text { padding-left: 3rem; }
}

/* ============================================================
   KB WP — Slider Revolution (kbwp-hero) layer text styling
   SR6 ignores plain-string idle.color in this build, so colors
   are enforced here. Positions are left to SR6's own JS.
   ============================================================ */
#rev_slider_1_1 rs-layer { font-family: 'Plus Jakarta Sans', sans-serif; }
#rev_slider_1_1 rs-layer[id$="layer-1"] {
    color: #d4af37 !important;
    font-size: 18px !important; font-weight: 600 !important;
    letter-spacing: 4px !important; text-align: left !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
#rev_slider_1_1 rs-layer[id$="layer-2"] {
    color: #fcfcfc !important;
    font-size: 72px !important; font-weight: 700 !important; line-height: 1.15 !important;
    letter-spacing: 1px !important; text-align: left !important;
    font-family: 'Playfair Display', serif !important;
}
#rev_slider_1_1 rs-layer[id$="layer-3"] {
    color: #cfcfcf !important;
    font-size: 18px !important; font-weight: 400 !important; line-height: 1.55 !important;
    text-align: left !important; max-width: 760px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
#rev_slider_1_1 rs-layer[id$="layer-4"] {
    color: #070707 !important;
    background-color: #d4af37 !important;
    font-size: 15px !important; font-weight: 700 !important; line-height: 54px !important;
    letter-spacing: 2px !important; text-transform: uppercase !important;
    display: inline-block !important; padding: 0 28px !important; border-radius: 4px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
@media (max-width: 768px) {
    #rev_slider_1_1 rs-layer[id$="layer-2"] { font-size: 40px !important; }
    #rev_slider_1_1 rs-layer[id$="layer-3"] { font-size: 15px !important; max-width: 90% !important; }
}

/* Homepage "Upcoming Events" cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.event-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}
.event-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-card:hover .event-media img { transform: scale(1.05); }
.event-body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-card .event-date {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.event-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}
.event-card h3 a { color: var(--text-main); text-decoration: none; }
.event-card h3 a:hover { color: var(--primary); }
.event-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}
.event-card .event-btn { margin-top: auto; }

/* ============================================================
   Mobile polish
   ============================================================ */
@media (max-width: 768px) {
    /* Smart Slider: scale hero text down on phones */
    .n2-section-smartslider .n2-ss-slider .n2-ss-slide h1,
    .n2-section-smartslider .n2-ss-slider .n2-ss-item-heading {
        font-size: clamp(30px, 8vw, 44px) !important;
        line-height: 1.15 !important;
        max-width: 100% !important;
    }
    .n2-section-smartslider .n2-ss-slider .n2-ss-slide p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    .n2-section-smartslider .n2-ss-slider .n2-ss-slide a.n2-ow,
    .n2-section-smartslider .n2-ss-slider .n2-ss-slide .n2-ss-item-button {
        font-size: 13px !important;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Smart Slider: give the hero presence on phones */
    .n2-section-smartslider .n2-ss-slider,
    .n2-section-smartslider .n2-ss-slide {
        min-height: min(76vh, 560px) !important;
        height: auto !important;
    }
    .n2-section-smartslider .n2-ss-layer-content,
    .n2-section-smartslider .n2-ss-section-main-content {
        min-height: min(76vh, 560px) !important;
        justify-content: center !important;
        gap: 0.9rem !important;
        padding: 1.75rem 1.5rem !important;
        box-sizing: border-box !important;
    }
    .n2-section-smartslider .n2-ss-layer-content { text-align: center !important; }
    .n2-section-smartslider .n2-ss-layer-content h1,
    .n2-section-smartslider .n2-ss-layer-content h3,
    .n2-section-smartslider .n2-ss-layer-content p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .n2-section-smartslider .n2-ss-layer-content .n2-ss-item-button,
    .n2-section-smartslider .n2-ss-layer-content a.n2-ow { margin: 0 auto !important; }
    .n2-section-smartslider .n2-ss-slider {
        background:
            radial-gradient(560px 320px at 50% 115%, rgba(212, 175, 55, 0.16), transparent 62%),
            radial-gradient(400px 240px at 85% -10%, rgba(212, 175, 55, 0.07), transparent 60%),
            #070707;
    }

    /* Comfortable tap targets for theme buttons */
    .btn-primary, .btn-ghost {
        font-size: 0.85rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-left: 1.8rem;
        padding-right: 1.8rem;
    }

    /* Tighten vertical rhythm on small screens */
    .section { padding: 56px 0; }
    .section-title { font-size: 1.7rem; }

    /* Keep hero actions stacked & centered */
    .hero-actions { flex-direction: column; align-items: center; gap: 1rem; }
}

@media (max-width: 480px) {
    .album-grid { gap: 2rem; }
    .events-grid { grid-template-columns: 1fr; }
}