/*
Theme Name: China Myth Stories
Theme URI: https://chinamythstories.com
Description: Chinese mythology storytelling theme with traditional Chinese aesthetics
Version: 1.0.0
Author: ChinaMythStories
Text Domain: myth-theme
*/

/* =========================================
   ROOT VARIABLES - Ancient China Color Palette
   ========================================= */
:root {
    /* Primary palette */
    --ink-black: #1a1410;
    --ink-light: #2d2820;
    --vermillion: #c41e3a;
    --vermillion-dark: #9a1830;
    --jade: #2d8a5e;
    --jade-light: #3da873;
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-pale: #f5e6c8;

    /* Backgrounds */
    --rice-white: #faf8f5;
    --cream: #f5f0e8;
    --mist: #e8e0d4;
    --paper: #f2ece0;

    /* Accent */
    --blood-red: #8b1a1a;
    --deep-jade: #1a5c3a;
    --sky-blue: #4a90a4;
    --crimson: #dc143c;

    /* Typography */
    --font-serif: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    --font-chinese: 'Noto Serif SC', 'STKaiti', serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--rice-white);
    color: var(--ink-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Selection */
::selection { background: var(--vermillion); color: #fff; }

/* Links */
a { color: var(--vermillion); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--ink-black);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* =========================================
   UTILITY CLASSES
   ========================================= */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* =========================================
   INK BRUSH DECORATION CLASS
   ========================================= */
.ink-brush-top {
    position: relative;
    padding-top: 4rem;
}
.ink-brush-top::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--vermillion), transparent);
}

/* =========================================
   NAVIGATION - Ancient Scroll Style
   ========================================= */
.site-header {
    background: var(--ink-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184,134,11,0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-logo:hover { color: var(--gold-light); }

.logo-sub {
    font-family: var(--font-chinese);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    display: block;
    margin-top: -2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--gold);
    background: rgba(184,134,11,0.1);
}

.main-nav li:last-child a {
    background: var(--vermillion);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
}
.main-nav li:last-child a:hover {
    background: var(--vermillion-dark);
}

/* Mobile menu toggle */
.menu-toggle { display: none; color: #fff; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   HERO SECTION - Ink Wash Painting
   ========================================= */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--ink-black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196,30,58,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45,138,94,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184,134,11,0.05) 0%, transparent 60%);
}

/* Subtle ink texture overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-chinese {
    font-family: var(--font-chinese);
    font-size: clamp(3rem, 8vw, 6rem);
    color: rgba(184,134,11,0.15);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    user-select: none;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--vermillion);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(196,30,58,0.35);
    transition: all 0.25s;
}
.btn-primary:hover {
    background: var(--vermillion-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,30,58,0.4);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,134,11,0.1);
}

/* Hero decorative divider */
.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
}

/* =========================================
   CATEGORY CARDS - Mythological Clusters
   ========================================= */
.category-section {
    padding: 5rem 0;
    background: var(--rice-white);
}

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

.section-label {
    font-family: var(--font-chinese);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--warm-gray, #6b7280);
    max-width: 480px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 900px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav { display: none; }
    .menu-toggle { display: block; }
}
@media (max-width: 600px) {
    .category-grid { grid-template-columns: 1fr; }
}

.cat-card {
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--mist);
    transition: all 0.35s;
    position: relative;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26,20,16,0.1);
    border-color: rgba(184,134,11,0.3);
}

.cat-icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.cat-icon.dragon { background: linear-gradient(135deg, #1a1410, #2d1f1a); }
.cat-icon.gods { background: linear-gradient(135deg, #2d1a1a, #4a1515); }
.cat-icon.phoenix { background: linear-gradient(135deg, #2d1a0f, #4a2a10); }
.cat-icon.journey { background: linear-gradient(135deg, #1a1a2e, #1a2d2e); }
.cat-icon.kids { background: linear-gradient(135deg, #1a2d1a, #152d1a); }
.cat-icon.stories { background: linear-gradient(135deg, #1a1410, #2d2820); }

.cat-emoji {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.cat-content {
    padding: 1.5rem;
}

.cat-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--ink-black);
}

.cat-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cat-count {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-serif);
}

.cat-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vermillion);
}
.cat-link:hover { color: var(--gold); }

/* =========================================
   ARTICLE CARDS - Story Listings
   ========================================= */
.articles-section {
    padding: 5rem 0;
    background: var(--cream);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mist);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,20,16,0.08);
}

.article-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.article-thumb-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.tg-dragon { background: linear-gradient(135deg, #1a1410, #3d1a0f); }
.tg-gods { background: linear-gradient(135deg, #2d1a1a, #4a1515); }
.tg-phoenix { background: linear-gradient(135deg, #2d1a0f, #4a2a10); }
.tg-monkey { background: linear-gradient(135deg, #1a1a2e, #2e3d1a); }
.tg-kids { background: linear-gradient(135deg, #1a2d1a, #152d1a); }
.tg-default { background: linear-gradient(135deg, #1a1410, #2d2820); }

.article-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(26,20,16,0.8);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-family: var(--font-serif);
}

.article-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink-black);
    line-height: 1.35;
}

.article-title a { color: inherit; }
.article-title a:hover { color: var(--vermillion); }

.article-excerpt {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* =========================================
   CONTENT AREA (pages/posts)
   ========================================= */
.site-content { padding: 3rem 0; }

.content-area {
    max-width: 760px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: var(--ink-black);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(196,30,58,0.1), transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(184,134,11,0.08), transparent 50%);
}

.page-header-inner { position: relative; z-index: 1; }

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-chinese);
    letter-spacing: 0.2em;
}

/* =========================================
   SEARCH BAR
   ========================================= */
.search-bar {
    background: var(--ink-black);
    padding: 2rem 0;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border: 1px solid rgba(184,134,11,0.3);
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.search-form input[type="search"]::placeholder { color: rgba(255,255,255,0.35); }
.search-form input[type="search"]:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.search-form button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--vermillion);
    border: none;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.search-form button:hover { background: var(--vermillion-dark); }

/* =========================================
   SIDEBAR
   ========================================= */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media (max-width: 900px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
}

.sidebar {
    position: sticky;
    top: 88px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--paper);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--mist);
}

.sidebar-widget h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--mist);
    color: var(--ink-black);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--mist);
}

.sidebar-widget li:last-child { border-bottom: none; }

.sidebar-widget a {
    font-size: 0.875rem;
    color: var(--ink-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget a:hover { color: var(--vermillion); }

.sidebar-widget a::before {
    content: '›';
    color: var(--gold);
    font-weight: bold;
}

/* Recent articles in sidebar */
.recent-article-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--mist);
}
.recent-article-item:last-child { border-bottom: none; }
.recent-article-item .emoji { font-size: 1.5rem; flex-shrink: 0; }
.recent-article-item a { font-size: 0.85rem; color: var(--ink-light); line-height: 1.4; }
.recent-article-item a:hover { color: var(--vermillion); }

/* =========================================
   POST CONTENT (single article)
   ========================================= */
.post-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-light);
}

.post-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--ink-black);
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--vermillion);
}

.post-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--ink-black);
}

.post-content p { margin-bottom: 1.5rem; }

.post-content ul, .post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li { margin-bottom: 0.5rem; }

.post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--paper);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ink-black);
}

.post-content blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--gold);
    font-family: var(--font-chinese);
    letter-spacing: 0.1em;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 5rem 0;
    background: var(--ink-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196,30,58,0.12), transparent 65%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    max-width: 460px;
    margin: 0 auto 2rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #0f0d0b;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(184,134,11,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.footer-brand .site-logo { font-size: 1.5rem; color: var(--gold); }
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.75rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* =========================================
   PAGINATION
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.pagination a {
    background: var(--paper);
    color: var(--ink-light);
    border: 1px solid var(--mist);
}

.pagination a:hover {
    background: var(--vermillion);
    color: #fff;
    border-color: var(--vermillion);
}

.pagination .current {
    background: var(--ink-black);
    color: var(--gold);
    border: 1px solid var(--ink-black);
}

/* =========================================
   FOR KIDS SECTION
   ========================================= */
.kids-hero {
    background: linear-gradient(135deg, #0f2d1a, #1a3d2a);
    padding: 5rem 0;
    text-align: center;
}

.kids-hero h1 { color: #fff; }
.kids-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 1rem auto 0; }

.kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.kids-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e0f2e9;
    transition: all 0.3s;
}

.kids-card:hover {
    transform: translateY(-3px);
    border-color: var(--jade);
    box-shadow: 0 12px 40px rgba(45,138,94,0.15);
}

.kids-card-emoji {
    font-size: 3rem;
    padding: 1.5rem;
    background: #f0f9f4;
    text-align: center;
}

.kids-card-body { padding: 1.25rem; }
.kids-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.kids-card p { font-size: 0.85rem; color: #6b7280; }

/* =========================================
   ENTRANCE ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-up-delay-4 { animation-delay: 0.4s; opacity: 0; }
.fade-in-up-delay-5 { animation-delay: 0.5s; opacity: 0; }
.fade-in-up-delay-6 { animation-delay: 0.6s; opacity: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero-title { font-size: clamp(1.75rem, 6vw, 3rem); }
    .category-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
