/* ==========================================================
   月明かりシアター — theme.css
   Design: Dark Navy (#0d1b2a) + Gold (#c9a84c)
   Font: Noto Serif JP (見出し) / Noto Sans JP (本文)
   ========================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2d42;
  --navy-light: #243b55;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --cream:      #f5f0e8;
  --text-main:  #e8e0d0;
  --text-muted: #8a9bb0;
  --border:     rgba(201,168,76,0.2);
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  color: var(--cream);
  line-height: 1.4;
}

/* ---------- Layout ---------- */
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding: 40px 0 80px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.site-nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--cream);
  background: var(--navy-light);
}

.btn-fanza {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-fanza:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .nav-link { width: 100%; padding: 10px 16px; }
  .btn-fanza { width: 100%; text-align: center; padding: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2d42 50%, #0d1b2a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.95) 40%, rgba(13,27,42,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--cream);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-item .icon { color: var(--gold); font-size: 16px; }

/* ---------- Section ---------- */
.section { padding: 48px 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.section-more {
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Category Nav ---------- */
.category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.category-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.category-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

.category-card .cat-icon { font-size: 28px; margin-bottom: 8px; }
.category-card .cat-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.category-card .cat-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ---------- Work Cards Grid ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.work-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.work-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-light);
}

.work-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.work-card:hover .work-card-thumb img { transform: scale(1.05); }

.work-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge-vr      { background: #7c3aed; color: #fff; }
.badge-4k      { background: #0891b2; color: #fff; }
.badge-dokusen { background: var(--gold); color: var(--navy); }
.badge-new     { background: #16a34a; color: #fff; }

.work-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.work-card-cta {
  display: inline-block;
  margin-top: auto;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.widget-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-light);
}

.widget-search {
  display: flex;
  padding: 12px;
  gap: 8px;
}

.widget-search input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-main);
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
}

.widget-search input:focus { border-color: var(--gold); }

.widget-search button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.widget-search button:hover { background: var(--gold-light); }

.cat-list { list-style: none; }

.cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}

.cat-list li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.cat-list li a .count {
  font-size: 11px;
  background: var(--navy-light);
  padding: 2px 7px;
  border-radius: 10px;
  color: var(--text-muted);
}

.fanza-box {
  padding: 16px;
  text-align: center;
}

.fanza-box p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.btn-fanza-block {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s;
}

.btn-fanza-block:hover { background: var(--gold-light); color: var(--navy); }

/* ---------- Single Article ---------- */
.article-header { margin-bottom: 32px; }

.article-genres { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.genre-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.05em;
}

.article-title {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-thumbnail {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
  background: var(--navy-light);
}

.article-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.cta-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.cta-box-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cta-box-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: background 0.2s;
}

.btn-outline-gold:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

/* Spec Table */
.spec-table-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}

.spec-table-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  padding: 12px 16px;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.1em;
}

.spec-table { width: 100%; border-collapse: collapse; }

.spec-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table th {
  width: 120px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  background: rgba(255,255,255,0.02);
  vertical-align: top;
}

.spec-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-main);
}

/* Highlights */
.highlights-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0;
}

.highlights-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlights-title::before { content: '🎬'; }

.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
}

.highlights-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Good/Bad */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

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

.verdict-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.verdict-box.good { border-top: 3px solid #16a34a; }
.verdict-box.bad  { border-top: 3px solid #dc2626; }

.verdict-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verdict-box.good .verdict-title { color: #4ade80; }
.verdict-box.bad  .verdict-title { color: #f87171; }

.verdict-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.verdict-list li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.verdict-box.good .verdict-list li::before { content: '✓'; color: #4ade80; flex-shrink: 0; }
.verdict-box.bad  .verdict-list li::before { content: '✗'; color: #f87171; flex-shrink: 0; }

/* Article Body */
.article-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-main);
}

.article-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin: 28px 0 12px;
}

.article-body p { margin-bottom: 16px; }

.article-body ul, .article-body ol {
  margin: 16px 0 16px 24px;
}

.article-body li { margin-bottom: 8px; }

/* FAQ */
.faq-section { margin: 40px 0; }

.faq-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-q-text::before {
  content: 'Q';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-icon {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-answer { display: block; }

/* Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}

.sticky-cta-bar.visible { transform: translateY(0); }

.bar-text {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-text strong { color: var(--cream); display: block; font-size: 14px; }

.bar-btns { display: flex; gap: 8px; flex-shrink: 0; }

.bar-btns .btn-gold {
  font-size: 13px;
  padding: 9px 16px;
}

.bar-btns .btn-outline-gold {
  font-size: 13px;
  padding: 9px 16px;
}

.bar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.bar-close:hover { color: var(--cream); }

@media (min-width: 768px) {
  .sticky-cta-bar { display: none; }
}

/* ---------- Category Archive ---------- */
.archive-banner {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  margin-bottom: 0;
}

.archive-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.archive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95), transparent);
}

.archive-banner-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}

.archive-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.archive-banner-count {
  font-size: 13px;
  color: var(--text-muted);
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.sort-select {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

.sort-select:focus { border-color: var(--gold); }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-btn:hover, .page-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

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

.footer-brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12px; color: var(--text-muted); }

.footer-age {
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

/* ---------- Utility ---------- */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
