  .page { width: 100%; position: relative; overflow: hidden; }
  .wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .wrap-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }

  /* ===== 헤더 ===== */
  header.top-bar {
    background: rgba(13, 20, 41, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
  }
  .brand-logo {
    display: block;
    height: 32px;
    width: auto;
  }
  svg.brand-logo {
    /* SVG 비율 유지하면서 높이 기준 */
    height: 32px;
    width: auto;
  }
  .brand-logo-footer,
  svg.brand-logo-footer {
    height: 28px;
  }
  .brand-mark {
    display: inline-block;
    width: 26px; height: 26px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 24px rgba(74, 142, 255, 0.4);
  }
  .brand-mark::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 3px;
  }
  .site-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lang-toggle {
    display: inline-flex;
    background: rgba(5, 8, 22, 0.5);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
  }
  /* ===== FOOTER ===== */
  footer.bottom {
    background: var(--bg-card);
    padding: 56px 0 32px;
    border-top: 1px solid var(--border);
  }
  .bottom-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
  }
  .bottom-brand-col .bottom-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .bottom-tag {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .bottom-contact a {
    color: var(--cyan);
    text-decoration: none;
    font-size: 13px;
  }
  .bottom-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .bottom-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .bottom-col ul a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .bottom-col ul a:hover {
    color: var(--cyan);
  }
  /* ===== 비활성화된 사이트맵 (호버 색만 변경) ===== */
  .bottom-col .sitemap-disabled li span {
    color: var(--text-soft);
    font-size: 13px;
    cursor: default;
    transition: color 0.2s;
    display: inline-block;
  }
  .bottom-col .sitemap-disabled li:hover span {
    color: var(--cyan);
  }
  .bottom-legal {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  .bottom-legal-info, .bottom-copy, .bottom-legal-links a {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
    font-family: 'JetBrains Mono', monospace;
  }
  .bottom-legal-links a {
    text-decoration: none;
    transition: color 0.2s;
  }
  .bottom-legal-links a:hover {
    color: var(--cyan);
  }
