/* =========================================================
   Header base
========================================================= */

.site-header {
  width: 100%;
}

/* Header image */
.header-image-wrap {
  width: 100%;
  line-height: 0;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================
   Matte black control bar (3 equal columns)
   - height reduced by ~15%
========================================================= */

.header-bar {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;

  /* 기존 14px → 12px (약 14.3% 감소) */
  padding: 12px 12px;
  gap: 10px;

  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* each column = 1/3 */
.bar-cell {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

/* =========================================================
   Home / Section buttons (same look, slightly shorter)
========================================================= */

.bar-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 기존 14px → 12px (약 14.3% 감소) */
  padding: 12px 12px;
  border-radius: 2px;

  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.95);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);

  text-align: center;
  user-select: none;
  white-space: nowrap;
}

/* =========================================================
   Search input (match button height feel)
========================================================= */

.bar-search {
  width: 100%;

  /* 기존 14px → 12px (약 14.3% 감소) */
  padding: 12px 12px;

  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);

  color: rgba(255,255,255,0.92);
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);

  outline: none;
  min-width: 0;
}

.bar-search::placeholder {
  color: rgba(255,255,255,0.55);
}
