/* ==========================================================================
   FunFuzion Online — Ultraviolet Theme
   CSS Prefix: ff-
   ========================================================================== */

:root {
    --ff-primary: #7C3AED;
    --ff-primary-dark: #6D28D9;
    --ff-secondary: #84CC16;
    --ff-secondary-dark: #65A30D;
    --ff-accent: #EC4899;
    --ff-bg: #FAFAF9;
    --ff-text: #27272A;
    --ff-muted: #71717A;
    --ff-surface: #FFFFFF;
    --ff-dark: #18181B;
    --ff-border: #E4E4E7;
    --ff-font-heading: 'Archivo Black', sans-serif;
    --ff-font-body: 'Wix Madefor Display', sans-serif;
    --ff-max-width: 1120px;
    --ff-radius: 12px;
    --ff-radius-sm: 6px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--ff-bg);
    color: var(--ff-text);
    font-family: var(--ff-font-body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--ff-primary); text-decoration: none; }
a:hover { color: var(--ff-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-font-heading); line-height: 1.15; color: var(--ff-text); }

/* ---------- UTILITIES ---------- */
.ff-container { max-width: var(--ff-max-width); margin: 0 auto; padding: 0 2rem; }
.ff-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- NAV ---------- */
.ff-nav {
    background: var(--ff-dark);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.ff-nav-inner {
    max-width: var(--ff-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.ff-logo {
    font-family: var(--ff-font-heading);
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.ff-logo span { color: var(--ff-secondary); }
.ff-nav-links {
    display: flex;
    gap: 2rem;
}
.ff-nav-links li { list-style: none; }
.ff-nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.ff-nav-links a:hover { color: var(--ff-secondary); }

/* Hamburger */
.ff-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.ff-hamburger,
.ff-hamburger::before,
.ff-hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    position: relative;
}
.ff-hamburger::before,
.ff-hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.ff-hamburger::before { top: -7px; }
.ff-hamburger::after { top: 7px; }
.ff-menu-active .ff-hamburger { background: transparent; }
.ff-menu-active .ff-hamburger::before { transform: rotate(45deg); top: 0; }
.ff-menu-active .ff-hamburger::after { transform: rotate(-45deg); top: 0; }

/* ---------- HERO ---------- */
.ff-hero {
    background: var(--ff-dark);
    padding: 5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}
.ff-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--ff-bg);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}
.ff-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ff-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24,24,27,0.7);
    z-index: 1;
}
.ff-hero-inner {
    max-width: var(--ff-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.ff-hero h1 {
    font-family: var(--ff-font-heading);
    font-size: 4rem;
    line-height: 1.08;
    color: #fff;
    max-width: 700px;
}
.ff-violet { color: var(--ff-primary); }
.ff-lime { color: var(--ff-secondary); }
.ff-accent { color: var(--ff-accent); }
.ff-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    max-width: 520px;
    margin: 1.5rem 0 2.5rem;
}
.ff-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.ff-hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ff-stat-number {
    font-family: var(--ff-font-heading);
    font-size: 2rem;
    color: var(--ff-secondary);
}
.ff-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero mini (archive pages) */
.ff-hero-mini {
    padding: 3rem 2rem 4rem;
}
.ff-hero-mini h1 { font-size: 2.5rem; }
.ff-hero-party::after {
    background: var(--ff-bg);
}

/* ---------- BUTTONS ---------- */
.ff-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--ff-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--ff-font-body);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.ff-btn-primary { background: var(--ff-primary); color: #fff; }
.ff-btn-primary:hover { background: var(--ff-primary-dark); transform: translateY(-1px); color: #fff; }
.ff-btn-outline { background: transparent; color: var(--ff-secondary); border: 2px solid var(--ff-secondary); }
.ff-btn-outline:hover { background: var(--ff-secondary); color: var(--ff-dark); }
.ff-btn-white { background: #fff; color: var(--ff-primary); }
.ff-btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ---------- SECTIONS ---------- */
.ff-section {
    max-width: var(--ff-max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}
.ff-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}
.ff-section-title { font-size: 2rem; }
.ff-section-link {
    color: var(--ff-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.ff-section-link:hover { text-decoration: underline; }

/* ---------- CARDS — ASYMMETRIC GRID ---------- */
.ff-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.2rem;
}
.ff-card {
    background: var(--ff-surface);
    border-radius: var(--ff-radius);
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid var(--ff-border);
    position: relative;
    overflow: hidden;
}
.ff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.1);
    border-color: var(--ff-primary);
}
.ff-card.span-4 { grid-column: span 4; }
.ff-card.span-6 { grid-column: span 6; }
.ff-card.span-8 { grid-column: span 8; }
.ff-card h3 { font-family: var(--ff-font-heading); font-size: 1.2rem; margin-bottom: 0.5rem; }
.ff-card h3 a { color: var(--ff-text); text-decoration: none; }
.ff-card h3 a:hover { color: var(--ff-primary); }
.ff-card p { color: var(--ff-muted); font-size: 0.9rem; }
.ff-card-badge {
    display: inline-block;
    background: var(--ff-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.ff-card-badge.green { background: var(--ff-secondary); color: var(--ff-dark); }
.ff-card-badge.pink { background: var(--ff-accent); }
.ff-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }

/* ---------- HIGHLIGHT BANNER ---------- */
.ff-banner-wrap { padding: 0 2rem; }
.ff-highlight-banner {
    background: var(--ff-primary);
    border-radius: 16px;
    padding: 3rem;
    max-width: var(--ff-max-width);
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    color: #fff;
}
.ff-highlight-banner h2 { font-family: var(--ff-font-heading); font-size: 2rem; }
.ff-highlight-banner p { opacity: 0.85; margin: 1rem 0 1.5rem; }
.ff-highlight-right { display: flex; gap: 1rem; }
.ff-mini-card {
    background: rgba(255,255,255,0.15);
    border-radius: var(--ff-radius);
    padding: 1.5rem;
    flex: 1;
    text-align: center;
    backdrop-filter: blur(4px);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}
.ff-mini-card:hover { background: rgba(255,255,255,0.25); color: #fff; }
.ff-mini-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.ff-mini-card h4 { font-size: 0.9rem; font-weight: 700; }

/* ---------- BLOG GRID ---------- */
.ff-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ff-blog-card {
    background: var(--ff-surface);
    border-radius: var(--ff-radius);
    border: 1px solid var(--ff-border);
    overflow: hidden;
    transition: all 0.3s;
}
.ff-blog-card:hover {
    border-color: var(--ff-accent);
    transform: translateY(-3px);
}
.ff-blog-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}
.ff-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.ff-blog-img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-decoration: none; }
.ff-blog-img.bg-violet { background: rgba(124,58,237,0.06); }
.ff-blog-img.bg-lime { background: rgba(132,204,22,0.1); }
.ff-blog-img.bg-pink { background: rgba(236,72,153,0.06); }
.ff-blog-body { padding: 1.5rem; }
.ff-blog-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.ff-blog-tag.violet { color: var(--ff-primary); }
.ff-blog-tag.lime { color: var(--ff-secondary-dark); }
.ff-blog-tag.pink { color: var(--ff-accent); }
.ff-blog-body h3 {
    font-family: var(--ff-font-heading);
    font-size: 1rem;
    margin: 0.4rem 0;
}
.ff-blog-body h3 a { color: var(--ff-text); text-decoration: none; }
.ff-blog-body h3 a:hover { color: var(--ff-primary); }
.ff-blog-body p { color: var(--ff-muted); font-size: 0.85rem; }

/* ---------- PARTY CARDS ---------- */
.ff-party-card {
    background: var(--ff-surface);
    border-radius: var(--ff-radius);
    border: 1px solid var(--ff-border);
    overflow: hidden;
    transition: all 0.3s;
}
.ff-party-card:hover {
    border-color: var(--ff-accent);
    transform: translateY(-3px);
}
.ff-party-img {
    height: 160px;
    overflow: hidden;
}
.ff-party-img img { width: 100%; height: 100%; object-fit: cover; }
.ff-party-img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: rgba(236,72,153,0.06);
}
.ff-party-body { padding: 1.5rem; }
.ff-party-body h3 { font-family: var(--ff-font-heading); font-size: 1rem; margin: 0.4rem 0; }
.ff-party-body h3 a { color: var(--ff-text); text-decoration: none; }
.ff-party-body h3 a:hover { color: var(--ff-primary); }
.ff-party-body p { color: var(--ff-muted); font-size: 0.85rem; }

/* ---------- FILTER BAR ---------- */
.ff-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.ff-filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ff-muted);
    border: 1px solid var(--ff-border);
    text-decoration: none;
    transition: all 0.2s;
}
.ff-filter-btn:hover, .ff-filter-active {
    background: var(--ff-primary);
    color: #fff;
    border-color: var(--ff-primary);
}

/* ---------- TAGS ---------- */
.ff-tag-list { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.ff-tag {
    display: inline-block;
    background: rgba(124,58,237,0.08);
    color: var(--ff-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* ---------- BREADCRUMBS ---------- */
.ff-breadcrumbs {
    font-size: 0.8rem;
    color: var(--ff-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ff-border);
}
.ff-breadcrumbs a {
    color: var(--ff-muted);
    text-decoration: none;
}
.ff-breadcrumbs a:hover { color: var(--ff-primary); }
.ff-breadcrumb-sep {
    margin: 0 0.4rem;
    color: var(--ff-border);
}
.ff-breadcrumbs span:last-child {
    color: var(--ff-text);
    font-weight: 500;
}

/* ---------- AUTHOR BOX ---------- */
.ff-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-top: 2.5rem;
    background: rgba(124,58,237,0.03);
    border: 1px solid var(--ff-border);
    border-radius: var(--ff-radius);
}
.ff-author-avatar {
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.ff-author-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ff-muted);
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.ff-author-name {
    display: block;
    font-family: var(--ff-font-heading);
    font-size: 1.1rem;
    color: var(--ff-text);
    text-decoration: none;
    margin-bottom: 0.35rem;
}
.ff-author-name:hover { color: var(--ff-primary); }
.ff-author-bio {
    font-size: 0.85rem;
    color: var(--ff-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---------- ARTICLE META (enhanced) ---------- */
.ff-article-meta a {
    color: var(--ff-primary);
    text-decoration: none;
    font-weight: 500;
}
.ff-article-meta a:hover { text-decoration: underline; }

/* ---------- SINGLE ARTICLE ---------- */
.ff-main { padding: 2rem 0 4rem; }
.ff-article { max-width: 720px; }
.ff-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.ff-page-layout .ff-article { max-width: 800px; margin: 0 auto; }
.ff-legal-layout .ff-article { max-width: 800px; margin: 0 auto; }
.ff-article-header { margin-bottom: 2rem; }
.ff-article-cat {
    display: inline-block;
    background: var(--ff-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-decoration: none;
}
.ff-article-title { font-size: 2.5rem; margin-bottom: 0.5rem; }
.ff-article-meta {
    color: var(--ff-muted);
    font-size: 0.9rem;
}
.ff-meta-sep { margin: 0 0.5rem; }
.ff-article-featured {
    margin-bottom: 2rem;
    border-radius: var(--ff-radius);
    overflow: hidden;
}
.ff-article-featured img { width: 100%; }
.ff-article-content { font-size: 1rem; line-height: 1.8; }
.ff-article-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.ff-article-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.ff-article-content p { margin-bottom: 1.25rem; }
.ff-article-content ul, .ff-article-content ol { margin: 0 0 1.25rem 1.5rem; }
.ff-article-content li { list-style: disc; margin-bottom: 0.4rem; }
.ff-article-content ol li { list-style: decimal; }
.ff-article-content blockquote {
    border-left: 4px solid var(--ff-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(124,58,237,0.04);
    font-style: italic;
    color: var(--ff-muted);
}
.ff-article-content img { border-radius: var(--ff-radius); margin: 1.5rem 0; }
.ff-article-content a { color: var(--ff-primary); text-decoration: underline; }

/* Activity/party single */
.ff-activity-header, .ff-party-header { margin-bottom: 2rem; }
.ff-activity-type, .ff-party-age {
    display: inline-block;
    background: rgba(132,204,22,0.1);
    color: var(--ff-secondary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-decoration: none;
}
.ff-activity-icon-large { font-size: 3rem; margin: 1rem 0; }
.ff-activity-featured { margin-bottom: 2rem; border-radius: var(--ff-radius); overflow: hidden; }
.ff-activity-featured img { width: 100%; }
.ff-activity-ages { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--ff-border); }
.ff-activity-ages h3 { font-size: 1rem; margin-bottom: 0.75rem; }

/* ---------- POST NAVIGATION ---------- */
.ff-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ff-border);
}
.ff-post-nav a {
    text-decoration: none;
    padding: 1rem;
    border-radius: var(--ff-radius-sm);
    border: 1px solid var(--ff-border);
    transition: border-color 0.2s;
}
.ff-post-nav a:hover { border-color: var(--ff-primary); }
.ff-post-nav-label { display: block; font-size: 0.8rem; color: var(--ff-muted); margin-bottom: 0.25rem; }
.ff-post-nav-title { display: block; font-weight: 600; color: var(--ff-text); font-size: 0.95rem; }
.ff-post-nav-next { text-align: right; }

/* ---------- ARCHIVE ---------- */
.ff-archive-header { margin-bottom: 2rem; }
.ff-archive-desc { color: var(--ff-muted); max-width: 600px; }

/* ---------- PAGINATION ---------- */
.ff-pagination { margin-top: 3rem; text-align: center; }
.ff-pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; }
.ff-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--ff-radius-sm);
    border: 1px solid var(--ff-border);
    color: var(--ff-text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.ff-pagination .page-numbers:hover, .ff-pagination .page-numbers.current {
    background: var(--ff-primary);
    color: #fff;
    border-color: var(--ff-primary);
}

/* ---------- SIDEBAR ---------- */
.ff-sidebar {}
.ff-widget { margin-bottom: 2rem; }
.ff-widget-title {
    font-family: var(--ff-font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ff-primary);
}
.ff-widget ul { list-style: none; }
.ff-widget li { margin-bottom: 0.5rem; }
.ff-widget a { color: var(--ff-text); font-size: 0.9rem; }
.ff-widget a:hover { color: var(--ff-primary); }

/* ---------- SEARCH FORM ---------- */
.ff-search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin-top: 2rem;
}
.ff-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ff-border);
    border-radius: var(--ff-radius-sm);
    font-family: var(--ff-font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.ff-search-input:focus { border-color: var(--ff-primary); }
.ff-search-btn { padding: 0.75rem 1.5rem; }

/* ---------- 404 ---------- */
.ff-404-layout { text-align: center; padding: 4rem 2rem; }
.ff-404-title { font-size: 4rem; margin-bottom: 1rem; }
.ff-404-subtitle { font-size: 1.3rem; color: var(--ff-muted); margin-bottom: 1rem; }
.ff-404-text { color: var(--ff-muted); margin-bottom: 2rem; }
.ff-404-links { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.ff-404-layout .ff-search-form { margin: 2rem auto 0; }

/* ---------- PAGE CONTENT ---------- */
.ff-page-content {}
.ff-no-results { text-align: center; color: var(--ff-muted); padding: 3rem 0; font-size: 1.1rem; }

/* ---------- FOOTER ---------- */
.ff-footer {
    background: var(--ff-dark);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}
.ff-footer-inner {
    max-width: var(--ff-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.ff-footer-brand .ff-logo { font-size: 1.2rem; color: #fff; }
.ff-footer-brand p { margin-top: 1rem; font-size: 0.85rem; }
.ff-footer h4 {
    color: var(--ff-secondary);
    font-family: var(--ff-font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.ff-footer ul { list-style: none; }
.ff-footer li { margin-bottom: 0.4rem; }
.ff-footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }
.ff-footer a:hover { color: var(--ff-primary); }
.ff-footer-bottom {
    max-width: var(--ff-max-width);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- WP SPECIFIC ---------- */
.wp-block-image { margin: 1.5rem 0; }
.wp-block-image img { border-radius: var(--ff-radius); }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }

/* ---------- RESPONSIVE: TABLET ---------- */
@media (max-width: 1024px) {
    .ff-hero h1 { font-size: 3rem; }
    .ff-single-layout { grid-template-columns: 1fr; }
    .ff-sidebar { display: none; }
}

/* ---------- RESPONSIVE: MOBILE ---------- */
@media (max-width: 768px) {
    .ff-menu-toggle { display: block; }
    .ff-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--ff-dark);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .ff-nav-links.ff-nav-open { display: flex; }
    .ff-nav-links li { padding: 0.5rem 0; }

    .ff-hero { padding: 3rem 1.5rem 4rem; }
    .ff-hero h1 { font-size: 2.5rem; }
    .ff-hero-stats { flex-direction: column; gap: 1.5rem; }

    .ff-grid { display: flex; flex-direction: column; }
    .ff-card.span-4, .ff-card.span-6, .ff-card.span-8 { grid-column: auto; }

    .ff-highlight-banner { grid-template-columns: 1fr; }
    .ff-highlight-right { flex-direction: column; }

    .ff-blog-grid { grid-template-columns: 1fr; }
    .ff-post-nav { grid-template-columns: 1fr; }
    .ff-footer-inner { grid-template-columns: 1fr 1fr; }
    .ff-section { padding: 2.5rem 1.5rem; }
    .ff-container { padding: 0 1.5rem; }
    .ff-article-title { font-size: 1.8rem; }
    .ff-404-title { font-size: 2.5rem; }
    .ff-404-links { flex-direction: column; align-items: center; }
    .ff-author-box { flex-direction: column; text-align: center; align-items: center; }
}

/* ---------- RESPONSIVE: LARGE ---------- */
@media (min-width: 1280px) {
    .ff-hero h1 { font-size: 4.5rem; }
}
