/* ITSWEBER CMS – Creative Theme */
/* Modern, dynamic theme for agencies and portfolios */

:root {
    --color-primary: #8b5cf6;
    --color-primary-dark: #7c3aed;
    --color-accent: #06b6d4;
    --color-text: #e2e8f0;
    --color-text-light: #94a3b8;
    --color-heading: #f1f5f9;
    --color-bg: #0f172a;
    --color-bg-alt: #1e293b;
    --color-bg-card: #1e293b;
    --color-border: #334155;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-width: 1140px;
    --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.7; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; }

.site-header { background: rgba(15,23,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); height: var(--header-height); display: flex; align-items: center; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { text-decoration: none; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--color-heading); letter-spacing: -0.025em; }
.site-logo img { height: 40px; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text); }
.nav-list { list-style: none; display: flex; gap: 1.75rem; }
.nav-list a { color: var(--color-text-light); font-size: 0.9375rem; font-weight: 500; transition: color 0.15s; text-decoration: none; }
.nav-list a:hover, .nav-list a.active { color: var(--color-accent); text-decoration: none; }

.hero-section { padding: 8rem 0 6rem; background: linear-gradient(135deg, var(--color-bg) 0%, #1a1040 50%, var(--color-bg) 100%); text-align: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%); transform: translate(-50%, -50%); pointer-events: none; }
.hero-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; color: var(--color-heading); position: relative; }
.hero-subtitle { font-size: 1.25rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto; position: relative; }

.btn { display: inline-block; padding: 0.75rem 1.75rem; font-weight: 500; border-radius: 8px; font-size: 0.9375rem; text-decoration: none; transition: all 0.2s; }
.btn-primary, .btn-hero { background: var(--color-primary); color: #fff; }
.btn-primary:hover, .btn-hero:hover { background: var(--color-primary-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(139,92,246,0.3); }
.btn-cta { background: var(--color-accent); color: var(--color-bg); }
.btn-cta:hover { background: #0891b2; text-decoration: none; }
.btn-secondary { background: var(--color-bg-alt); color: var(--color-text); border: 1px solid var(--color-border); }

.intro-section, .features-section, .blog-preview-section, .cta-section, .page-section, .blog-section, .gallery-section { padding: 5rem 0; }
.intro-section { text-align: center; }
.intro-section h2, .features-section h2, .blog-preview-section h2, .cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-heading); }
.intro-section p { font-size: 1.125rem; color: var(--color-text-light); max-width: 680px; margin: 0 auto; }
.features-section { background: var(--color-bg-alt); }
.features-section h2 { text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.feature-card { background: var(--color-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--color-border); transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--color-heading); }
.feature-card p { color: var(--color-text-light); font-size: 0.9375rem; }

.cta-section { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); text-align: center; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.page-title, .section-title { font-size: 2.25rem; font-weight: 700; color: var(--color-heading); margin-bottom: 1.5rem; }
.page-content { font-size: 1.0625rem; line-height: 1.8; }
.page-content p { margin-bottom: 1.25rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.blog-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h2 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.blog-card-body h2 a { color: var(--color-heading); }
.blog-card-body h2 a:hover { color: var(--color-accent); text-decoration: none; }
.blog-card-body p { font-size: 0.9375rem; color: var(--color-text-light); }
.blog-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--color-accent); }
.blog-meta { display: flex; gap: 1rem; margin-top: 0.75rem; font-size: 0.8125rem; color: var(--color-text-light); }

.blog-article { padding: 3rem 0 5rem; }
.article-image { width: 100%; border-radius: 12px; margin-bottom: 2rem; }
.article-title { font-size: 2.25rem; font-weight: 700; color: var(--color-heading); margin-bottom: 1rem; }
.article-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; font-size: 0.875rem; color: var(--color-text-light); }
.article-category { color: var(--color-accent); font-weight: 500; }
.article-content { font-size: 1.0625rem; line-height: 1.8; }
.article-content p { margin-bottom: 1.25rem; }
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-card { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--color-border); text-decoration: none; color: var(--color-text); transition: border-color 0.2s, transform 0.2s; }
.gallery-card:hover { border-color: var(--color-primary); transform: translateY(-2px); text-decoration: none; }
.gallery-card-image { width: 100%; height: 220px; object-fit: cover; }
.gallery-card-placeholder { height: 220px; background: var(--color-bg-alt); }
.gallery-card-info { padding: 1rem; }
.gallery-card-info h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--color-heading); }
.gallery-card-info p { font-size: 0.875rem; color: var(--color-text-light); }

.contact-info { margin-top: 2rem; }
.contact-info p { margin-bottom: 0.5rem; }

.error-section { text-align: center; padding: 8rem 0; }
.error-code { font-size: 6rem; font-weight: 800; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.error-message { font-size: 1.25rem; color: var(--color-text-light); margin: 1rem 0 2rem; }

.site-footer { background: var(--color-bg-alt); color: var(--color-text); padding: 3rem 0; border-top: 1px solid var(--color-border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-copyright { font-size: 0.875rem; color: var(--color-text); }
.footer-text { font-size: 0.8125rem; color: var(--color-text-light); margin-top: 0.25rem; }
.footer-nav { display: flex; gap: 1.25rem; }
.footer-nav a { color: var(--color-text-light); font-size: 0.875rem; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-social a { color: var(--color-text-light); font-size: 0.875rem; }
.footer-social a:hover { color: var(--color-accent); }

.text-muted { color: var(--color-text-light); }

/* Phase 3d – <picture> layout normalisation (see default/style.css for rationale) */
picture { display: contents; }

/* Gallery – Album image grid */
.gallery-images-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.625rem; margin-top: 1.5rem; }
.gallery-image-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; aspect-ratio: 1/1; background: var(--color-bg-alt); margin: 0; }
.gallery-image-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; display: block; }
.gallery-image-item:hover img, .gallery-image-item:focus img { transform: scale(1.05); }
.gallery-image-item:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.gallery-image-item figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: #fff; padding: 2rem 0.75rem 0.625rem; font-size: 0.8125rem; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.gallery-image-item:hover figcaption, .gallery-image-item:focus figcaption { opacity: 1; }

/* Gallery – Lightbox */
.gallery-lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.gallery-lightbox.is-open { opacity: 1; pointer-events: all; }
.gallery-lightbox-inner { position: relative; max-width: min(90vw, 1200px); display: flex; flex-direction: column; align-items: center; padding: 0 4rem; }
.gallery-lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; display: block; box-shadow: 0 8px 40px rgba(0,0,0,0.6); }
.gallery-lightbox-info { margin-top: 0.875rem; text-align: center; min-height: 2.5rem; }
.gallery-lightbox-caption { color: rgba(255,255,255,0.9); font-size: 0.9375rem; margin: 0; }
.gallery-lightbox-counter { color: rgba(255,255,255,0.45); font-size: 0.8125rem; margin-top: 0.25rem; }
.gallery-lightbox-close { position: fixed; top: 1.125rem; right: 1.5rem; background: none; border: none; color: rgba(255,255,255,0.75); font-size: 2.25rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.5rem; transition: color 0.15s; z-index: 9001; }
.gallery-lightbox-close:hover, .gallery-lightbox-close:focus { color: #fff; outline: none; }
.gallery-lightbox-prev, .gallery-lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1.375rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; z-index: 9001; user-select: none; }
.gallery-lightbox-prev { left: 1rem; }
.gallery-lightbox-next { right: 1rem; }
.gallery-lightbox-prev:hover, .gallery-lightbox-next:hover { background: rgba(255,255,255,0.22); }
.gallery-lightbox-prev:disabled, .gallery-lightbox-next:disabled { opacity: 0.2; cursor: default; }

/* Gallery Preview Section (Homepage) */
.gallery-preview-section { padding: 5rem 0; }
.gallery-preview-section h2 { text-align: center; margin-bottom: 2.5rem; }
.gallery-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.gallery-preview-card { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; position: relative; text-decoration: none; background: var(--color-bg-alt); }
.gallery-preview-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-preview-card:hover img { transform: scale(1.05); }
.gallery-preview-placeholder { width: 100%; height: 100%; background: var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-light); font-size: 2rem; }
.gallery-preview-card span { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem 0.75rem; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; font-size: 0.8125rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gallery-preview-cta { text-align: center; }

/* ── Events (Phase 4b) ──────────────────────────────────────────────────── */
.events-section { padding: 4rem 0; }
.events-header { margin-bottom: 2rem; }
.events-category-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.events-category-filter a { padding: 0.3rem 0.85rem; border-radius: 999px; border: 1px solid var(--color-border); color: var(--color-text-light); font-size: 0.875rem; transition: background 0.2s, color 0.2s; }
.events-category-filter a:hover, .events-category-filter a.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); text-decoration: none; }
.events-featured { margin-bottom: 3rem; padding: 2rem; background: var(--color-bg-alt); border-radius: 12px; border: 1px solid var(--color-primary); }
.events-featured-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--color-heading); text-transform: uppercase; letter-spacing: 0.08em; }
.events-featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.events-all-title { font-size: 1rem; font-weight: 700; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card { border-radius: 12px; overflow: hidden; background: var(--color-bg-card); border: 1px solid var(--color-border); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.event-card:hover { box-shadow: 0 8px 24px rgba(139,92,246,0.2); transform: translateY(-2px); }
.event-card picture { display: block; }
.event-card picture img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.event-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.event-card-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; color: var(--color-heading); }
.event-card-body h3 a { color: inherit; }
.event-card-body h3 a:hover { color: var(--color-primary); text-decoration: none; }
.event-card-body p { color: var(--color-text-light); font-size: 0.9rem; line-height: 1.55; }
.event-card--featured { border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }
.event-card--postponed { border-color: #f59e0b; }
.event-card--cancelled { opacity: 0.65; border-color: #ef4444; }
.event-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.8125rem; color: var(--color-text-light); }
.event-date, .event-time, .event-location { white-space: nowrap; }
.event-category { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-accent); }
.event-category a { color: inherit; }
.event-category a:hover { text-decoration: underline; }
.event-status-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.event-status-badge--postponed { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.event-status-badge--cancelled  { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.event-card-link { margin-top: auto; font-size: 0.875rem; font-weight: 700; color: var(--color-primary); }
.event-card-link:hover { text-decoration: underline; }
.event-detail { padding: 4rem 0; }
.event-status-notice { padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 2rem; font-size: 0.95rem; }
.event-status-notice--postponed { background: rgba(245,158,11,0.1); color: #f59e0b; border-left: 3px solid #f59e0b; }
.event-status-notice--cancelled  { background: rgba(239,68,68,0.1); color: #ef4444; border-left: 3px solid #ef4444; }
.event-detail-header { margin-bottom: 2rem; }
.event-detail-header h1 { font-size: 2.5rem; line-height: 1.2; margin: 0.5rem 0 1rem; color: var(--color-heading); }
.event-detail-meta { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; font-size: 0.9375rem; color: var(--color-text-light); }
.event-meta-item { display: flex; align-items: center; gap: 0.4rem; }
.event-meta-icon { font-size: 1rem; }
.event-detail-image { margin-bottom: 2rem; border-radius: 12px; overflow: hidden; }
.event-detail-image picture { display: block; }
.event-detail-image picture img, .event-detail-image img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.event-detail-excerpt { margin-bottom: 1.5rem; font-size: 1.125rem; color: var(--color-text-light); line-height: 1.7; }
.event-detail-content { margin-bottom: 2rem; }
.event-detail-content.prose { line-height: 1.8; }
.event-detail-content.prose p { margin-bottom: 1rem; }
.event-detail-content.prose h2, .event-detail-content.prose h3 { margin: 1.5rem 0 0.75rem; color: var(--color-heading); }
.event-detail-footer { padding-top: 2rem; border-top: 1px solid var(--color-border); }
.btn-back { color: var(--color-text-light); font-size: 0.9375rem; }
.btn-back:hover { color: var(--color-primary); }
.pagination { display: flex; gap: 0.5rem; margin-top: 2rem; justify-content: center; }
.pagination-btn { padding: 0.4rem 0.85rem; border: 1px solid var(--color-border); border-radius: 6px; color: var(--color-text-light); font-size: 0.875rem; background: var(--color-bg-alt); }
.pagination-btn:hover { background: var(--color-bg-card); text-decoration: none; }
.pagination-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
/* ── Events Preview Section (Homepage, Phase 4b.1) ─────────────────────── */
.events-preview-section { padding: 5rem 0; }
.events-preview-section h2 { text-align: center; margin-bottom: 2rem; font-weight: 800; }
.events-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.events-preview-cta { text-align: center; margin-top: 2.5rem; }

/* ── end Events ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-list { display: none; flex-direction: column; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--color-bg); border-bottom: 1px solid var(--color-border); padding: 1rem 1.5rem; gap: 0.75rem; }
    .nav-list.open { display: flex; }
    .hero-title { font-size: 2.25rem; }
    .hero-section { padding: 5rem 0 4rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .gallery-images-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.375rem; }
    .gallery-lightbox-inner { padding: 0 3rem; }
    .gallery-lightbox-prev { left: 0.25rem; }
    .gallery-lightbox-next { right: 0.25rem; }

    /* Typography scaling at tablet */
    .article-title { font-size: 1.875rem; }
    .page-title    { font-size: 1.875rem; }
    .section-title { font-size: 1.625rem; }
    .event-detail-header h1 { font-size: 1.875rem; }
    .download-detail-header h1 { font-size: 1.75rem; }

    /* Section padding at tablet (5rem → 3.5rem) */
    .intro-section, .features-section, .blog-preview-section, .cta-section,
    .page-section, .blog-section, .gallery-section,
    .gallery-preview-section, .events-preview-section { padding: 3.5rem 0; }
    .events-section { padding: 2.5rem 0; }
    .blog-article   { padding: 2rem 0 3.5rem; }
    .event-detail   { padding: 2.5rem 0; }
    .download-detail { padding: 2.5rem 0; }

    /* Hero boxed – reduce card padding on tablet */
    .hero--layout-boxed > .container { padding: 2rem 1.75rem; border-radius: 12px; }
}

/* ── Breadcrumbs (Phase 5.1) ────────────────────────────────────────────── */
.breadcrumbs {
    background: var(--color-bg-alt, #f5f5f5);
    border-bottom: 1px solid var(--color-border, #e0e0e0);
    padding: 0.55rem 0;
    font-size: 0.8125rem;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--color-text-light, #888);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 0.4rem;
    color: var(--color-border, #ccc);
}
.breadcrumb-item a {
    color: var(--color-text-light, #888);
    text-decoration: none;
}
.breadcrumb-item a:hover {
    color: var(--color-primary, #4a6cf7);
    text-decoration: underline;
}
.breadcrumb-item.breadcrumb-current span {
    color: var(--color-text, #333);
    font-weight: 500;
}
@media (max-width: 768px) {
    .breadcrumbs { padding: 0.4rem 0; }
    .breadcrumb-item { font-size: 0.75rem; }
}
/* ── end Breadcrumbs ────────────────────────────────────────────────────── */


/* ── Downloads ──────────────────────────────────────────────────────────── */

/* Archive page */
.downloads-section { padding: 3rem 0; }
.downloads-header { margin-bottom: 2rem; }

/* Search bar */
.downloads-search-form { margin: 1.25rem 0; }
.search-wrap { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.search-input { flex: 1; min-width: 200px; max-width: 360px; padding: 0.5rem 0.85rem; border: 1px solid var(--color-border); border-radius: 6px; font-size: 0.9375rem; background: var(--color-bg-alt); color: var(--color-text); }
.search-btn { padding: 0.5rem 1.1rem; background: var(--color-primary, #4a6cf7); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 0.9rem; }
.search-btn:hover { opacity: 0.9; }
.search-clear { color: var(--color-text-light, #888); font-size: 0.875rem; text-decoration: none; padding: 0.2rem 0.4rem; }

/* Category filter */
.downloads-category-filter { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.downloads-category-filter a { display: inline-block; padding: 0.3rem 0.85rem; border: 1px solid var(--color-border, #ccc); border-radius: 20px; font-size: 0.875rem; color: var(--color-text-light, #666); text-decoration: none; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.downloads-category-filter a:hover { background: var(--color-bg-alt, #f5f5f5); text-decoration: none; }
.downloads-category-filter a.active { background: var(--color-primary, #4a6cf7); color: #fff; border-color: var(--color-primary, #4a6cf7); }

/* Card grid */
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.75rem; }
.download-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s; }
.download-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.download-card-image img, .download-card-image picture img { width: 100%; height: 180px; object-fit: cover; display: block; }
.download-card-image picture { display: block; }
.download-card-placeholder { height: 100px; background: var(--color-bg-alt, #f5f7fa); display: flex; align-items: center; justify-content: center; }
.download-placeholder-ext { font-size: 1.5rem; font-weight: 700; color: var(--color-text-muted, #aaa); letter-spacing: 0.04em; }
.download-card-body { padding: 1rem 1.125rem 1rem; flex: 1; display: flex; flex-direction: column; }
.download-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.download-category a { color: var(--color-primary, #4a6cf7); text-decoration: none; }
.download-category a:hover { text-decoration: underline; }
.download-card-body h3 { font-size: 1.0625rem; margin: 0.4rem 0 0.5rem; line-height: 1.35; }
.download-card-body h3 a { color: var(--color-text, #333); text-decoration: none; }
.download-card-body h3 a:hover { color: var(--color-primary, #4a6cf7); }
.download-excerpt { font-size: 0.875rem; color: var(--color-text-light, #666); line-height: 1.55; flex: 1; margin-bottom: 0.75rem; }
.download-version { font-size: 0.75rem; color: var(--color-accent); background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3); padding: 0.1rem 0.5rem; border-radius: 3px; display: inline-block; margin-bottom: 0.5rem; }
.download-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; padding-top: 0.625rem; border-top: 1px solid var(--color-border, #eee); }
.download-meta { display: flex; align-items: center; gap: 0.4rem; }
.download-ext, .download-ext-badge { font-size: 0.7rem; font-weight: 700; background: var(--color-primary, #4a6cf7); color: #fff; padding: 0.1rem 0.45rem; border-radius: 3px; letter-spacing: 0.03em; }
.download-size { font-size: 0.8125rem; color: var(--color-text-muted, #999); }
.btn-download-detail { font-size: 0.8125rem; color: var(--color-primary, #4a6cf7); font-weight: 600; text-decoration: none; white-space: nowrap; }
.btn-download-detail:hover { text-decoration: underline; }
.download-card-link { font-size: 0.8125rem; color: var(--color-primary, #4a6cf7); font-weight: 600; text-decoration: none; white-space: nowrap; }
.download-card-link:hover { text-decoration: underline; }

/* Detail page */
.download-detail { padding: 3rem 0; }
.download-detail-header { margin-bottom: 1.5rem; }
.download-detail-header h1 { font-size: 2rem; margin: 0.4rem 0 0; line-height: 1.25; }
.download-detail-image { margin-bottom: 2rem; border-radius: 8px; overflow: hidden; }
.download-detail-image img, .download-detail-image picture img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.download-detail-image picture { display: block; }
.download-detail-excerpt { font-size: 1.05rem; color: var(--color-text-light, #666); line-height: 1.65; margin-bottom: 1.5rem; }
.download-detail-content { margin-bottom: 2rem; }
.download-detail-content.prose { line-height: 1.75; }
.download-detail-content.prose p { margin-bottom: 1rem; }
.download-detail-content.prose h2, .download-detail-content.prose h3 { margin: 1.5rem 0 0.75rem; }
.download-cta { margin: 2rem 0; }
.download-file-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 8px; }
.download-file-icon { flex-shrink: 0; }
.download-ext-badge--lg { font-size: 0.875rem; padding: 0.25rem 0.6rem; border-radius: 4px; }
.download-file-info { flex: 1; min-width: 0; }
.download-file-name { display: block; font-weight: 600; font-size: 0.9375rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.download-file-size { display: block; font-size: 0.8125rem; color: var(--color-text-muted, #999); margin-top: 0.15rem; }
.btn-download, .btn.btn-download { display: inline-block; padding: 0.55rem 1.25rem; background: var(--color-primary, #4a6cf7); color: #fff; border-radius: 6px; font-weight: 600; font-size: 0.9rem; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: opacity 0.15s; }
.btn-download:hover { opacity: 0.88; text-decoration: none; }
.download-detail-footer { padding-top: 2rem; border-top: 1px solid var(--color-border, #eee); }
.btn-back { color: var(--color-text-light, #666); text-decoration: none; font-size: 0.9rem; }
.btn-back:hover { color: var(--color-primary, #4a6cf7); text-decoration: underline; }

@media (max-width: 768px) { .downloads-grid { grid-template-columns: 1fr; } .download-file-card { flex-wrap: wrap; } }
/* ── end Downloads ──────────────────────────────────────────────────────── */

/* ── Utility classes ────────────────────────────────────────────────────── */
.section-description { color: var(--color-text-light); font-size: 1.0625rem; margin-bottom: 2rem; line-height: 1.7; }
.section-back { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.feature-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.highlight-grid-section { background: var(--color-bg-alt); }
/* ── end Utility classes ────────────────────────────────────────────────── */

/* ── Contact Form (Phase 11b) ───────────────────────────────────────────── */
.contact-form-section { margin-top: 2.5rem; }
.contact-form-heading { font-size: 1.375rem; font-weight: 700; color: var(--color-heading); margin-bottom: 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-honeypot { display: none; }
.contact-form-group { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-form-label { font-weight: 600; font-size: 0.9375rem; color: var(--color-text); }
.contact-form-input,
.contact-form-textarea { width: 100%; padding: 0.6rem 0.875rem; background: var(--color-bg-alt); color: var(--color-text); border: 1px solid var(--color-border); border-radius: 4px; font-size: 1rem; font-family: inherit; transition: border-color 0.15s; }
.contact-form-input:focus,
.contact-form-textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form-input.is-error,
.contact-form-textarea.is-error { border-color: #ef4444; }
.contact-form-textarea { resize: vertical; }
.contact-form-error { color: #ef4444; font-size: 0.875rem; }
.contact-form-submit { align-self: flex-start; }
.contact-alert { padding: 1rem 1.25rem; border-radius: 6px; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.contact-alert--success { background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3); color: var(--color-accent); }
.contact-alert--error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }
/* ── end Contact Form ───────────────────────────────────────────────────── */

/* ── Hero Presentation System (Phase 12a) ───────────────────────────────── */

/* Overlay via ::after (::before is used for decorative radial-gradient) */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}
/* Container above overlay (::before decorative is behind, text is above ::after) */
.hero-section > .container {
    position: relative;
    z-index: 2;
}
/* Keep ::before decorative behind overlay */
.hero-section::before { z-index: 0; }

/* Text colour modifiers */
.hero--text-light .hero-title,
.hero--text-light .hero-eyebrow,
.hero--text-light .hero-subtitle { color: #fff; }
.hero--text-dark .hero-title,
.hero--text-dark .hero-eyebrow { color: #111; }
.hero--text-dark .hero-subtitle { color: rgba(0,0,0,0.65); }
/* Canonical colour tokens (1.0.10+) */
.hero--text-white .hero-title,
.hero--text-white .hero-eyebrow,
.hero--text-white .hero-subtitle { color: #ffffff; }
.hero--text-black .hero-title,
.hero--text-black .hero-eyebrow,
.hero--text-black .hero-subtitle { color: #000000; }
.hero--text-red .hero-title,
.hero--text-red .hero-eyebrow,
.hero--text-red .hero-subtitle { color: #dc2626; }
.hero--text-green .hero-title,
.hero--text-green .hero-eyebrow,
.hero--text-green .hero-subtitle { color: #16a34a; }
.hero--text-blue .hero-title,
.hero--text-blue .hero-eyebrow,
.hero--text-blue .hero-subtitle { color: #2563eb; }

/* Heading size modifiers */
.hero--hsize-sm .hero-title  { font-size: 2rem; }
.hero--hsize-md .hero-title  { font-size: 2.75rem; }
.hero--hsize-lg .hero-title  { font-size: 4rem; }
.hero--hsize-xl .hero-title  { font-size: 5rem; }

/* Heading weight modifiers */
.hero--hweight-normal .hero-title { font-weight: 400; }
.hero--hweight-medium .hero-title { font-weight: 600; }
.hero--hweight-bold   .hero-title { font-weight: 700; }
.hero--hweight-black  .hero-title { font-weight: 900; }

/* Body text size modifiers */
.hero--body-sm .hero-subtitle { font-size: 1rem; }
.hero--body-md .hero-subtitle { font-size: 1.125rem; }
.hero--body-lg .hero-subtitle { font-size: 1.375rem; }

/* Text alignment modifiers */
.hero--align-left  { text-align: left; }
.hero--align-right { text-align: right; }
.hero--align-left  .hero-subtitle,
.hero--align-left  .hero-eyebrow { margin-left: 0; }
.hero--align-right .hero-subtitle,
.hero--align-right .hero-eyebrow { margin-right: 0; margin-left: auto; }

/* Overlay strength modifiers */
.hero--overlay-light::after  { background: rgba(0,0,0,0.25); }
.hero--overlay-medium::after { background: rgba(0,0,0,0.45); }
.hero--overlay-heavy::after  { background: rgba(0,0,0,0.65); }

/* Height modifiers */
.hero--tall { min-height: 80vh; display: flex; align-items: center; }
.hero--tall > .container { width: 100%; }

/* Layout: full (content stretches to full container width, 1.0.10+) */
.hero--layout-full > .container { max-width: 100%; padding-left: 2rem; padding-right: 2rem; }

/* Layout: boxed (content in a semi-transparent card, 1.0.10+) */
.hero--layout-boxed > .container {
    background: rgba(30,20,60,0.82);
    border-radius: 18px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 40px rgba(139,92,246,0.30);
}

/* Layout: split (text left + portrait right) */
.hero--layout-split > .container { max-width: var(--container-width, 1140px); }
.hero-split-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.hero-text { flex: 1; min-width: 0; }
.hero-portrait-wrap { flex: 0 0 auto; }

/* Portrait style modifiers */
.hero--portrait-circle  .hero-portrait { border-radius: 50%; }
.hero--portrait-rounded .hero-portrait { border-radius: 1.5rem; }
.hero--portrait-square  .hero-portrait { border-radius: 0; }
.hero-portrait {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(139,92,246,0.25);
}
/* Portrait shadow style modifiers */
.hero--portrait-elevated .hero-portrait { box-shadow: 0 16px 64px rgba(139,92,246,0.4); }
.hero--portrait-flat      .hero-portrait { box-shadow: none; }

/* CTA container */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.75rem;
    justify-content: center;
}
.hero--align-left  .hero-ctas { justify-content: flex-start; }
.hero--align-right .hero-ctas { justify-content: flex-end; }

/* CTA layout: stacked */
.hero--cta-stacked .hero-ctas { flex-direction: column; align-items: center; max-width: 260px; margin-left: auto; margin-right: auto; }
.hero--align-left.hero--cta-stacked  .hero-ctas { align-items: flex-start; margin-left: 0; }
.hero--align-right.hero--cta-stacked .hero-ctas { align-items: flex-end; margin-right: 0; }
.hero--cta-stacked .hero-ctas .btn { width: 100%; text-align: center; }

/* Eyebrow text */
.hero-eyebrow {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    position: relative;
}

/* Responsive – Hero Presentation */
@media (max-width: 768px) {
    .hero--hsize-xl .hero-title { font-size: 2.75rem; }
    .hero--hsize-lg .hero-title { font-size: 2.25rem; }
    .hero-split-inner { flex-direction: column; gap: 2rem; text-align: center; }
    .hero--layout-split { text-align: center; }
    .hero--layout-split .hero-ctas { justify-content: center; }
    .hero-portrait { width: 200px; height: 200px; }
    .hero--cta-stacked .hero-ctas { max-width: 100%; margin-left: auto; margin-right: auto; }
}

/* Responsive – improved section/grid fixes */
@media (max-width: 480px) {
    .blog-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .events-preview-grid { grid-template-columns: 1fr; }
    .events-featured-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-section { padding: 3.5rem 0 3rem; }

    /* Section padding on small mobile (fix: use actual classes, not .section) */
    .intro-section, .features-section, .blog-preview-section, .cta-section,
    .page-section, .blog-section, .gallery-section,
    .gallery-preview-section, .events-preview-section { padding: 2.5rem 0; }
    .events-section { padding: 2rem 0; }
    .blog-article   { padding: 1.5rem 0 2.5rem; }
    .event-detail   { padding: 2rem 0; }
    .download-detail { padding: 2rem 0; }

    /* Typography on small mobile */
    .article-title { font-size: 1.5rem; }
    .page-title    { font-size: 1.5rem; }
    .section-title { font-size: 1.375rem; }
    .event-detail-header h1 { font-size: 1.5rem; }
    .download-detail-header h1 { font-size: 1.4375rem; }

    /* Error / 404 */
    .error-section { padding: 4rem 0; }
    .error-code    { font-size: 4rem; }

    /* Hero boxed – minimal padding on phone */
    .hero--layout-boxed > .container { padding: 1.5rem 1.25rem; border-radius: 12px; }
}
/* ── end Hero Presentation System ───────────────────────────────────────── */

/* ── Phase 14: Accessibility Foundations ─────────────────────────────────── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.15s;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[tabindex="0"]:focus:not(:focus-visible) {
    outline: none;
}

/* Lightbox close: restore focus visibility (was outline:none) */
.gallery-lightbox-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    color: #fff;
}

.contact-form-input:focus-visible,
.contact-form-textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 0;
    border-color: var(--color-primary);
}

/* ── end Accessibility Foundations ───────────────────────────────────────── */

/* ── Section Presentation Tokens (Phase 21) ──────────────────────────────── */
/* empty = theme default; these override only when explicitly set by admin    */

/* Color schemes */
.section--scheme-alt { background: var(--color-bg-alt) !important; }
.section--scheme-primary { background: var(--color-primary) !important; }
.section--scheme-primary h2,
.section--scheme-primary p { color: #fff !important; }
.section--scheme-dark { background: var(--color-bg) !important; }
.section--scheme-dark h2 { color: var(--color-heading) !important; }
.section--scheme-dark p { color: var(--color-text) !important; }
.section--scheme-none { background: transparent !important; }

/* Alignment override */
.section--align-left { text-align: left !important; }
.section--align-left h2 { text-align: left !important; }
.section--align-left p { margin-left: 0 !important; max-width: none !important; }

/* Card style variants */
.section--card-bordered .feature-card { border: 1px solid var(--color-border) !important; box-shadow: none !important; }
.section--card-flat .feature-card { box-shadow: none !important; background: transparent !important; border: none !important; }

/* feature-card-icon: normalize icon display */
.feature-card-icon { font-size: 2rem; margin-bottom: .5rem; }

/* ── end Section Presentation Tokens ─────────────────────────────────────── */
