/* 클린플러스 — 유품정리 전문 사이트 공통 스타일
   QUIET REMEMBRANCE: Warm Stone / Deep Plum / Muted Gold / Ink */
:root {
  --stone-50: #F6F3EE;
  --stone-100: #EFE8DC;
  --stone-200: #E3DACB;
  --ink-900: #2B2420;
  --ink-700: #4A3F37;
  --ink-500: #7A6D62;
  --ink-300: #ACA090;
  --plum-900: #362027;
  --plum-800: #4B2E39;
  --plum-700: #603A47;
  --plum-600: #7A4C5A;
  --gold-500: #B08D57;
  --gold-400: #C7A876;
  --gold-300: #D8C39C;
  --gold-ink: #5B441F;
  --white: #FFFFFF;
  --line: #E3DACB;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 28px rgba(54, 32, 39, 0.09);
  --shadow-hover: 0 20px 40px rgba(54, 32, 39, 0.18);
  --max-w: 1140px;
  --font-kr: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-serif: "Noto Serif KR", var(--font-kr);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-kr);
  font-weight: 450;
  color: var(--ink-900);
  background: var(--stone-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.34; letter-spacing: -0.005em; font-family: var(--font-serif); }
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
p { margin: 0; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-1 { animation: fadeUp .7s ease .05s both; }
.fade-2 { animation: fadeUp .7s ease .2s both; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--stone-50);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(246, 243, 238, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(54,32,39,0.05);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.12rem; color: var(--plum-800); font-family: var(--font-serif); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand em { display: block; font-style: normal; font-family: var(--font-kr); font-weight: 600; font-size: 0.68rem; color: var(--gold-ink); letter-spacing: 0.06em; margin-top: 1px; }
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  padding: 10px 14px; border-radius: var(--radius-pill); font-size: 0.92rem; font-weight: 600; color: var(--ink-700);
  transition: background .15s, color .15s;
}
.nav-desktop a:hover { background: var(--stone-100); color: var(--plum-800); }
.nav-cta { display:flex; gap:10px; align-items:center; }
.hamburger {
  display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1.5px solid var(--ink-900);
  background: transparent; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger svg { width: 22px; height: 22px; color: var(--ink-900); }
.nav-mobile { display: none; flex-direction: column; padding: 6px 22px 18px; border-top: 1px solid var(--line); }
.nav-mobile a { padding: 13px 4px; border-bottom: 1px solid var(--stone-100); font-weight: 600; color: var(--ink-700); }
.nav-mobile.open { display: flex; }

.breadcrumb { padding: 14px 0 0; font-size: 0.82rem; color: var(--ink-500); display:flex; gap:6px; flex-wrap:wrap; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--plum-700); }
.breadcrumb span { color: var(--ink-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.98rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap; font-family: var(--font-kr);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--plum-800); color: var(--white); box-shadow: 0 10px 22px rgba(54,32,39,0.24); }
.btn-primary:hover { background: var(--plum-900); box-shadow: 0 14px 28px rgba(54,32,39,0.3); }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-outline:hover { background: var(--ink-900); color: var(--stone-50); }
.btn-gold { background: var(--gold-400); color: var(--gold-ink); box-shadow: 0 10px 22px rgba(199,168,118,0.35); }
.btn-gold:hover { background: var(--gold-300); }
.btn-lg { padding: 17px 32px; font-size: 1.03rem; }

/* ---------- Section ---------- */
.section { padding: 78px 0; }
.section-alt { background: var(--stone-100); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin: 0 0 36px; text-align: left; }
.kicker { display: inline-block; font-family: var(--font-kr); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-ink); text-transform: uppercase; margin-bottom: 10px; }
.section-head h2, .region-wrap h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 12px; color: var(--ink-900); }
.lede { color: var(--ink-700); font-size: 1.08rem; }
.mobile-break { display: none; }
@media (max-width: 640px) { .mobile-break { display: block; } }
.desktop-break { display: block; }
@media (max-width: 640px) { .desktop-break { display: none; } }

/* ---------- HERO (full-bleed photo backdrop, centered) ---------- */
.hero { position: relative; padding: 96px 0 84px; overflow: hidden; color: var(--stone-50); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,26,32,.72) 0%, rgba(43,26,32,.82) 55%, rgba(43,26,32,.94) 100%);
}
.hero .wrap { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.hero-eyebrow { display:inline-block; font-family: var(--font-kr); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 18px; }
.hero .lede { font-size: 1.08rem; margin: 0 auto 30px; max-width: 580px; color: var(--stone-100); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; justify-content: center; }
.chip { padding: 7px 15px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.1); color: var(--gold-300); font-size: 0.82rem; font-weight: 600; border: 1px solid rgba(216,195,156,0.4); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-note { margin-top: 18px; font-size: 0.84rem; color: var(--stone-200); }

.hero-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3.1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bento Grid ---------- */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 16px; }
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.bento-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.bento-card:hover .bento-card-img { transform: scale(1.04); }
.bento-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s ease; }
.bento-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(43,26,32,0.72) 0%, rgba(43,26,32,0.06) 65%); }
.bento-card-body { position: relative; z-index: 2; height: 100%; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.bento-card h3 { font-size: 1.05rem; color: var(--white); }
.bento-card p { font-size: 0.88rem; color: var(--stone-200); }
.bento-card.big { grid-column: span 2; grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }

/* ---------- Situational (Numbered) ---------- */
.situ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.situ-card { padding: 30px 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.situ-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--gold-300); line-height: 1; margin-bottom: 14px; }
.situ-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink-900); }
.situ-card p { font-size: 0.96rem; color: var(--ink-700); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; gap: 26px; }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-imgs figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; }
.ba-imgs img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: var(--radius-pill); font-family: var(--font-kr); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; z-index: 2; }
.ba-tag.before { background: var(--ink-900); color: var(--stone-50); }
.ba-tag.after { background: var(--gold-400); color: var(--gold-ink); }
.ba-caption { margin-top: 12px; font-size: 0.88rem; color: var(--ink-700); text-align: center; }
.ba-note { margin-top: 20px; font-size: 0.78rem; color: var(--ink-500); text-align: center; }

.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-grid figure { margin: 0; border-radius: 12px; overflow: hidden; }
.photo-grid img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.photo-grid figure:hover img { transform: scale(1.07); }
.photo-grid figcaption { margin-top: 8px; font-size: 0.86rem; color: var(--ink-700); text-align: center; }
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 260px; }
}

/* ---------- Timeline (Process) ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; position: relative; }
.tl-step { position: relative; padding-left: 46px; }
.tl-step .step-num {
  position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--plum-800); color: var(--stone-50); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 0.95rem;
}
.tl-step h3 { font-size: 1.06rem; margin-bottom: 6px; color: var(--ink-900); }
.tl-step p { font-size: 0.95rem; color: var(--ink-700); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.info-card { padding: 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.info-card h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--plum-700); }
.info-card p { font-size: 0.96rem; color: var(--ink-700); }
.icon-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); text-align: center; }
.icon-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--stone-100); color: var(--plum-800); font-weight: 700; font-family: var(--font-serif); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.icon-card h3 { font-size: 1rem; margin-bottom: 8px; }
.icon-card p { font-size: 0.95rem; color: var(--ink-700); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; font-size: 0.96rem; border-bottom: 1px solid var(--line); }
table.compare th { background: var(--plum-800); color: var(--stone-50); font-weight: 700; }
table.compare tr:last-child td { border-bottom: none; }
table.compare a { color: var(--plum-700); font-weight: 600; }
@media (max-width: 640px) {
  table.compare { min-width: 0; table-layout: fixed; }
  table.compare th, table.compare td { padding: 10px 12px; font-size: 0.9rem; word-break: keep-all; overflow-wrap: break-word; }
  table.compare th:first-child, table.compare td:first-child { width: 32%; }
}

/* ---------- Checklist ---------- */
.checklist li { position: relative; padding: 10px 0 10px 30px; font-size: 1rem; color: var(--ink-800); border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--gold-ink); font-weight: 800; }

/* ---------- Region ---------- */
.region-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.region-tags { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.region-tag { padding: 9px 18px; border-radius: var(--radius-pill); background: var(--plum-800); color: var(--stone-50); font-weight: 700; font-size: 0.95rem; }
.region-media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.region-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 4px; cursor: pointer; font-weight: 700; font-size: 0.97rem; list-style: none; color: var(--ink-900); }
.faq-q::-webkit-details-marker { display: none; }
.qmark { color: var(--gold-ink); margin-right: 4px; }
.faq-a { padding: 0 4px 18px; font-size: 0.97rem; color: var(--ink-700); }
.chev { transition: transform .2s; color: var(--ink-500); flex-shrink: 0; }
details[open] .chev { transform: rotate(180deg); }
.faq-more-hidden { display: none; }
.faq-more-hidden.open { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--plum-800); border-radius: var(--radius-xl); padding: 58px 44px; text-align: center; }
.cta-eyebrow { display: block; font-family: var(--font-kr); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-300); text-transform: uppercase; margin-bottom: 14px; }
.cta-band h2 { color: var(--stone-50); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band p { color: var(--stone-200); font-size: 0.96rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Article copy ---------- */
.article-copy { max-width: 760px; margin: 0 auto; }
.article-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.article-copy h3 { display: inline-block; font-size: 1.1rem; margin: 30px 0 10px; padding-bottom: 6px; color: var(--plum-800); border-bottom: 2px solid var(--gold-400); }
.article-copy p { color: var(--ink-700); font-size: 1.02rem; margin-bottom: 4px; }
.article-copy ul { margin: 12px 0; }
.article-copy ul li { position: relative; padding: 6px 0 6px 22px; font-size: 1rem; color: var(--ink-700); }
.article-copy ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold-500); }
.updated-note { margin-top: 26px; font-size: 0.8rem; color: var(--ink-500); }

/* ---------- Consultation phone card ---------- */
.consult-phone-card { background: var(--plum-800); border-radius: var(--radius-xl); padding: 34px; text-align: center; }
.consult-phone-card p { color: var(--stone-200); }
.consult-phone-number { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--stone-50); margin: 10px 0 20px; }
.consult-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--stone-200); padding: 56px 0 22px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; }
.footer-brand { font-family: var(--font-serif); font-weight: 700; font-size: 1.24rem; color: var(--gold-300); margin-bottom: 12px; }
.footer-biz { font-size: 0.86rem; color: var(--stone-200); line-height: 1.8; opacity: 0.85; }
ul.footer-biz { margin-top: 22px; }
ul.footer-biz li { margin-bottom: 4px; }
.footer-col h4 { font-size: 0.86rem; color: var(--stone-50); margin-bottom: 14px; letter-spacing: 0.04em; font-family: var(--font-kr); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--stone-200); opacity: 0.85; }
.footer-col ul li a:hover { color: var(--gold-300); opacity: 1; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: var(--stone-200); opacity: 0.75; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--plum-800); color: var(--stone-50);
  padding: 15px 22px 15px 17px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(54, 32, 39, 0.4);
  font-weight: 700; font-size: 0.94rem; font-family: var(--font-kr);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.float-call:hover { background: var(--plum-700); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(54, 32, 39, 0.48); }
.float-call svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-card.big { grid-column: span 2; grid-row: span 1; }
  .situ-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .region-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .bento-card.wide { grid-column: span 2; }
  .bento-card-body { padding: 16px; gap: 4px; }
  .bento-card h3 { font-size: 0.94rem; }
  .bento-card p { font-size: 0.82rem; line-height: 1.45; }
  .situ-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .ba-imgs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .float-call { right: 16px; bottom: 16px; padding: 14px; }
  .float-call-text { display: none; }
  .hero-cta { flex-wrap: nowrap; gap: 8px; }
  .hero-cta .btn { flex: 1; min-width: 0; padding: 13px 8px; font-size: 0.86rem; }
}
