/* ═══════════════════════════════════════════════════════
   시흥점 전용 override (라이트)
   ─ 팔레트는 theme-light.css, 공통 레이아웃은 branch.css.
   ─ branch(다크 기준)와 다른 구조 델타 + 시흥 고유 요소만 둔다.
   ═══════════════════════════════════════════════════════ */

/* ── 히어로 프레임 — 아침 만조 사진이 종이색으로 녹아드는 밝은 구성 ── */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: relative;
  height: min(62svh, 620px);
  min-height: 360px;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(250,248,243,0) 0%,
    rgba(250,248,243,0) 55%,
    rgba(250,248,243,.55) 82%,
    var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px 72px;
  margin-top: -150px;
}

/* ── 히어로 내부 델타 ─────────────────────────────── */
.hero-eyebrow { margin-bottom: 22px; text-transform: none; }
.hero-h1 { font-size: clamp(46px, 8vw, 84px); line-height: 1.06; }
.hero-sub { margin-bottom: 32px; }
.hero-price { gap: 10px; }

/* ── 섹션 델타 (밝은 톤의 경계선·표면) ────────────── */
.features { border-top: 1px solid var(--line); }
.features-grid { background: var(--line); }
.section-sub { max-width: 540px; }
.rooms-list { background: var(--line); }
.room-row { border-bottom: none; }
.room-photo { min-height: 300px; }
.atmo-strip { border-top: 1px solid var(--line); }
.atmo-inner { height: 230px; }
.gallery-label { font-weight: 700; }
.inquiry {
  border-top: 1px solid var(--line);
  background-image: radial-gradient(ellipse at 60% 45%, var(--inquiry-glow) 0%, transparent 70%);
}

/* ── 분위기 스트립 라벨 (시흥 전용) ──────────────── */
.atmo-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(250,248,243,.88);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 700; color: var(--text);
}

/* ── 라인 버튼 (시흥 전용) ───────────────────────── */
.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  height: 56px; padding: 0 32px;
  background: var(--card);
  border: 1px solid var(--line); color: var(--text);
  border-radius: var(--radius-btn);
  font-size: 16px; font-weight: 700;
  transition: border-color .2s, background .2s;
}
.btn-line:hover { border-color: var(--accent-line); background: var(--accent-soft); }

/* ── 모바일 (히어로·분위기 델타) ─────────────────── */
@media (max-width: 768px) {
  .hero-bg { height: 46svh; min-height: 280px; }
  .hero-content { margin-top: -90px; padding-bottom: 56px; }
  .atmo-inner { height: 170px; }
}
@media (max-width: 540px) {
  /* branch.css 의 @540 auto 가 위 @768 170px 보다 먼저 로드되므로 여기서 재확정 */
  .atmo-inner { height: auto; }
}
