/* ── 그누보드 팝업레이어 ── */
#hd_pop { display: none; }
.hd_pops {
  display: block;
  position: fixed;
  z-index: 9000;
  background: #fff;
  border: 1px solid var(--border-l);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hd_pops_con { overflow: auto; }
.hd_pops_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--border-l);
  background: var(--cream2);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
}
.hd_pops_reject,
.hd_pops_close {
  font-size: var(--text-sm);
  color: var(--text-on-light-mid);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 4px 8px;
  transition: color var(--ease);
}
.hd_pops_reject:hover,
.hd_pops_close:hover { color: var(--gold-deep); }

/* ── 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 15px;
  word-break: keep-all;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 유틸 ── */
.hl-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}

/* ── 섹션 공통 ── */
.hl-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hl-section-title {
  font-family: var(--font-serif2);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.5;
}
.hl-section-title em { font-style: normal; color: var(--gold-deep); }
.hl-section-sub {
  font-size: 14.5px;
  line-height: 1.95;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
.hl-section-header { text-align: center; margin-bottom: 64px; }
.hl-section-header .hl-section-title,
.hl-section-header .hl-section-sub { text-align: center; }
