@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #FAF6EE; --bg2: #F2EAD8; --dark: #2A1F14; --darker: #1A1008;
  --red: #8B2A2A; --gold: #C8A86E; --gold-light: #E8C882;
  --ink: #1E1A14; --brown: #4A3F2F; --gray: #6B5C45; --light-gray: #A09080;
  --border: #C8B89A; --font: 'Noto Serif KR', serif;
}
body { font-family: var(--font); background: var(--bg); color: var(--ink); word-break: keep-all; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,246,238,0.97); border-bottom: 1px solid var(--border); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 68px; backdrop-filter: blur(8px); }
.nav-logo img { height: 52px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 32px; font-size: 13px; letter-spacing: 1.5px; color: var(--brown); }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.sec-label { font-size: 11px; letter-spacing: 4px; color: var(--red); margin-bottom: 10px; }
.sec-title { font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 40px; line-height: 1.5; }

/* ===== 스크롤 등장 애니메이션 ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2,0.7,0.3,1), transform 0.7s cubic-bezier(0.2,0.7,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== 하단 고정 상담바 ===== */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 500; background: rgba(26,16,8,0.97); backdrop-filter: blur(6px); border-top: 1px solid rgba(200,168,110,0.25); display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 16px; transform: translateY(0); transition: transform 0.3s ease; }
.sticky-bar.sb-hide { transform: translateY(100%); }
.sticky-bar-inner { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 480px; }
.sticky-bar-text { display: none; }
.sb-btn { flex: 1; text-align: center; padding: 13px 10px; font-size: 13.5px; font-weight: 700; text-decoration: none; letter-spacing: 0.3px; white-space: nowrap; }
.sb-btn-call { background: transparent; color: #FAF6EE; border: 1px solid rgba(250,246,238,0.35); }
.sb-btn-apply { background: #8B2A2A; color: #FAF6EE; border: 1px solid #8B2A2A; }
body { padding-bottom: 62px; }
@media (min-width: 769px) {
  .sticky-bar-text { display: block; font-size: 13px; color: #E9DCC4; margin-right: auto; white-space: nowrap; }
  .sticky-bar-inner { max-width: 640px; }
  .sb-btn { flex: none; padding: 12px 28px; }
}
.footer { background: var(--darker); padding: 28px 60px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 40px; filter: brightness(1.8) sepia(0.3); opacity: 0.75; }
.footer-info { font-size: 11px; color: #5A4A35; line-height: 1.9; text-align: right; }
.footer-divider { display: inline-block; width: 1px; height: 10px; background: #5A4A35; margin: 0 8px; vertical-align: middle; }
@media (max-width: 768px) {
  .nav { padding: 0 14px; }
  .nav-logo img { height: 38px; }
  .nav-links { gap: 9px; font-size: 10.5px; letter-spacing: 0.5px; }
  .nav-links a { white-space: nowrap; }
  .footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
  .footer-info { text-align: center; }
}
