/* ============================================================
   SGXVPN Theme — Main Stylesheet
   Colors derived from the SGX app (dark, #61a0ff accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
    --color-bg: #000000;
    --color-bg-2: #0a0a0a;
    --color-surface: rgba(28, 28, 30, 0.85);
    --color-surface-2: rgba(38, 38, 42, 0.7);
    --color-accent: #61a0ff;
    --color-accent-glow: rgba(97, 160, 255, 0.25);
    --color-accent-2: #a78bfa;
    --color-text: #ffffff;
    --color-text-muted: rgba(255,255,255,0.5);
    --color-border: rgba(255,255,255,0.12);
    --color-border-hover: rgba(97,160,255,0.4);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --font-main: 'Nunito', 'Inter', sans-serif;
    --shadow-glow: 0 0 40px rgba(97,160,255,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Background mesh ── */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(97,160,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(167,139,250,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 40%, rgba(97,160,255,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Glassmorphism card ── */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    pointer-events: none;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.container--narrow { max-width: 800px; }

/* ================================================================
   HEADER / NAV
================================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
    background: rgba(0,0,0,0.97);
    border-bottom-color: rgba(255,255,255,0.15);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.site-branding img {
    width: 80px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
}
.site-logo-wide {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 280px;
}
.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.current-menu-item {
    color: #fff;
    background: rgba(97,160,255,0.12);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: #000 !important;
    font-weight: 800 !important;
    padding: 9px 22px !important;
    border-radius: var(--radius-md) !important;
}
.nav-cta:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(97,160,255,0.4);
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 42px; height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ================================================================
   HERO
================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(97,160,255,0.1);
    border: 1px solid rgba(97,160,255,0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    white-space: nowrap;
}
.hero-title .accent { color: var(--color-accent); display: block; }
.hero-title .accent-2 { color: var(--color-accent-2); display: block; }
.hero-title .line-1 { display: block; color: #fff; }
.hero-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
    font-family: var(--font-main);
}
.btn-primary {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 4px 30px rgba(97,160,255,0.35);
}
.btn-primary:hover { background: #fff; color: #000; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(97,160,255,0.4); }
.btn-secondary {
    background: var(--color-surface-2);
    color: #fff;
    border: 1px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}
.hero-stat .num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.hero-stat .num span { color: var(--color-accent); }
.hero-stat .label { font-size: 13px; color: var(--color-text-muted); font-weight: 600; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-phone-mockup {
    width: 280px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 40px;
    padding: 24px;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    position: relative;
}
.hero-phone-mockup::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px; right: -60px; bottom: -60px;
    background: radial-gradient(circle, rgba(97,160,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: float-glow 4s ease-in-out infinite;
}
@keyframes float-glow {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}
.mockup-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 16px;
}
.mockup-logo img { width: 28px; height: 28px; border-radius: 7px; }
.mockup-connected {
    background: rgba(52,211,153,0.15);
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #34d399;
}
.mockup-server-card {
    background: rgba(97,160,255,0.08);
    border: 1px solid rgba(97,160,255,0.2);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}
.mockup-server-card .flag { font-size: 24px; }
.mockup-server-card .name { font-weight: 800; font-size: 15px; margin: 8px 0 4px; }
.mockup-server-card .speed { font-size: 12px; color: var(--color-text-muted); }
.mockup-speed-bars {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}
.speed-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(97,160,255,0.2);
}
.speed-bar.active { background: var(--color-accent); }

/* ================================================================
   SECTION TITLES
================================================================ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-title .accent { color: var(--color-accent); }
.section-desc {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ================================================================
   FEATURES
================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ================================================================
   SERVERS
================================================================ */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.server-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
    cursor: default;
}
.server-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 0 30px rgba(97,160,255,0.12), var(--shadow-card);
}
.server-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.server-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(97,160,255,0.08);
    border: 1px solid rgba(97,160,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    color: var(--color-accent);
}
.server-icon--img {
    background: transparent;
    border-color: transparent;
}
.server-icon img { width: 50px; height: 50px; object-fit: contain; background: none; }
.server-info { flex: 1; min-width: 0; }
.server-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.server-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.server-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}
.server-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-accent);
}
.server-price span { font-size: 13px; font-weight: 600; color: var(--color-text-muted); }
.server-badge {
    background: rgba(97,160,255,0.1);
    border: 1px solid rgba(97,160,255,0.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
}

/* ================================================================
   BLOG / NEWS
================================================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.post-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    overflow: hidden;
}
.post-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.post-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(97,160,255,0.05);
    border-bottom: 1px solid var(--color-border);
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.post-cat {
    background: rgba(97,160,255,0.1);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post-date { font-size: 12px; color: var(--color-text-muted); }
.post-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}
.post-title a { color: #fff; transition: color 0.2s; }
.post-title a:hover { color: var(--color-accent); }
.post-excerpt {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-read-more {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 4px;
}
.post-read-more::after { content: '→'; transition: transform 0.2s; }
.post-card:hover .post-read-more::after { transform: translateX(4px); }

/* ================================================================
   YOUTUBE VIDEOS
================================================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.video-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    overflow: hidden;
}
.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.video-embed-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
    background: #000;
}
.video-embed-wrap iframe {
    width: 100%; height: 100%;
    border: none;
    display: block;
}
.video-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s;
    cursor: pointer;
}
.video-thumb-overlay:hover { background: rgba(0,0,0,0.2); }
.play-btn {
    width: 64px; height: 64px;
    background: rgba(97,160,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.video-card:hover .play-btn { transform: scale(1.1); background: var(--color-accent); }
.play-btn svg { fill: #000; margin-left: 4px; }
.video-info { padding: 20px; }
.video-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}
.video-date { font-size: 12px; color: var(--color-text-muted); }

/* ================================================================
   SINGLE POST
================================================================ */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding: 120px 0 80px;
}
.post-header { margin-bottom: 40px; }
.post-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--color-border);
}
.post-featured-img img { width: 100%; }
.post-body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}
.post-body h2, .post-body h3 {
    font-weight: 800;
    margin: 40px 0 16px;
    color: #fff;
}
.post-body h2 { font-size: 28px; }
.post-body h3 { font-size: 22px; }
.post-body p { margin-bottom: 20px; }
.post-body a { color: var(--color-accent); }
.post-body img { border-radius: var(--radius-md); margin: 24px 0; border: 1px solid var(--color-border); }
.post-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(97,160,255,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}
.post-body code {
    background: rgba(97,160,255,0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--color-accent);
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { padding: 24px; }
.sidebar-widget h3 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 60px 0 32px;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
}
.social-link:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(97,160,255,0.1); }
.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--color-text-muted); }

/* ================================================================
   ARCHIVE / BLOG PAGE
================================================================ */
.archive-layout { padding: 0 0 80px; }
.archive-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ================================================================
   PAGINATION
================================================================ */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 60px;
}
.pagination a, .pagination span {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(97,160,255,0.1);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .post-layout, .archive-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .site-nav { display: none; }
    .site-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid var(--color-border);
        padding: 24px 20px;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }
    .site-nav.open a {
        font-size: 18px;
        padding: 14px 16px;
    }
    .site-nav.open .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }
    .admin-bar .site-nav.open { top: 126px; }
    .hamburger { display: flex; }
    .features-grid, .posts-grid, .videos-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .site-logo-wide { height: 44px; }
}

/* ================================================================
   WP ADMIN BAR OFFSET
================================================================ */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}

/* ================================================================
   UTILITY
================================================================ */
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.view-all-wrap { text-align: center; margin-top: 48px; }
