/* === NAVIGATION === */
.site-header {
  background: var(--bj-black);
  border-bottom: 1px solid var(--bj-border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bj-gold);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo span { color: var(--bj-white); }

/* Primary Nav */
.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.primary-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bj-white-50);
  transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--bj-gold); }

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--bj-border-mid);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--bj-gold);
}
.menu-toggle svg { display: block; }

/* Search */
.nav-search-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--bj-border-mid);
  border-radius: 50%;
  background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-search-btn:hover { border-color: var(--bj-gold); }
.nav-search-btn svg { width: 14px; height: 14px; stroke: var(--bj-gold); fill: none; stroke-width: 2; }

/* Mobile nav open */
@media (max-width: 900px) {
  .menu-toggle { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bj-gold); }
  .primary-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(10,10,15,0.97);
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 190;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { display: block; padding: 1rem 0; font-size: 15px; border-bottom: 1px solid var(--bj-border); }
}

/* === NEW3 BAR（ヒーロー直下・新着3件横並び） === */
.new3-bar {
  background: var(--bj-black-mid);
  border-top: 1px solid var(--bj-border);
  border-bottom: 1px solid var(--bj-border);
}
.new3-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  min-height: 64px;
}
.new3-bar-label {
  flex-shrink: 0;
  background: var(--bj-gold);
  color: var(--bj-black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
.new3-bar-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .new3-bar-items { grid-template-columns: 1fr; }
}
.new3-bar-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0.75rem 1.25rem;
  border-left: 1px solid var(--bj-border);
  text-decoration: none;
  transition: background 0.2s;
}
.new3-bar-item:hover { background: rgba(200,170,100,0.05); }
.new3-bar-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bj-gold);
}
.new3-bar-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--bj-white);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.new3-bar-item:hover .new3-bar-title { color: var(--bj-gold); }
.new3-bar-date {
  font-size: 10px;
  color: var(--bj-white-35);
}

/* === CATEGORY NAV BAR（注目記事直下） === */
.cat-nav-bar {
  background: var(--bj-black-mid);
  border-bottom: 1px solid var(--bj-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-bar::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  gap: 0;
  white-space: nowrap;
}

.cat-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.85rem 1.25rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bj-white-40);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-nav-item:hover {
  color: var(--bj-white);
  border-bottom-color: var(--bj-border-str);
}
.cat-nav-item.is-all {
  color: var(--bj-gold);
  border-bottom-color: var(--bj-gold);
}
.cat-nav-count {
  font-size: 9px;
  font-weight: 400;
  color: var(--bj-white-25);
  font-family: var(--font-sans);
}

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bj-black);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.92) 40%, rgba(10,10,15,0.3) 100%);
}

/* Lane graphic */
.hero-lane-graphic {
  position: absolute;
  right: 15%;
  top: 0; bottom: 0;
  width: 160px;
  pointer-events: none;
  opacity: 0.07;
}
.hero-lane-graphic::before,
.hero-lane-graphic::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--bj-gold);
}
.hero-lane-graphic::before { left: 0; }
.hero-lane-graphic::after  { right: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--bj-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--bj-white);
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--bj-gold); font-style: normal; }

.hero-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 12px;
  color: var(--bj-white-40);
}

.hero-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bj-white-70);
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bj-gold);
  color: var(--bj-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; color: var(--bj-black); }
.btn-primary svg { width: 15px; height: 15px; stroke: var(--bj-black); fill: none; stroke-width: 2.5; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bj-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--bj-border-str);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: var(--bj-gold-light); border-color: var(--bj-gold); }

/* === SECTION HEADER === */
.section-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bj-white);
}
.section-title span { color: var(--bj-gold); }

.section-more {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bj-white-40);
  text-decoration: none;
  border-bottom: 1px solid var(--bj-border-str);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.section-more:hover { color: var(--bj-gold); border-color: var(--bj-gold); }

/* === FEATURED GRID === */
.featured-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2px;
  background: var(--bj-border);
}

.featured-main,
.featured-side { background: var(--bj-black-mid); }

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bj-border);
}

.card {
  position: relative;
  background: var(--bj-black-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.card:hover { background: #141422; }

.card-thumbnail {
  position: relative;
  overflow: hidden;
}
.card-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-thumbnail img { transform: scale(1.04); }
.card-thumbnail-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1208, #0d0d1a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-thumbnail-placeholder svg { opacity: 0.1; }

.featured-main .card-thumbnail,
.featured-main .card-thumbnail-placeholder { aspect-ratio: 4/3; }

.card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.featured-main .card-body { padding: 1.5rem 2rem 2rem; }

.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 0.6rem;
  display: block;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--bj-white);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.featured-main .card-title { font-size: 21px; }
.card:hover .card-title { color: var(--bj-gold); }

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 11px;
  color: var(--bj-white-40);
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-side { gap: 2px; }
}

/* === NEWS LIST + SIDEBAR === */
.news-sidebar-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .news-sidebar-wrap { grid-template-columns: 1fr; }
}

/* News items */
.news-list { display: flex; flex-direction: column; }

.news-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bj-border);
  cursor: pointer;
  transition: opacity 0.2s;
}
.news-item:first-child { padding-top: 0; }
.news-item:hover { opacity: 0.8; }

.news-thumb {
  width: 90px;
  height: 66px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bj-black-card);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }

.news-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 4px;
  display: block;
}
.news-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bj-white);
  margin-bottom: 6px;
}
.news-date { font-size: 11px; color: var(--bj-white-35); }

/* === RANKING SECTION === */
.ranking-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,170,100,0.1);
}

.rank-item {
  background: var(--bj-black-mid);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
  cursor: pointer;
}
.rank-item:hover { background: #141422; }

.rank-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: rgba(200,170,100,0.12);
  line-height: 1;
  min-width: 42px;
  transition: color 0.2s;
}
.rank-num.is-top { color: rgba(200,170,100,0.45); }

.rank-name  { font-size: 15px; font-weight: 700; color: var(--bj-white); margin-bottom: 4px; }
.rank-detail{ font-size: 11px; color: var(--bj-white-40); margin-bottom: 8px; }
.rank-score {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bj-gold);
}
.rank-score small { font-size: 11px; color: var(--bj-white-40); font-family: var(--font-sans); font-weight: 400; margin-left: 2px; }

@media (max-width: 900px) {
  .ranking-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ranking-grid { grid-template-columns: 1fr; }
}

/* === SIDEBAR WIDGETS === */
.widget { margin-bottom: 2.5rem; }

.widget-title,
h2.widget-title,
h3.widget-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bj-gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bj-border-mid);
  margin-bottom: 1rem;
}

/* デフォルトウィジェット内のリンク・リストをテーマに合わせる */
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,170,100,0.06);
  font-size: 13px;
}
.widget ul li a {
  color: var(--bj-white-50);
  text-decoration: none;
  transition: color 0.2s;
}
.widget ul li a:hover { color: var(--bj-gold); }

.sidebar-player {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,170,100,0.07);
  cursor: pointer;
  transition: opacity 0.2s;
}
.sidebar-player:hover { opacity: 0.75; }

.player-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bj-black-card);
  border: 1px solid var(--bj-border-mid);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-avatar img { width: 100%; height: 100%; object-fit: cover; }

.player-name   { font-size: 13px; font-weight: 700; color: var(--bj-white); margin-bottom: 2px; }
.player-detail { font-size: 11px; color: var(--bj-white-40); }

/* Next event box */
.next-event-box {
  background: var(--bj-black-card);
  border: 1px solid var(--bj-border-mid);
  padding: 1rem 1.25rem;
}
.next-event-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bj-gold); margin-bottom: 6px; }
.next-event-name  { font-size: 16px; font-weight: 700; color: var(--bj-white); margin-bottom: 4px; }
.next-event-date  { font-size: 13px; color: var(--bj-white-50); margin-bottom: 10px; }
.next-event-venue { font-size: 12px; color: var(--bj-white-40); }

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-item {
  font-size: 10px;
  padding: 5px 10px;
  border: 1px solid var(--bj-border-mid);
  color: var(--bj-white-50);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.tag-item:hover,
.tag-item.is-active { color: var(--bj-gold); border-color: var(--bj-border-str); }

/* === SINGLE ARTICLE === */
.single-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

@media (max-width: 1000px) {
  .single-wrap { grid-template-columns: 1fr; }
}

.entry-header { margin-bottom: 2rem; }
.entry-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 1rem;
  display: block;
}
.entry-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--bj-white);
  margin-bottom: 1.25rem;
}
.entry-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 12px;
  color: var(--bj-white-40);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bj-border);
  margin-bottom: 2rem;
}

.entry-thumbnail {
  margin-bottom: 2rem;
  overflow: hidden;
}
.entry-thumbnail img { width: 100%; border: 1px solid var(--bj-border); }

.entry-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bj-border);
  font-size: 13px;
  color: var(--bj-white-40);
  font-style: italic;
}

/* Related posts */
.related-posts { margin-top: 4rem; }
.related-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bj-white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bj-border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }

/* === ARCHIVE / CATEGORY PAGE === */
.archive-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
}
@media (max-width: 900px) { .archive-wrap { grid-template-columns: 1fr; } }

.archive-header {
  padding: 2rem;
  background: var(--bj-black-card);
  border-bottom: 2px solid var(--bj-gold);
  margin-bottom: 2rem;
}
.archive-category-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bj-white);
}
.archive-count { font-size: 13px; color: var(--bj-white-40); margin-top: 4px; }

.archive-list { display: flex; flex-direction: column; gap: 2px; background: var(--bj-border); }
.archive-item {
  background: var(--bj-black-mid);
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  transition: background 0.2s;
}
.archive-item:hover { background: #141422; }

.archive-thumb { width: 120px; height: 80px; flex-shrink: 0; overflow: hidden; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }

.archive-body { flex: 1; }
.archive-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; line-height: 1.5; color: var(--bj-white); margin-bottom: 6px; transition: color 0.2s; }
.archive-item:hover .archive-title { color: var(--bj-gold); }
.archive-excerpt { font-size: 13px; color: var(--bj-white-50); line-height: 1.6; margin-bottom: 8px; }
.archive-meta { font-size: 11px; color: var(--bj-white-35); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 2.5rem;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  font-size: 13px;
  color: var(--bj-white-50);
  border: 1px solid var(--bj-border);
  transition: all 0.2s;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--bj-gold);
  color: var(--bj-black);
  border-color: var(--bj-gold);
}

/* === FOOTER === */
.site-footer {
  background: var(--bj-black-deep);
  border-top: 1px solid var(--bj-border);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bj-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo span { color: var(--bj-white); }
.footer-desc { font-size: 13px; line-height: 1.8; color: var(--bj-white-40); margin-bottom: 1.5rem; }

.footer-sns { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-sns-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--bj-border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--bj-white-40);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-sns-btn:hover {
  color: var(--bj-gold);
  border-color: var(--bj-gold);
  background: rgba(200,170,100,0.08);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-white-50);
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bj-border);
}
.footer-col-link {
  display: block;
  font-size: 13px;
  color: var(--bj-white-35);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col-link:hover { color: var(--bj-gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(200,170,100,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy, .footer-credit { font-size: 11px; color: var(--bj-white-25); }

/* === SEARCH FORM === */
.search-form-wrap { padding: 1rem 0; }
.search-form {
  display: flex;
  background: var(--bj-black-card);
  border: 1px solid var(--bj-border-mid);
}
.search-form input[type="search"] {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--bj-white);
  outline: none;
  font-family: var(--font-sans);
}
.search-form input::placeholder { color: var(--bj-white-35); }
.search-form button {
  background: none;
  border: none;
  border-left: 1px solid var(--bj-border-mid);
  padding: 0 14px;
  cursor: pointer;
  color: var(--bj-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.search-form button:hover { background: var(--bj-gold-light); }

/* === UTILITY === */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.visually-hidden { @extend .sr-only; }

/* Award badge */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,170,100,0.08);
  border: 1px solid var(--bj-border-mid);
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 1rem;
}

/* === CATEGORY PAGE === */
.cat-hero {
  position: relative;
  background: var(--bj-black-mid);
  border-bottom: 1px solid var(--bj-border);
  overflow: hidden;
}
.cat-hero-lane {
  position: absolute;
  right: 10%;
  top: 0; bottom: 0;
  width: 120px;
  border-left: 1px solid rgba(200,170,100,0.06);
  border-right: 1px solid rgba(200,170,100,0.06);
  pointer-events: none;
}
.cat-hero-inner {
  padding: 2.5rem 0 2rem;
  max-width: 700px;
}
.cat-hero-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-hero-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--bj-gold);
}
.cat-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bj-white);
  margin-bottom: 0.75rem;
}
.cat-hero-desc {
  font-size: 14px;
  color: var(--bj-white-50);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 560px;
}
.cat-hero-meta {
  font-size: 12px;
  color: var(--bj-white-35);
}

/* Category filter buttons */
.cat-filter-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--bj-border-mid);
  color: var(--bj-white-40);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-filter-btn:hover,
.cat-filter-btn.is-active {
  background: var(--bj-gold);
  color: var(--bj-black);
  border-color: var(--bj-gold);
}

/* Top card (first post large display) */
.cat-top-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--bj-black-mid);
  border: 1px solid var(--bj-border);
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .cat-top-card { grid-template-columns: 1fr; }
}
.cat-top-thumb {
  display: block;
  overflow: hidden;
  min-height: 260px;
  background: var(--bj-black-card);
}
.cat-top-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-top-card:hover .cat-top-thumb img { transform: scale(1.04); }
.cat-top-body {
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-top-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--bj-white);
  margin-bottom: 1rem;
}
.cat-top-title a { color: inherit; transition: color 0.2s; }
.cat-top-title a:hover { color: var(--bj-gold); }
.cat-top-excerpt {
  font-size: 13px;
  color: var(--bj-white-50);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cat-top-meta {
  display: flex;
  gap: 1rem;
  font-size: 11px;
  color: var(--bj-white-35);
}

/* === PAGE CONTENT === */
.page-content-wrap {
  background: var(--bj-black-mid);
  border-bottom: 1px solid var(--bj-border);
}

/* === NEWS 5-CARD GRID === */
.news5-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--bj-border);
}
@media (max-width: 1100px) {
  .news5-wrap { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .news5-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .news5-wrap { grid-template-columns: 1fr; }
}

.news5-card {
  background: var(--bj-black-mid);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.news5-card:hover { background: #141422; }

.news5-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bj-black-card);
  flex-shrink: 0;
}
.news5-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.news5-card:hover .news5-thumb img { transform: scale(1.05); }

.news5-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1208, #0d0d1a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news5-thumb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(15,15,24,0.8) 0%, transparent 100%);
  pointer-events: none;
}

.news5-body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news5-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-gold);
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
}
.news5-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--bj-white);
  margin-bottom: 8px;
  transition: color 0.2s;
  flex: 1;
}
.news5-card:hover .news5-title { color: var(--bj-gold); }
.news5-title a { color: inherit; }

.news5-excerpt {
  font-size: 11px;
  line-height: 1.65;
  color: var(--bj-white-40);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news5-meta {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: var(--bj-white-35);
  margin-top: auto;
}

/* === RELATED POSTS — VERTICAL LIST === */
.related-posts {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bj-border);
}
.related-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bj-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.related-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bj-border);
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bj-border);
}

.related-item {
  background: var(--bj-black-mid);
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  transition: background 0.2s;
}
.related-item:hover { background: #141422; }

.related-thumb {
  width: 130px;
  height: 88px;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
  background: var(--bj-black-card);
}
.related-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-item:hover .related-thumb img { transform: scale(1.05); }
.related-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1208, #0d0d1a);
}

.related-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.related-item-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--bj-white);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.related-item-title a { color: inherit; }
.related-item:hover .related-item-title { color: var(--bj-gold); }
.related-item-meta {
  display: flex;
  gap: 1rem;
  font-size: 11px;
  color: var(--bj-white-35);
}

/* === COMPANY PAGE === */
.company-table-wrap {
  background: var(--bj-black-mid);
  border: 1px solid var(--bj-border);
  margin-bottom: 3rem;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid var(--bj-border);
}
.company-table tr:last-child {
  border-bottom: none;
}
.company-table th {
  width: 180px;
  padding: 1.5rem 2rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bj-gold);
  vertical-align: top;
  white-space: nowrap;
  background: rgba(200,170,100,0.04);
  border-right: 1px solid var(--bj-border);
}
.company-table td {
  padding: 1.5rem 2rem;
  font-size: 14px;
  line-height: 1.8;
  color: var(--bj-white-70);
  vertical-align: top;
}
@media (max-width: 640px) {
  .company-table th,
  .company-table td { display: block; width: 100%; padding: 1rem 1.25rem; }
  .company-table th { border-right: none; border-bottom: 1px solid var(--bj-border); }
}

.company-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--bj-white);
  display: block;
  margin-bottom: 8px;
}
.company-sub-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--bj-white-40);
}

.company-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bj-gold);
  border: 1px solid var(--bj-border-str);
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.company-map-btn:hover {
  background: rgba(200,170,100,0.1);
  color: var(--bj-gold);
}

.company-business-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-business-list li {
  padding-left: 1.1em;
  position: relative;
  font-size: 14px;
  color: var(--bj-white-70);
}
.company-business-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bj-gold);
  opacity: 0.6;
  font-size: 11px;
  top: 3px;
}

.company-map-embed {
  border: 1px solid var(--bj-border);
  overflow: hidden;
}
.company-map-label {
  background: var(--bj-black-mid);
  padding: 0.75rem 1.5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bj-gold);
  border-bottom: 1px solid var(--bj-border);
}

/* === CONTACT PAGE === */
.contact-form {
  background: var(--bj-black-mid);
  border: 1px solid var(--bj-border);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .contact-form { padding: 1.5rem; } }

.contact-field { margin-bottom: 1.75rem; }

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bj-white-70);
  margin-bottom: 8px;
}
.contact-required {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--bj-gold);
  color: var(--bj-black);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: var(--bj-black);
  border: 1px solid var(--bj-border-mid);
  color: var(--bj-white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-input:focus,
.contact-textarea:focus { border-color: var(--bj-gold); }
.contact-input::placeholder,
.contact-textarea::placeholder { color: var(--bj-white-25); }
.contact-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }

.contact-privacy {
  padding: 1.25rem;
  background: rgba(200,170,100,0.04);
  border: 1px solid var(--bj-border);
}
.contact-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bj-white-50);
  cursor: pointer;
}
.contact-privacy-label input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--bj-gold); }
.contact-privacy-label a { color: var(--bj-gold); text-decoration: underline; }

.contact-submit { padding: 16px 48px; font-size: 13px; }
.contact-submit svg { width: 16px; height: 16px; }

.contact-errors {
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.3);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-error-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #f08080;
  margin-bottom: 6px;
}
.contact-error-item:last-child { margin-bottom: 0; }

.contact-thanks {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bj-black-mid);
  border: 1px solid var(--bj-border);
}
.contact-thanks-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--bj-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-thanks-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--bj-white);
  margin-bottom: 1rem;
}
.contact-thanks-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--bj-white-50);
}

.contact-info-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--bj-white-40);
  padding: 1rem;
  border: 1px solid var(--bj-border);
}
.contact-info-note a { color: var(--bj-gold); }

/* === SIDEBAR ARCHIVE LIST === */
.sidebar-archive-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-archive-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--bj-white-50);
  text-decoration: none;
  background: var(--bj-black-mid);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.sidebar-archive-item:hover {
  color: var(--bj-gold);
  border-left-color: var(--bj-gold);
  background: rgba(200,170,100,0.05);
}
.sidebar-archive-item svg {
  flex-shrink: 0;
  color: var(--bj-gold);
  opacity: 0.6;
}

/* === PRIVACY POLICY PAGE === */
.privacy-intro {
  font-size: 14px;
  line-height: 1.9;
  color: var(--bj-white-50);
  padding: 1.5rem 2rem;
  background: var(--bj-black-mid);
  border-left: 3px solid var(--bj-gold);
  margin-bottom: 3rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--bj-border);
  padding-bottom: 2.5rem;
}
.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bj-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bj-border-mid);
}

.privacy-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--bj-white-60, rgba(240,237,232,0.6));
}
.privacy-body p { margin-bottom: 0.75rem; }
.privacy-body p:last-child { margin-bottom: 0; }
.privacy-body strong { color: var(--bj-white-70); font-weight: 600; }

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: var(--bj-white-50);
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--bj-gold);
  opacity: 0.6;
  border-radius: 50%;
}

.privacy-footer-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bj-black-mid);
  border: 1px solid var(--bj-border);
  text-align: right;
}
