/* ==========================================================================
   페이버샵 — 따뜻한 선물 가게. 크림 종이 위의 테라코타, 세리프 헤드라인, 둥근 모서리.
   ========================================================================== */
:root {
  --font-display: 'Noto Serif KR Variable', 'Noto Serif KR', 'Nanum Myeongjo', serif;
  --ink: #2b2622; --ink-2: #5a514a; --ink-3: #8c827a; --line: #eadfd3; --line-2: #f3ebe2;
  --paper: #fbf7f2; --paper-2: #f4ede4; --paper-3: #ece3d7;
  --accent: #e2694a; --accent-ink: #fff; --accent-soft: #fbe9e2; --accent-2: #f2c94c; --sage: #7a9b76; --sage-soft: #e6efe4; --butter-soft: #fff3d6;
  --ok: #3c8a5a; --ok-soft: #e4f2e8; --warn: #c27a0b; --warn-soft: #fff3d6; --danger: #c94a3d; --danger-soft: #fbe6e2; --info: #4a6fb5; --info-soft: #e8eef9;
  --radius: 18px; --radius-sm: 12px; --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(60, 40, 20, .06); --shadow: 0 10px 30px rgba(80, 50, 30, .10); --shadow-lg: 0 24px 60px rgba(80, 50, 30, .16);
  --container: 1200px;
}
body.fv { background: var(--paper); }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 200; }
.skip:focus { left: 8px; top: 8px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.01em; }
.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.section-more { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.section-more:hover { color: var(--accent); }
.grid { display: grid; gap: 24px 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; } .section { padding: 40px 0; } .section-title { font-size: 22px; } }

/* ---------- 상단 바 ---------- */
.topbar { background: var(--ink); color: #e9dfd4; font-size: 12.5px; height: 36px; display: flex; align-items: center; }
.topbar .container { height: 100%; }
.topbar-links { display: flex; gap: 18px; }
.topbar-links a, .topbar-links button { color: #e9dfd4; opacity: .85; font-size: 12.5px; }
.topbar-links a:hover, .topbar-links button:hover { opacity: 1; color: #fff; }
@media (max-width: 720px) { .topbar-left { display: none; } .topbar .container { justify-content: flex-end; } }

/* ---------- 헤더 ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(251, 247, 242, .92); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(80, 50, 30, .06); }
.header-inner { display: grid; grid-template-columns: max-content minmax(0, 1fr) max-content; align-items: center; height: 80px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; flex-shrink: 0; }
.logo-ko, .logo-en { white-space: nowrap; }
.nav { min-width: 0; }
.logo-mark svg { width: 38px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-ko { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.logo-en { font-size: 9.5px; letter-spacing: .28em; font-weight: 700; color: var(--accent); margin-top: 3px; }
.logo-text.is-light .logo-ko { color: #fbf7f2; }
.logo-text.is-light .logo-en { color: var(--accent-2); }
.nav ul { display: flex; gap: 4px; align-items: center; }
.nav a { display: inline-flex; align-items: center; height: 40px; padding: 0 10px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: .15s; white-space: nowrap; }
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a.active { background: var(--accent-soft); color: var(--accent); }
.nav .nav-cta a { background: var(--ink); color: #fbf7f2; margin-left: 8px; }
.nav .nav-cta a:hover { background: var(--accent); }
.nav-head, .nav-foot { display: none; }
.header-actions { display: flex; align-items: center; gap: 4px; }
.search { display: flex; align-items: center; height: 44px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); padding: 0 6px 0 16px; width: 210px; transition: width .2s, box-shadow .2s; margin-right: 6px; }
.search:focus-within { width: 260px; background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.search input { border: 0; background: transparent; flex: 1; min-width: 0; font-size: 14px; outline: none; }
.search button { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); }
.search button:hover { background: var(--accent); color: #fff; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); position: relative; }
.icon-btn:hover { background: var(--paper-2); color: var(--ink); }
.search-toggle { display: none; }
.cart-count { position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; border-radius: 9px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; display: none; align-items: center; justify-content: center; padding: 0 5px; }
.cart-count.on { display: inline-flex; }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 50%; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-btn span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1480px) {
  .search { position: absolute; left: 0; right: 0; top: 80px; width: auto; border-radius: 0; height: 56px; background: #fff; border: 0; border-bottom: 1px solid var(--line); display: none; padding: 0 16px; margin: 0; }
  .search.open { display: flex; }
  .search:focus-within { width: auto; box-shadow: none; }
  .search-toggle { display: grid; }
}
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr auto; gap: 8px; height: 66px; }
  .menu-btn { display: flex; }
  .nav { position: fixed; inset: 0 auto 0 0; width: min(320px, 86vw); background: var(--paper); z-index: 100; transform: translateX(-105%); transition: transform .25s var(--ease); box-shadow: var(--shadow-lg); padding: 16px 12px; overflow-y: auto; display: flex; flex-direction: column; }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { height: 46px; border-radius: 12px; font-size: 16px; }
  .nav .nav-cta a { margin: 8px 0 0; justify-content: center; }
  .nav-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 12px 14px; }
  .nav-head button { font-size: 26px; color: var(--ink-3); width: 36px; height: 36px; }
  .nav-foot { display: flex; gap: 14px; padding: 18px 12px; margin-top: auto; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-3); }
  body.menu-open { overflow: hidden; }
  .header-actions { justify-self: end; }
  .search { top: 66px; }
}

/* ---------- 히어로 ---------- */
.hero { position: relative; margin: 12px 0 0; }
.hero-slide { display: none; border-radius: 0; }
.hero-slide.active { display: block; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 32px; min-height: 460px; border-radius: var(--radius-lg); padding: 48px 56px; overflow: hidden; position: relative; }
.bg-peach .hero-inner { background: linear-gradient(135deg, #fbe4d8 0%, #f8d5c4 100%); }
.bg-cream .hero-inner { background: linear-gradient(135deg, #f6ecd9 0%, #f0dfc0 100%); }
.bg-sage .hero-inner { background: linear-gradient(135deg, #e3ede0 0%, #cfdfca 100%); }
.hero-title { font-family: var(--font-display); font-size: 44px; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; margin: 6px 0 16px; color: var(--ink); }
.hero-sub { font-size: 17px; color: var(--ink-2); max-width: 460px; margin-bottom: 28px; line-height: 1.7; }
.hero-art { position: relative; min-height: 360px; }
.hero-art > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.hero-collage { position: absolute; inset: 0; }
.hero-collage img { position: absolute; border-radius: 26px; box-shadow: var(--shadow-lg); object-fit: cover; }
.hero-collage .c1 { width: 58%; left: 4%; top: 6%; transform: rotate(-4deg); }
.hero-collage .c2 { width: 40%; right: 2%; top: 0; transform: rotate(6deg); }
.hero-collage .c3 { width: 42%; right: 10%; bottom: 0; transform: rotate(-2deg); }
.hero-dots { display: flex; gap: 8px; justify-content: center; padding: 16px 0 0; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: .2s; }
.hero-dots button.active { width: 26px; border-radius: 4px; background: var(--accent); }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; padding: 32px 24px; min-height: 0; } .hero-title { font-size: 30px; } .hero-art { min-height: 220px; } .hero-sub { font-size: 15px; } }

/* ---------- 카테고리 원형 ---------- */
.cats { padding: 40px 0 8px; }
.cat-row { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: none; }
.cat-row::-webkit-scrollbar { display: none; }
.cat-item { flex: none; width: 108px; display: grid; justify-items: center; gap: 10px; text-align: center; }
.cat-thumb { width: 84px; height: 84px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; transition: transform .2s var(--ease), box-shadow .2s; }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-item:hover .cat-thumb { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.cat-name { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }

/* ---------- 상품 카드 ---------- */
.pcard { display: flex; flex-direction: column; gap: 12px; }
.pcard-media { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); aspect-ratio: 1 / 1; border: 1px solid var(--line-2); transition: transform .25s var(--ease), box-shadow .25s; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard-media { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard:hover .pcard-media img { transform: scale(1.04); }
.pcard-badge { position: absolute; left: 12px; top: 12px; background: var(--ink); color: #fbf7f2; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 5px 9px; border-radius: 999px; }
.pcard-soldout { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(251, 247, 242, .7); font-weight: 800; color: var(--ink-3); backdrop-filter: blur(2px); }
.pcard-cat { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.pcard-name { font-size: 15px; font-weight: 600; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-name a:hover { color: var(--accent); }
.pcard-sub { font-size: 13px; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.pcard-rate { color: var(--accent); font-weight: 800; }
.pcard-now { font-weight: 800; font-size: 16.5px; }
.pcard-was { color: var(--ink-3); font-size: 13px; }
.pcard-min { font-size: 12px; color: var(--ink-3); background: var(--paper-2); padding: 2px 7px; border-radius: 6px; }
.is-soldout .pcard-media img { filter: grayscale(.6); }

/* ---------- 상품권 밴드 ---------- */
.voucher-band { padding: 0; }
.voucher-band-inner { background: var(--ink); color: #fbf7f2; border-radius: var(--radius-lg); padding: 52px 56px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.voucher-band .eyebrow { color: var(--accent-2); }
.voucher-band .section-title { color: #fbf7f2; margin-bottom: 12px; }
.voucher-band p { color: #d9cfc4; margin-bottom: 18px; line-height: 1.7; }
.voucher-points { display: grid; gap: 8px; margin-bottom: 26px; font-size: 14.5px; }
.voucher-points li { display: flex; gap: 10px; align-items: center; }
.voucher-points li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); flex: none; }
.voucher-band .voucher-points a { color: var(--accent-2); text-decoration: underline; }
.voucher-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.voucher-card { display: grid; gap: 8px; text-align: center; border-radius: 16px; background: rgba(255, 255, 255, .06); padding: 12px; transition: .2s; }
.voucher-card:hover { background: rgba(255, 255, 255, .12); transform: translateY(-3px); }
.voucher-card img { border-radius: 12px; }
.voucher-amount { font-weight: 800; font-size: 15px; }
@media (max-width: 900px) { .voucher-band-inner { grid-template-columns: 1fr; padding: 32px 24px; } }

/* ---------- 홈 하단 ---------- */
.home-bottom { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.steps-card, .notice-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.steps { display: grid; gap: 14px; margin: 20px 0 24px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps .n { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; display: grid; place-items: center; flex: none; font-size: 14px; }
.cs-mini { margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line); }
.cs-mini strong { font-size: 22px; font-family: var(--font-display); margin-left: 10px; }
.cs-label { font-size: 12px; color: var(--ink-3); font-weight: 700; letter-spacing: .1em; }
@media (max-width: 900px) { .home-bottom { grid-template-columns: 1fr; } }

/* ---------- 목록 ---------- */
.listing { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.listing-side { position: sticky; top: 96px; }
.side-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 12px; }
.side-cats { display: grid; gap: 2px; }
.side-cats a { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 10px; font-size: 14.5px; color: var(--ink-2); }
.side-cats a:hover { background: var(--paper-2); color: var(--ink); }
.side-cats a.active { background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.side-cats .cnt { font-size: 12px; color: var(--ink-3); }
.side-note { margin-top: 24px; padding: 18px; border-radius: 16px; background: var(--butter-soft); display: grid; gap: 8px; }
.listing-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.listing-title { font-family: var(--font-display); font-size: 30px; }
.sort { display: flex; gap: 8px; align-items: center; }
.sort .select { width: 150px; height: 40px; }
.sort button { display: none; }
@media (max-width: 900px) { .listing { grid-template-columns: 1fr; gap: 20px; } .listing-side { position: static; } .side-cats { display: flex; overflow-x: auto; gap: 6px; padding-bottom: 6px; } .side-cats a { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; } .side-cats .cnt { display: none; } .side-note, .side-title { display: none; } .listing-title { font-size: 24px; } }

/* ---------- 상품 상세 ---------- */
.product-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); background: var(--paper-2); aspect-ratio: 1/1; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery-thumbs button { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; background: var(--paper-2); }
.gallery-thumbs button.active { border-color: var(--accent); }
.buybox { position: sticky; top: 100px; }
.buybox-cat { font-size: 13px; color: var(--ink-3); font-weight: 600; display: flex; gap: 8px; align-items: center; }
.buybox-title { font-family: var(--font-display); font-size: 28px; line-height: 1.3; margin: 8px 0 6px; }
.buybox-sub { color: var(--ink-2); }
.buybox-price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.buybox-price .now { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.buybox-price .rate { color: var(--accent); font-weight: 800; font-size: 20px; }
.buybox-price .was { color: var(--ink-3); }
.buybox-meta { display: grid; grid-template-columns: 56px 1fr; gap: 8px 12px; font-size: 14px; margin-bottom: 20px; }
.buybox-meta dt { color: var(--ink-3); }
.buybox-meta dd { margin: 0; color: var(--ink-2); }
.buyform { display: grid; gap: 14px; }
.buyform-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--paper-2); padding: 12px 14px; border-radius: 14px; }
.buyform-total { text-align: right; display: grid; }
.buyform-total strong { font-size: 20px; }
.buyform-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-hint { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); padding: 12px 14px; background: var(--sage-soft); border-radius: 12px; }
.product-body { margin-top: 64px; }
.detail-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 32px; position: sticky; top: 80px; background: var(--paper); z-index: 5; }
.detail-tabs a { padding: 14px 18px; font-weight: 600; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.detail-tabs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.detail-section { max-width: 820px; margin-bottom: 48px; scroll-margin-top: 140px; }
.detail-section .section-title { font-size: 22px; margin-bottom: 16px; }
@media (max-width: 900px) { .product-top { grid-template-columns: 1fr; gap: 24px; } .buybox { position: static; } .buybox-title { font-size: 22px; } .detail-tabs { top: 66px; } }

/* ---------- 상품권 페이지 ---------- */
.voucher-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; background: linear-gradient(135deg, #fbe4d8, #f6ecd9); border-radius: var(--radius-lg); padding: 44px 48px; }
.voucher-hero-art img { max-width: 320px; margin: 0 auto; border-radius: 24px; box-shadow: var(--shadow-lg); transform: rotate(-4deg); }
@media (max-width: 800px) { .voucher-hero { grid-template-columns: 1fr; padding: 28px 22px; } .voucher-hero-art { display: none; } }

/* ---------- 회사소개 ---------- */
.about-hero { max-width: 760px; padding: 24px 0 40px; }
.about-title { font-family: var(--font-display); font-size: 40px; line-height: 1.25; margin: 6px 0 20px; }
.about-lead { font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-grid h3 { font-family: var(--font-display); font-size: 18px; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } .about-title { font-size: 28px; } }

/* ---------- 장바구니 · 주문 ---------- */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-side, .checkout-side { position: sticky; top: 100px; }
.cart-row { display: grid; grid-template-columns: 96px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-row .thumb { width: 96px; height: 96px; border-radius: 14px; overflow: hidden; background: var(--paper-2); }
.cart-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .cat { font-size: 12px; color: var(--ink-3); }
.cart-row .name { font-weight: 600; display: block; margin: 2px 0; }
.cart-row .opt { font-size: 13px; color: var(--ink-3); }
.cart-row .warn { font-size: 13px; color: var(--danger); margin-top: 4px; }
.cart-row .line { font-weight: 800; min-width: 90px; text-align: right; }
.cart-row.is-unavailable .thumb { opacity: .5; }
@media (max-width: 900px) { .cart-layout, .checkout-layout { grid-template-columns: 1fr; } .cart-side, .checkout-side { position: static; } .cart-row { grid-template-columns: 72px 1fr; } .cart-row .thumb { width: 72px; height: 72px; } .cart-row .qty-form, .cart-row .line, .cart-row .remove { grid-column: 2; } .cart-row .line { text-align: left; } }
.pay-methods { display: grid; gap: 10px; }
.pay-method { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.pay-method input { grid-row: span 2; accent-color: var(--accent); width: 18px; height: 18px; }
.pay-method.active, .pay-method:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pay-method.is-disabled { opacity: .6; cursor: default; grid-template-columns: 1fr; }
.pm-title { font-weight: 700; }
.pm-desc { font-size: 13px; color: var(--ink-3); }
.complete-hero { text-align: center; padding: 40px 0 8px; }
.complete-hero h1 { font-family: var(--font-display); font-size: 30px; margin: 16px 0 8px; }
.complete-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--ok-soft); color: var(--ok); font-size: 30px; font-weight: 800; display: grid; place-items: center; margin: 0 auto; }
.complete-icon.is-error { background: var(--danger-soft); color: var(--danger); font-size: 22px; }
.auth-card { max-width: 440px; margin: 20px auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; }
.auth-card.wide { max-width: 640px; }
.auth-card h1 { font-family: var(--font-display); font-size: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; display: grid; gap: 4px; }
.stat .k { font-size: 13px; color: var(--ink-3); }
.stat .v { font-size: 26px; font-weight: 800; font-family: var(--font-display); }
.panel { background: #fff; }
.page-head h1 { font-family: var(--font-display); }

/* ---------- 푸터 ---------- */
.footer { background: var(--ink); color: #d9cfc4; margin-top: 80px; padding: 56px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand .logo-mark { display: inline-block; margin-bottom: 4px; }
.footer-brand { display: grid; gap: 8px; justify-items: start; }
.footer-slogan { color: #b9aea2; font-size: 14px; }
.footer-cs { margin-top: 14px; }
.footer-cs-label { font-size: 12px; letter-spacing: .12em; color: #9b8f83; font-weight: 700; }
.footer-cs-phone { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fbf7f2; margin: 2px 0 4px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-cols h4 { color: #fbf7f2; font-size: 14px; margin-bottom: 12px; }
.footer-cols li { margin-bottom: 8px; font-size: 13.5px; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-info { padding-top: 24px; font-size: 12.5px; line-height: 1.8; color: #b9aea2; }
.footer-info strong { color: #fbf7f2; }
.footer-info a { text-decoration: underline; }
.footer-info .muted { color: #8c8074; margin-top: 8px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } .footer-cols { grid-template-columns: 1fr 1fr; } }
