/* ═══════════════════════════════════════════════════
   PAKADLE — Premium Romantic CMS Stylesheet
   Aesthetic: Soft Luxury Editorial × Warm Blush
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────── */
:root {
    --rose:       #e63f6b;
    --rose-dark:  #c22952;
    --rose-light: #fce4ec;
    --blush:      #f8d7e3;
    --peach:      #fdf0f5;
    --gold:       #d4a853;
    --gold-light: #f5e6c8;
    --dark:       #1a0a12;
    --charcoal:   #2d1f27;
    --text:       #3d2535;
    --muted:      #8b6c7a;
    --border:     #f0d9e4;
    --white:      #ffffff;
    --cream:      #fdf8fa;

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-script:  'Dancing Script', cursive;
    --ff-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  40px;

    --shadow-sm:  0 2px 12px rgba(230,63,107,0.08);
    --shadow-md:  0 8px 32px rgba(230,63,107,0.14);
    --shadow-lg:  0 20px 60px rgba(26,10,18,0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:  1240px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--ff-display);
    color: var(--dark);
    line-height: 1.25;
    font-weight: 700;
}

/* ─── Top Bar ───────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    padding: 6px 0;
}
.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-tagline { color: var(--gold); font-style: italic; font-family: var(--ff-script); font-size: 1rem; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }
.topbar-links a:hover { color: var(--rose-light); }

/* ─── Header ────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(230,63,107,0.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-heart {
    font-size: 2.2rem;
    color: var(--rose);
    line-height: 1;
    animation: heartbeat 2.5s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.18); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--ff-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.logo-sub {
    font-family: var(--ff-script);
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1px;
}

/* Search */
.header-search { flex: 1; max-width: 420px; margin-left: auto; }
.header-search form {
    display: flex;
    background: var(--peach);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.header-search form:focus-within {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(230,63,107,0.12);
}
.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 18px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
    background: var(--rose);
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    transition: background var(--transition);
}
.header-search button svg { width: 18px; height: 18px; }
.header-search button:hover { background: var(--rose-dark); }

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav */
.site-nav {
    background: linear-gradient(to right, var(--dark), #2d1a25, var(--dark));
    border-top: 2px solid var(--rose);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }

.nav-home, .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
}
.nav-link .nav-icon { font-size: 1rem; }
.nav-home:hover, .nav-link:hover, .nav-link.active {
    color: var(--white);
    border-bottom-color: var(--cat-color, var(--rose));
    background: rgba(255,255,255,0.06);
}

/* ─── Main Content ──────────────────────────────── */
.site-main { min-height: 60vh; }

/* ─── Hero Section ──────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #3d1428 50%, #1a0a12 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(230,63,107,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.12) 0%, transparent 60%);
}
.hero::after {
    content: '♥ ♡ ♥ ♡ ♥ ♡ ♥ ♡ ♥ ♡ ♥';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
    color: rgba(230,63,107,0.2);
    letter-spacing: 20px;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-kicker {
    font-family: var(--ff-script);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 em { color: var(--rose-light); font-style: italic; }
.hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-rose {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── Section Layout ────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section { padding: 64px 0; }
.section-alt { background: var(--white); }

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.2em;
    background: var(--rose);
    border-radius: 4px;
}
.section-link { color: var(--rose); font-size: 0.88rem; font-weight: 600; }
.section-link:hover { color: var(--rose-dark); }

/* ─── Post Card ─────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--blush);
    position: relative;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.post-card:hover .card-image img { transform: scale(1.06); }
.card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--blush), var(--rose-light));
}

.card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rose);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-meta { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.78rem; }
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-title {
    font-size: 1.15rem;
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    transition: color var(--transition);
}
.post-card:hover .card-title { color: var(--rose); }
.card-excerpt { color: var(--muted); font-size: 0.88rem; line-height: 1.65; flex: 1; }
.card-footer {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.card-author { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.card-read { color: var(--rose); font-size: 0.82rem; font-weight: 600; }
.card-read:hover { color: var(--rose-dark); }

/* ─── Featured Post (Large) ─────────────────────── */
.featured-post {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 48px;
}
.featured-post .card-image { aspect-ratio: auto; min-height: 380px; }
.featured-post .card-body { padding: 40px; justify-content: center; }
.featured-post .card-title { font-size: 1.7rem; }
.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

/* ─── Category Chips ────────────────────────────── */
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.cat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1.5px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}
.cat-chip:hover, .cat-chip.active {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,63,107,0.3);
}

/* ─── Single Post ───────────────────────────────── */
.post-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,18,0.9) 0%, rgba(26,10,18,0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.post-hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px;
    width: 100%;
}
.post-hero-content h1 {
    color: white;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    max-width: 800px;
    margin-top: 12px;
}

.post-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 24px;
}

.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.87rem;
}
.post-meta-bar span { display: flex; align-items: center; gap: 6px; }

.post-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

/* ── Headings ── */
.post-content h1 { font-size: 2rem;   margin: 2em 0 0.8em; }
.post-content h2 {
    font-size: 1.55rem;
    margin: 2em 0 0.8em;
    padding-left: 16px;
    border-left: 4px solid var(--rose);
    color: var(--dark);
}
.post-content h3 {
    font-size: 1.25rem;
    margin: 1.6em 0 0.6em;
    color: var(--charcoal);
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border);
}
.post-content h4 { font-size: 1.1rem;  margin: 1.4em 0 0.5em; color: var(--charcoal); font-weight: 700; }
.post-content h5 { font-size: 1rem;    margin: 1.2em 0 0.4em; color: var(--muted);    font-weight: 700; }
.post-content h6 { font-size: 0.95rem; margin: 1.2em 0 0.4em; color: var(--muted);    font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Paragraphs & inline ── */
.post-content p  { margin-bottom: 1.4em; }
.post-content strong, .post-content b { font-weight: 700; color: var(--dark); }
.post-content em, .post-content i { font-style: italic; }
.post-content a  { color: var(--rose); text-decoration: underline; text-decoration-color: rgba(230,63,107,0.3); }
.post-content a:hover { color: var(--rose-dark); text-decoration-color: var(--rose); }
.post-content mark { background: var(--gold-light); padding: 1px 4px; border-radius: 3px; }
.post-content code {
    background: var(--peach);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.88em;
    color: var(--rose-dark);
    font-family: monospace;
}

/* ── Lists ── */
.post-content ul {
    padding-left: 1.4em;
    margin-bottom: 1.4em;
    list-style: none;
}
.post-content ul li {
    margin-bottom: 0.6em;
    position: relative;
    padding-left: 1.4em;
}
.post-content ul li::before {
    content: '♥';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-size: 0.75em;
    top: 0.2em;
}
.post-content ol {
    padding-left: 1.8em;
    margin-bottom: 1.4em;
    list-style: decimal;
}
.post-content ol li { margin-bottom: 0.6em; padding-left: 0.4em; }
.post-content li > ul, .post-content li > ol { margin-top: 0.4em; margin-bottom: 0.4em; }

/* ── Blockquote ── */
.post-content blockquote {
    margin: 2em 0;
    padding: 24px 32px;
    background: var(--blush);
    border-left: 5px solid var(--rose);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--charcoal);
}
.post-content blockquote p { margin-bottom: 0; }

/* ── Images ── */
.post-content img {
    border-radius: var(--radius-md);
    margin: 2em auto;
    box-shadow: var(--shadow-sm);
    display: block;
    max-width: 100%;
    height: auto;
}
.post-content figure { margin: 2em 0; }
.post-content figcaption { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

/* ── Tables ── */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.92rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.post-content thead { background: linear-gradient(135deg, var(--dark), #2d1a25); }
.post-content thead th {
    padding: 14px 18px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border: none;
}
.post-content tbody tr { transition: background 0.15s; }
.post-content tbody tr:nth-child(even) { background: var(--peach); }
.post-content tbody tr:hover { background: var(--blush); }
.post-content tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}
.post-content tbody tr:last-child td { border-bottom: none; }
.post-content tfoot td {
    padding: 12px 18px;
    background: var(--peach);
    font-weight: 600;
    border-top: 2px solid var(--border);
}

/* ── HR divider ── */
.post-content hr {
    border: none;
    border-top: 2px dashed var(--border);
    margin: 2.5em 0;
}

/* ── Responsive table wrapper ── */
.post-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.post-content table thead,
.post-content table tbody,
.post-content table tr { display: table; width: 100%; table-layout: fixed; }
@media (max-width: 600px) {
    .post-content table { font-size: 0.82rem; }
    .post-content thead th,
    .post-content tbody td { padding: 10px 12px; }
}

/* ─── Breadcrumbs ───────────────────────────────── */
.breadcrumbs {
    background: var(--peach);
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
.breadcrumbs .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--rose); }
.breadcrumbs span { color: var(--muted); }

/* ─── Pagination ────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 48px 0;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    transition: all var(--transition);
}
.page-link:hover, .page-link.active {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
}

/* ─── Footer ────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    margin-top: 80px;
}
.footer-wave {
    color: var(--cream);
    line-height: 0;
    margin-bottom: -1px;
}
.footer-wave svg { width: 100%; height: 60px; }
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-brand .logo-heart { color: var(--rose); animation: heartbeat 2.5s ease-in-out infinite; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--rose); border-color: var(--rose); color: white; transform: translateY(-2px); }

.footer-col h4 {
    font-family: var(--ff-display);
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.87rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--rose-light); }

.footer-newsletter p { font-size: 0.87rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; flex-direction: column; }
.newsletter-form input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: white;
    font-family: var(--ff-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--rose); }
.newsletter-form button {
    background: var(--rose);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--ff-body);
    transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--rose-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post .card-image { min-height: 260px; }
}

@media (max-width: 768px) {
    .topbar-links { display: none; }
    .header-search { display: none; }
    .nav-toggle { display: flex; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .site-nav.open { display: block; }
    .nav-inner { flex-direction: column; align-items: stretch; gap: 0; overflow: visible; }
    .nav-home, .nav-link { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); border-left: 3px solid transparent; }
    .nav-link.active, .nav-link:hover { border-left-color: var(--cat-color, var(--rose)); border-bottom-color: rgba(255,255,255,0.07); }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .post-hero { height: 320px; }
    .cards-grid { grid-template-columns: 1fr; }
    .section { padding: 40px 0; }
}

/* ─── Utilities ─────────────────────────────────── */
.text-rose { color: var(--rose); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ─── Scroll Animations ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Floating Hearts ───────────────────────────── */
.hearts-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.heart-particle {
    position: absolute;
    bottom: -20px;
    color: rgba(230,63,107,0.08);
    font-size: 1.5rem;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    to { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ─── Views Badge ───────────────────────────────── */
.views-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--peach);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ─── No Results ────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 80px 24px;
    color: var(--muted);
}
.no-results h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--charcoal); }
