/* ── DESIGN TOKENS ── */
:root {
    --ink: #0d0d0b; --ink-mid: #1c1c19; --ink-soft: #3a3a35;
    --dust: #f5f3ef; --dust-mid: #ece9e3; --dust-dark: #d4d0c8;
    --paper: #faf9f6; --ember: #c8390f; --ember-dim: #9e2c0b;
    --gold: #b8972a;
    --rule: 1px solid rgba(13,13,11,.1);
    --rule-bold: 2px solid #0d0d0b;
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
    --ff-mono: 'DM Mono', 'Courier New', monospace;
    --ease: cubic-bezier(.22,.68,0,1.2);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }

/* DATE BAR */
.gv-datebar { background: var(--dust-mid); border-bottom: var(--rule); padding: 5px 0; }
.gv-datebar-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.gv-datebar-left { font-family: var(--ff-mono); font-size: 10px; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; }
.gv-datebar-right { display: flex; gap: 20px; }
.gv-datebar-right a { font-family: var(--ff-mono); font-size: 10px; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; transition: color .15s; }
.gv-datebar-right a:hover { color: var(--ember); }
@media (max-width: 640px) { .gv-datebar { display: none; } }

/* HEADER */
.gv-header { background: var(--paper); border-bottom: var(--rule-bold); position: sticky; top: 0; z-index: 900; contain: layout style; }
.gv-wrap { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.gv-header-brand { display: flex; align-items: center; justify-content: space-between; height: 68px; border-bottom: var(--rule); }
.gv-logo { display: flex; align-items: center; flex-shrink: 0; }
.gv-logo img { height: 40px; width: auto; object-fit: contain; display: block; }
.gv-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.gv-header-search { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px; border: 1px solid var(--dust-dark); background: var(--dust); font-family: var(--ff-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-soft); cursor: pointer; transition: border-color .15s, color .15s, background .15s; white-space: nowrap; }
.gv-header-search i { font-size: 12px; }
.gv-header-search:hover { border-color: var(--ink); color: var(--ink); background: var(--dust-mid); }
.gv-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.gv-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .25s, opacity .25s; }
.gv-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gv-hamburger.open span:nth-child(2) { opacity: 0; }
.gv-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) { .gv-hamburger { display: flex; } .gv-header-search span { display: none; } .gv-header-search { padding: 0 12px; } }
@media (max-width: 400px) { .gv-header-search { display: none; } }

.gv-nav { display: flex; align-items: center; }
.gv-nav-links { display: flex; gap: 0; flex-wrap: nowrap; }
.gv-nav-links a { display: block; padding: 10px 15px; font-family: var(--ff-mono); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 2px solid transparent; white-space: nowrap; transition: color .15s, border-color .15s; }
.gv-nav-links a:hover, .gv-nav-links a.active { color: var(--ink); border-bottom-color: var(--ember); }
@media (max-width: 900px) { .gv-nav { display: none; } }

/* CATEGORY BAR */
.gv-catbar { background: var(--ink); border-bottom: 2px solid var(--ember); overflow: hidden; position: relative; }
.gv-catbar-inner { display: flex; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
.gv-catbar-inner::-webkit-scrollbar { display: none; }
.gv-catbar-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 9px 32px; flex-shrink: 0; cursor: pointer; border-right: 1px solid rgba(255,255,255,.06); transition: background .15s; text-decoration: none; min-height: 52px; justify-content: center; }
.gv-catbar-item:hover { background: rgba(200,57,15,.25); }
.gv-catbar-item img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; opacity: .75; }
.gv-catbar-item i { color: rgba(255,255,255,.4); font-size: 12px; }
.gv-catbar-item span { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); white-space: nowrap; }
.gv-catbar-item:hover span { color: #fff; }
.gv-catbar-arrow { position: absolute; top: 0; bottom: 0; width: 36px; display: flex; align-items: center; justify-content: center; background: linear-gradient(to right, var(--ink) 50%, transparent); cursor: pointer; border: none; color: #b0b0b0; font-size: 12px; z-index: 5; transition: color .15s; }
.gv-catbar-arrow:hover { color: #fff; }
.gv-catbar-arrow.right { left: auto; right: 0; background: linear-gradient(to left, var(--ink) 50%, transparent); }
@media (max-width: 768px) { .gv-catbar { display: none; } }

/* MOBILE DRAWER */
.gv-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 990; }
.gv-overlay.open { display: block; }
.gv-drawer { position: fixed; top: 0; left: -320px; width: min(300px, 88vw); height: 100vh; height: 100dvh; overflow-y: auto; overflow-x: hidden; z-index: 999; transition: left .3s var(--ease); will-change: left; background: var(--ink); -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding-bottom: calc(20px + var(--safe-bottom)); }
.gv-drawer.open { left: 0; }
.gv-drawer::-webkit-scrollbar { width: 3px; }
.gv-drawer::-webkit-scrollbar-thumb { background: var(--ember); }
.gv-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08); position: sticky; top: 0; background: var(--ink); z-index: 1; min-height: 64px; }
.gv-drawer-head img { height: 34px; width: auto; object-fit: contain; display: block; }
.gv-drawer-close { background: none; border: none; color: #b0b0b0; font-size: 28px; cursor: pointer; line-height: 1; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: color .15s; -webkit-tap-highlight-color: transparent; }
.gv-drawer-close:hover { color: var(--ember); }
.gv-drawer-section { padding: 14px 20px 6px; font-family: var(--ff-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.gv-drawer-link { display: flex; align-items: center; gap: 12px; padding: 0 20px; min-height: 48px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; border-left: 2px solid transparent; transition: background .15s, border-color .15s, color .15s; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.gv-drawer-link i { width: 18px; text-align: center; color: var(--ember); font-size: 13px; flex-shrink: 0; }
.gv-drawer-link:hover, .gv-drawer-link:active { background: rgba(255,255,255,.05); border-left-color: var(--ember); color: #fff; }
.gv-drawer-social { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 20px 24px; }
.gv-drawer-social a { display: flex; align-items: center; gap: 7px; padding: 10px 14px; min-height: 44px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 2px; color: rgba(255,255,255,.7); font-size: 13px; transition: background .15s, border-color .15s, color .15s; -webkit-tap-highlight-color: transparent; }
.gv-drawer-social a:hover { background: var(--ember); border-color: var(--ember); color: #fff; }

/* MAIN */
.gv-main { min-height: 80vh; }

/* FOOTER */
.gv-footer { background: var(--ink); border-top: var(--rule-bold); padding: 56px 0 0; color: rgba(255,255,255,.65); content-visibility: auto; containment-intrinsic-size: 1px 600px; }
.gv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.gv-footer-brand { font-family: var(--ff-display); font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.gv-footer-brand em { color: var(--ember); font-style: normal; }
.gv-footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; color: #b0b0b0; }
.gv-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.gv-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 14px; transition: background .15s, border-color .15s, color .15s; }
.gv-footer-social a:hover { background: var(--ember); border-color: var(--ember); color: #fff; }
.gv-footer-heading { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.gv-footer-links { display: flex; flex-direction: column; gap: 10px; }
.gv-footer-links a { font-size: 13px; color: #b0b0b0; display: flex; align-items: center; gap: 8px; transition: color .15s; min-height: 32px; }
.gv-footer-links a::before { content: ''; display: block; width: 14px; height: 1px; background: var(--ember); flex-shrink: 0; opacity: .5; transition: opacity .15s, width .15s; }
.gv-footer-links a:hover { color: #fff; }
.gv-footer-links a:hover::before { opacity: 1; width: 20px; }
.gv-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--ff-mono); font-size: 10px; letter-spacing: .06em; color: rgba(255,255,255,.25); text-transform: uppercase; }
@media (max-width: 900px) { .gv-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 576px) { .gv-footer-grid { grid-template-columns: 1fr; } .gv-footer-bottom { flex-direction: column; gap: 8px; text-align: center; } .gv-footer { padding: 40px 0 0; } }

/* BOTTOM NAV */
.gv-bottom-nav { display: none; background: var(--paper); border-top: var(--rule-bold); position: fixed; bottom: 0; left: 0; right: 0; z-index: 888; }
.gv-bottom-nav-inner { display: flex; justify-content: space-around; align-items: stretch; }
.gv-bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 4px; font-family: var(--ff-mono); font-size: 9px; letter-spacing: .04em; color: var(--ink-soft); text-decoration: none; border-radius: 0; transition: color .15s; }
.gv-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-family: var(--ff-mono); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); padding: 4px 8px; min-width: 52px; min-height: 44px; transition: color .15s; -webkit-tap-highlight-color: transparent; }
.gv-bottom-nav a i { font-size: 20px; margin-bottom: 1px; }
.gv-bottom-nav a.active, .gv-bottom-nav a:hover { color: var(--ember); }
.gv-bottom-nav a:active { background: var(--dust); border-radius: 6px; }
@media (max-width: 768px) { .gv-bottom-nav { display: block; } body { padding-bottom: calc(60px + var(--safe-bottom)); } }

/* GLOBAL UTILITIES */
.container { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.gv-label { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.gv-label-text { font-family: var(--ff-display); font-size: 19px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.gv-label-rule { flex: 1; height: 1px; background: var(--dust-dark); }
.gv-label-link { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; color: var(--ember); text-transform: uppercase; white-space: nowrap; }
.gv-label-link:hover { color: var(--ember-dim); }
.news-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } .gv-wrap, .container { padding: 0 16px; } }
.pagination-wrap { padding: 32px 0; display: flex; justify-content: center; }
.pagination { display: flex; gap: 6px; flex-wrap: wrap; }
.page-item { padding: 8px 14px; border: 1px solid var(--dust-dark); font-family: var(--ff-mono); font-size: 12px; color: var(--ink-soft); cursor: pointer; transition: all .15s; background: var(--paper); min-height: 40px; display: flex; align-items: center; }
.page-item:hover, .page-item.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb span { color: var(--ink); }
.breadcrumb .sep { color: var(--dust-dark); }
.live-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--ember); color: #fff; font-family: var(--ff-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; }
.live-badge .dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: gv-blink 1.1s ease-in-out infinite; }
@keyframes gv-blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.sidebar-widget { border: var(--rule-bold); background: var(--paper); margin-bottom: 28px; }
.widget-title { background: var(--ink); color: #fff; font-family: var(--ff-display); font-size: 14px; font-weight: 700; padding: 11px 16px; }
.sidebar-list { padding: 0; }
.sidebar-list li { border-bottom: var(--rule); }
.sidebar-list li:last-child { border-bottom: none; }
.widget-news-item { display: block; padding: 11px 14px; font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.45; transition: background .15s; }
.widget-news-item:hover { background: var(--dust); color: var(--ember); }
.article-main { background: var(--paper); border: var(--rule-bold); padding: 32px; }
.article-image { width: 100%; margin: 20px 0; }
.article-meta { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 20px; padding-bottom: 14px; border-bottom: var(--rule); display: flex; flex-wrap: wrap; gap: 12px 20px; text-transform: uppercase; }
.article-body { font-size: 16px; line-height: 1.85; }
.article-body h2, .article-body h3 { font-family: var(--ff-display); margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; }
@media (max-width: 576px) { .article-main { padding: 20px 16px; } .article-body { font-size: 15px; } }
.gallery-card { display: block; position: relative; overflow: hidden; border: var(--rule-bold); }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; background: linear-gradient(to top, rgba(13,13,11,.85), transparent); color: #fff; }
.gallery-overlay h4 { font-family: var(--ff-display); font-size: 15px; font-weight: 700; }
.card, .news-card { background: var(--paper); border: var(--rule-bold); overflow: hidden; display: flex; flex-direction: column; }
.card-image { overflow: hidden; aspect-ratio: 16/10; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-image img, .news-card:hover .card-image img { transform: scale(1.05); }
.card-content { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; line-height: 1.4; }
.card-meta { font-family: var(--ff-mono); font-size: 10px; color: var(--ink-soft); margin-top: 10px; letter-spacing: .06em; text-transform: uppercase; }
.news-category { position: absolute; bottom: 0; left: 0; background: var(--ink); color: #fff; font-family: var(--ff-mono); font-size: 9px; letter-spacing: .1em; padding: 4px 10px; text-transform: uppercase; }
.related-section { margin-top: 40px; }
.section-title { font-family: var(--ff-display); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.section-header h2 { font-family: var(--ff-display); font-size: 20px; font-weight: 700; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }