/* =============================================
   ST Records - Matching Original Kadence Theme
   ============================================= */

:root {
    /* Original Kadence Global Palette */
    --palette1: #466f82;
    --palette2: #5c8a46;
    --palette3: #1A202C;
    --palette4: #2D3748;
    --palette5: #4A5568;
    --palette6: #718096;
    --palette7: #EDF2F7;
    --palette8: #f7fafc;
    --palette9: #ffffff;

    /* Semantic aliases */
    --primary: var(--palette1);
    --accent: var(--palette2);
    --text-heading: var(--palette3);
    --text-body: var(--palette4);
    --text-secondary: var(--palette5);
    --text-muted: var(--palette6);
    --bg-light: var(--palette7);
    --bg-body: var(--palette8);
    --bg-content: var(--palette9);

    --shadow-entry: 0px 15px 15px -10px rgba(0,0,0,0.05);
    --shadow-btn-hover: 0px 15px 25px -7px rgba(0,0,0,0.1);

    --transition: all .3s cubic-bezier(.25,.1,.25,1);
    --transition-fast: all .15s ease;

    --header-height: 80px;

    /* Kadence spacing */
    --spacing-3xl: 6.5rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-body);
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--accent); }

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

/* Headings - matching Kadence */
h1 { font-style: normal; font-weight: normal; font-size: 56px; line-height: 1.5; color: var(--text-heading); }
h2 { font-style: normal; font-weight: normal; font-size: 40px; line-height: 1.5; color: var(--primary); }
h3 { font-style: normal; font-weight: 600; font-size: 24px; line-height: 1.5; color: var(--text-heading); }
h4 { font-style: normal; font-weight: 700; font-size: 22px; line-height: 1.5; color: var(--primary); }
h5 { font-weight: 700; font-size: 20px; line-height: 1.5; color: var(--text-body); }
h6 { font-weight: 700; font-size: 18px; line-height: 1.5; color: var(--text-secondary); }

/* Container - fullwidth with 6.5rem horizontal padding like Kadence */
.container {
    max-width: 100%;
    padding: 0 var(--spacing-3xl);
}

/* =============================================
   Header / Navigation - matching Kadence exactly
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: var(--shadow-entry);
}

.site-header.dark {
    background: var(--palette3);
}

.header-inner {
    max-width: 100%;
    padding: 0 var(--spacing-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
}

/* Logo - Kadence: max-width 80px, padding-top 40px */
.site-logo {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-logo img {
    max-width: 80px;
    height: auto;
    transition: var(--transition-fast);
}

.site-logo:hover img {
    opacity: .8;
}

/* Navigation - Kadence: 17px, letter-spacing 3px, uppercase */
.main-nav {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.main-nav a {
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6em 1.5em;
    transition: var(--transition-fast);
    display: block;
}

.site-header.transparent .main-nav a {
    color: var(--palette9);
}
.site-header.transparent .main-nav a:hover {
    color: var(--primary);
}

.site-header.scrolled .main-nav a {
    color: var(--text-secondary);
}
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--primary);
}

.site-header.dark .main-nav a {
    color: var(--palette9);
}
.site-header.dark .main-nav a:hover,
.site-header.dark .main-nav a.active {
    color: var(--primary);
}
.site-header.dark .menu-toggle {
    color: var(--palette9);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4em 0.6em;
    color: var(--text-secondary);
    font-size: 14px;
}
.menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: var(--transition-fast);
}
.site-header.transparent .menu-toggle {
    color: var(--palette9);
}

/* =============================================
   Hero Section - Kadence: min-height 800px
   ============================================= */
.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 var(--spacing-3xl);
    width: 100%;
}

/* Hero subtitle - Kadence: font-weight 400, uppercase, letter-spacing 2px */
.hero-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--palette9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* Hero title - h1 style from Kadence: 56px, palette9 */
.hero-title {
    font-size: 56px;
    font-weight: normal;
    color: var(--palette9);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* =============================================
   Section Layout - Kadence uses 6.5rem padding
   ============================================= */
.section {
    padding: var(--spacing-3xl) 0;
}

.section--alt {
    background: var(--bg-body);
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* h2 from Kadence: 40px, palette1, normal weight */
.section-title {
    font-size: 40px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* =============================================
   Filters
   ============================================= */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-select {
    appearance: none;
    background: var(--bg-content);
    border: 1px solid var(--palette6);
    border-radius: 4px;
    padding: 10px 36px 10px 14px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:hover { border-color: var(--primary); }
.filter-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,133,242,0.4); }

.filters-bar .spacer { flex: 1; }

/* =============================================
   Card Grid
   ============================================= */
.card-grid {
    display: grid;
    gap: 28px 28px;
    row-gap: 52px;
}

.card-grid--albums {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid--songs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* =============================================
   Album / Song Card
   ============================================= */
.card {
    background: transparent;
    overflow: visible;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.card:hover {
    color: inherit;
}

.card-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: visible;
    width: 100%;
    flex-shrink: 0;
    display: block;
}


.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.1,.25,1);
}

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

/* myPlayer - Play/Pause button on song covers */
.myPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.25);
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    outline: none;
    color: white;
    z-index: 2;
    padding: 0;
    transition: var(--transition);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

.myPlayer:hover {
    background-color: rgba(0, 0, 0, 0.45);
    transform: translate(-50%, -50%) scale(1.08);
}

/* Play icon (default) */
.myPlayer::before {
    content: '\f04b';
    margin-left: 3px;
}

/* Pause icon */
.myPlayer.pause::before {
    content: '\f04c';
    margin-left: 0;
}

/* No ::after needed */
.myPlayer.pause::after {
    display: none;
}

/* Large variant for detail pages */
.myPlayer--large {
    width: 80px;
    height: 80px;
    font-size: 24px;
}
.myPlayer--large::before {
    margin-left: 4px;
}
.myPlayer--large.pause::before {
    margin-left: 0;
}

/* Small variant for song list thumbnails */
.myPlayer--small {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-width: 1.5px;
}
.myPlayer--small::before {
    margin-left: 2px;
}
.myPlayer--small.pause::before {
    margin-left: 0;
}

.card-body {
    padding: 10px 0 0;
}

/* Artist name - Kadence: 1em, palette1 */
.card-artist {
    font-size: 1em;
    font-weight: normal;
    color: var(--primary);
    margin-top: 10px;
    display: block;
    text-decoration: none;
}

.card-artist:hover {
    color: var(--accent);
}

/* Song title - Kadence: 1.1em, font-weight 500 */
.card-title {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--text-body);
    margin-top: -5px;
    line-height: 1.4;
    display: block;
    text-decoration: none;
}

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

.card .streaming-icons {
    margin-top: 10px;
}

/* Genre Badge - Kadence style: centered top, palette1 bg, white border */
.genre-badge {
    position: absolute;
    display: inline-block;
    text-align: center;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85em;
    background-color: var(--primary);
    color: var(--palette8);
    padding: 3px 10px 2px;
    white-space: nowrap;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    z-index: 1;
}

.genre-badge a {
    text-decoration: none;
    color: var(--palette8);
}

/* Song genre badge uses accent color */
.card-grid--songs .genre-badge {
    background-color: var(--accent);
}

/* =============================================
   Streaming Icons - Kadence: 18px, palette6 bg, palette9 color
   ============================================= */
.streaming-icons {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.streaming-icon {
    color: var(--palette9);
    font-size: 18px;
    background: var(--palette6);
    border-width: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.streaming-icon:hover {
    background: var(--accent);
    color: var(--palette9);
    transform: scale(1.1);
}

/* =============================================
   Blog Section
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-content);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-entry);
}

.blog-card:hover {
    box-shadow: var(--shadow-btn-hover);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 2rem;
}

.blog-card-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 8px;
}

.blog-card-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   Footer - Kadence: 30px padding
   ============================================= */
.site-footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    background: var(--bg-content);
}

/* =============================================
   Page Content (single views)
   ============================================= */
.page-header-bar {
    background: var(--palette3);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 40px;
    text-align: center;
}

.page-header-bar h1 {
    font-size: 56px;
    color: var(--palette9);
    font-weight: normal;
    line-height: 1.5;
}

/* Album Detail - 2-column layout matching song detail */
.album-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
    padding: var(--spacing-3xl) 0;
}

.album-detail-left {
    box-shadow: var(--shadow-entry);
}

.album-detail-right h1 {
    font-size: 40px;
    font-weight: normal;
    color: var(--text-heading);
    line-height: 1.5;
    margin-bottom: 8px;
}

.album-detail-right .artist-name {
    font-size: 1em;
    color: var(--primary);
    font-weight: normal;
    display: block;
    text-decoration: none;
}

.album-detail-right .artist-name:hover {
    color: var(--accent);
}

.album-detail-right .description {
    color: var(--text-secondary);
    margin: 16px 0 24px;
    line-height: 1.6;
    font-size: 18px;
}

/* Genre badge inline (for detail pages, not positioned absolute) */
.genre-badge-inline {
    display: inline-block;
    font-size: 0.85em;
    background-color: var(--primary);
    color: var(--palette8);
    padding: 3px 10px 2px;
    white-space: nowrap;
    margin: 4px 0 8px;
}

/* Song List */
.song-list {
    list-style: none;
}

.song-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    transition: var(--transition-fast);
}

.song-list-item:hover {
    background: var(--bg-body);
}

.song-list-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

.song-list-info { flex: 1; }

.song-list-artist {
    font-size: 1em;
    color: var(--primary);
}

.song-list-title {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--text-body);
}

.song-list-item .streaming-icons {
    flex-shrink: 0;
}

/* Detail Cover (shared song/album) */
/* Detail cover wrapper */
.detail-cover {
    position: relative;
    overflow: hidden;
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

/* Song Detail - 2-column layout matching original Kadence */
.song-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
    padding: var(--spacing-3xl) 0;
}

.song-detail-left {
    box-shadow: var(--shadow-entry);
}

.song-detail-right .artist-name {
    font-size: 1em;
    color: var(--primary);
    font-weight: normal;
    display: block;
    text-decoration: none;
}

.song-detail-right .artist-name:hover {
    color: var(--accent);
}

.song-detail-right h1 {
    font-size: 40px;
    font-weight: normal;
    color: var(--text-heading);
    line-height: 1.5;
    margin-bottom: 8px;
}

.lyrics-heading {
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-top: 40px;
    margin-bottom: 16px;
}

.lyrics p {
    margin-bottom: 1em;
}

/* Buy Buttons - text links like original */
.buy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--palette6);
    color: var(--palette9);
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.buy-btn:hover {
    background: var(--accent);
    color: var(--palette9);
}

.buy-btn i {
    font-size: 16px;
}

.lyrics {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--palette7);
}

.lyrics h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
}

/* =============================================
   Blog Detail - Modern readable layout
   ============================================= */
.blog-detail-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.blog-detail-wrapper.has-sidebar {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.blog-detail {
    min-width: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-card {
    background: var(--palette9);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.blog-sidebar-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0 4px;
}

.blog-sidebar-card h3 a {
    color: var(--text-heading);
    text-decoration: none;
}

.blog-sidebar-card h3 a:hover {
    color: var(--primary);
}

.blog-sidebar-artist {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-sidebar-cover {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.blog-sidebar-cover img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.blog-sidebar-songs {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar-song {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-sidebar-song-cover {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.blog-sidebar-song-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-heading);
    text-decoration: none;
}

.blog-sidebar-song-title:hover {
    color: var(--primary);
}

.blog-detail .blog-card-meta {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.blog-detail h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-heading);
    margin-bottom: 24px;
}

.blog-detail .content {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
}

.blog-detail .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 2.5rem 0 0.75rem;
    line-height: 1.3;
}

.blog-detail .content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 2rem 0 0.5rem;
    line-height: 1.4;
}

.blog-detail .content p {
    margin-bottom: 1.25em;
}

.blog-detail .content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-detail .content figure {
    margin: 2rem 0;
}

.blog-detail .content figure img {
    max-width: 480px;
    margin: 0 auto;
    display: block;
}

.blog-detail .content ul,
.blog-detail .content ol {
    margin: 0 0 1.25em 1.5em;
    line-height: 1.8;
}

.blog-detail .content li {
    margin-bottom: 4px;
}

.blog-detail .content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-detail .content a:hover {
    color: var(--accent);
}

.blog-detail .content strong {
    font-weight: 600;
    color: var(--text-heading);
}

/* =============================================
   Pagination
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.page-link:hover { background: var(--bg-light); color: var(--text-heading); }
.page-link.active { background: var(--primary); color: var(--palette9); }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .container, .header-inner, .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .section { padding: 3rem 0; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--palette3);
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 999;
    }
    .main-nav.open a {
        font-size: 14px;
        color: var(--palette8) !important;
        padding: 1em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .menu-toggle { display: block; z-index: 1001; }

    .hero { min-height: 500px; }
    .hero-title { font-size: 32px; }

    .section { padding: 2rem 0; }
    .section-title { font-size: 28px; }

    .card-grid--albums { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .card-grid--songs { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .blog-grid { grid-template-columns: 1fr; }

    .album-detail { grid-template-columns: 1fr; gap: 32px; }
    .album-detail-left { max-width: 300px; margin: 0 auto; }

    .song-detail { grid-template-columns: 1fr; gap: 32px; padding: 2rem 0; }
    .song-detail-left { max-width: 300px; margin: 0 auto; }

    .filters-bar { gap: 8px; }
    .filter-select { font-size: 14px; padding: 8px 30px 8px 10px; }

    .page-header-bar h1 { font-size: 32px; }
    .blog-detail h1 { font-size: 32px; }
    .blog-detail-wrapper.has-sidebar { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}

@media (max-width: 480px) {
    .card-grid--albums { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-grid--songs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-title { font-size: 1em; }
    .streaming-icon { width: 32px; height: 32px; font-size: 16px; }
}

/* =============================================
   Utility / Animations
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Placeholder cover */
.placeholder-cover {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--palette7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 24px;
}

/* Content background white on body bg */
.section:not(.section--alt) {
    background: var(--bg-content);
}
