/* =============================================================
   클린팡팡 셀프빨래방 — 디자인 시스템
   VARIANCE 6 · MOTION 5 · DENSITY 3
   액센트: 딥 애저 블루 하나 락 · 라운드: pill 버튼 / 20px 카드
   테마: light 기본 + prefers-color-scheme dark (페이지 전체 단일 테마)
   ============================================================= */

/* ---------- 토큰 ---------- */
:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f1f5fd;
  --tint: #e9f1fe;         /* 블루 틴트 표면 */
  --text: #0e1626;
  --text-soft: #55617a;
  --text-faint: #8b95ab;
  --border: rgba(14, 22, 38, 0.09);
  --border-strong: rgba(14, 22, 38, 0.16);
  --accent: #1857d6;       /* 락된 단일 액센트 */
  --accent-strong: #0e43b4;
  --accent-ink: #0b3aa0;   /* 틴트 위 텍스트 */
  --cyan: #17b6d8;         /* 브랜드 버블 장식 전용 (CTA 아님) */
  --on-accent: #ffffff;

  --shadow-sm: 0 1px 2px rgba(16, 41, 92, 0.05), 0 2px 8px rgba(16, 41, 92, 0.05);
  --shadow-md: 0 6px 20px rgba(16, 41, 92, 0.08), 0 2px 6px rgba(16, 41, 92, 0.05);
  --shadow-lg: 0 24px 60px rgba(16, 41, 92, 0.14), 0 6px 18px rgba(16, 41, 92, 0.08);

  --r-card: 20px;
  --r-lg: 28px;
  --r-sm: 12px;
  --r-pill: 999px;

  --wrap: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);

  --header-h: 72px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a1120;
    --surface: #111b2d;
    --surface-2: #0f1a2c;
    --tint: #14243f;
    --text: #eaf0fb;
    --text-soft: #a3b0c8;
    --text-faint: #6f7c96;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.18);
    --accent: #4f89f7;
    --accent-strong: #6c9dfa;
    --accent-ink: #cadcff;
    --cyan: #38c6e6;
    --on-accent: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.38);
    --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}

/* ---------- 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Pretendard", "Pretendard Variable", -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: -0.006em;
  font-feature-settings: "ss06", "cv11";
  word-break: keep-all;          /* 한글: 단어(어절) 단위로만 줄바꿈 */
  overflow-wrap: break-word;     /* 긴 영문/숫자 넘침 방지 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- 오로라 메시 배경 + 그레인 질감 (전역 분위기) ---------- */
body::before {
  content: ""; position: fixed; inset: -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(50% 44% at 84% -6%, color-mix(in srgb, var(--cyan) 30%, transparent), transparent 68%),
    radial-gradient(46% 48% at -4% 16%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 68%),
    radial-gradient(56% 52% at 106% 62%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%),
    radial-gradient(46% 46% at 10% 88%, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 68%),
    radial-gradient(44% 40% at 60% 118%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
  animation: auroraDrift 28s ease-in-out infinite; will-change: transform;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 500; pointer-events: none; opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1.6%, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@media (prefers-color-scheme: dark) {
  body::before {
    background:
      radial-gradient(48% 42% at 82% -4%, color-mix(in srgb, var(--cyan) 26%, transparent), transparent 70%),
      radial-gradient(44% 46% at -2% 16%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
      radial-gradient(54% 50% at 104% 80%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 72%),
      radial-gradient(42% 42% at 10% 104%, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 70%);
  }
  body::after { opacity: 0.08; mix-blend-mode: overlay; }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.032em; font-weight: 800; text-wrap: balance; }
h1 { letter-spacing: -0.045em; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--on-accent);
  padding: 10px 18px; border-radius: var(--r-pill); font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- 타이포 유틸 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--tint); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--r-pill);
}
.display {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1.03;
}
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); font-weight: 400; line-height: 1.72; letter-spacing: -0.01em; color: var(--text-soft); max-width: 54ch; }
.section-title { font-size: clamp(1.95rem, 4.4vw, 3.05rem); letter-spacing: -0.04em; line-height: 1.06; }
.muted { color: var(--text-soft); }
p { text-wrap: pretty; }
.value-cell p, .duo p, .check-item p, .feature-mini p, .step p, .brand-card p, .equip-card p, .split-copy p, .nav-card p { line-height: 1.66; }

/* ---------- 버튼 (pill, 락) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: var(--r-pill); font-weight: 700; font-size: 1rem;
  padding: 14px 20px 14px 24px; border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn .btn-ico {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: var(--r-pill); flex: none;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-md); }
.btn-primary .btn-ico { background: rgba(255, 255, 255, 0.18); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:hover .btn-ico { transform: translate(3px, -1px); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border-color: var(--border-strong); box-shadow: var(--shadow-sm);
}
.btn-ghost .btn-ico { background: var(--tint); color: var(--accent-ink); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.btn-ghost:hover .btn-ico { transform: translate(3px, -1px); }
.btn svg { width: 17px; height: 17px; }

/* ---------- 헤더 / 내비 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; }
.brand .bubble {
  width: 30px; height: 30px; border-radius: var(--r-pill); flex: none; position: relative;
  background: radial-gradient(circle at 35% 30%, var(--cyan), var(--accent));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.brand .bubble::after {
  content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%;
  top: 5px; left: 6px; background: rgba(255, 255, 255, 0.85);
}
.brand small { color: var(--text-faint); font-weight: 600; font-size: 0.72rem; letter-spacing: 0; }
.brand-logo { height: 50px; width: auto; display: block; }
.footer-brand .brand-logo { height: 46px; margin-bottom: 14px; }
@media (prefers-color-scheme: dark) { .brand-logo { filter: brightness(0) invert(1); } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.95rem; color: var(--text-soft);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--accent-ink); background: var(--tint); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 16px 11px 20px; font-size: 0.92rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--border-strong); position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; width: 22px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform 0.4s var(--ease-soft), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 섹션 골격 ---------- */
main { display: block; }
/* 대칭 상하 여백 → 인접 섹션 사이 일관된 거리 (붙는 구간 방지) */
.section { padding-block: clamp(2.75rem, 5.5vw, 4.75rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- 히어로 (비대칭 스플릿) ---------- */
.hero { padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 55% at 82% 12%, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 70%),
    radial-gradient(55% 60% at 8% 90%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-copy h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); margin: 20px 0 0; }
.hero-copy .lead { margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-media {
  position: relative; padding: 10px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.hero-media img { border-radius: calc(var(--r-lg) - 10px); aspect-ratio: 4 / 3.1; object-fit: cover; width: 100%; }
.hero-media .chip {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 10px 18px; box-shadow: var(--shadow-md); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 9px;
}
.hero-media .chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- 지표 스트립 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.stats .stat { background: var(--surface); padding: 26px 22px; }
.stats .num { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; color: var(--accent-ink); }
.stats .lbl { color: var(--text-soft); font-size: 0.92rem; margin-top: 4px; }

/* ---------- 인증 배너 (스플릿) ---------- */
.cert-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.cert-inner .frame { padding: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.cert-inner .frame img { border-radius: calc(var(--r-lg) - 10px); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tagpill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-pill); background: var(--tint); color: var(--accent-ink); font-weight: 700; font-size: 0.88rem; border: 1px solid var(--border); }

/* ---------- 카드 / 그리드 공통 (프리미엄 재질: 이중 베젤 + 시네) ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, #fff), var(--surface));
  border: 1px solid var(--border); border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
/* 그라데이션 헤어라인 테두리 (상단 액센트 → 하단 뉴트럴) */
.card::before, .step::before, .hero-media::before, .frame::before, .split-media::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 32%, transparent), rgba(255, 255, 255, 0) 42%, var(--border));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background 0.5s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), var(--shadow-lg); }
.card:hover::before { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 60%, transparent), rgba(255, 255, 255, 0) 46%, var(--border-strong)); }
/* 액센트 카드는 흰색 시네 베젤 */
.cell-accent::before, .check-item.feat::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.1));
}
.cell-accent, .check-item.feat { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), var(--shadow-md); }
/* 미디어 프레임 + 스텝 + 지표: 상단 시네 + 정교 그림자 */
.step, .hero-media, .frame, .split-media { position: relative; }
.hero-media, .frame, .split-media { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-lg); }
.stats { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-md); }
.step { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-sm); }
@media (prefers-color-scheme: dark) {
  .card { background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 84%, #fff 7%), var(--surface)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), var(--shadow-md); }
  .card:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), var(--shadow-lg); }
  .cell-accent, .check-item.feat { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), var(--shadow-md); }
  .hero-media, .frame, .split-media, .stats, .step { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow-md); }
}

/* 핵심가치 벤토 */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.value-cell { padding: 26px; display: flex; flex-direction: column; justify-content: flex-start; min-height: 176px; overflow: hidden; position: relative; }
.cell-accent { justify-content: space-between; }
.value-cell h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-cell p { color: var(--text-soft); font-size: 0.96rem; }
.value-cell .vc-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--tint); color: var(--accent-ink); margin-bottom: 18px; }
.value-cell .vc-ico svg { width: 24px; height: 24px; }
.span-2 { grid-column: span 2; }
.cell-accent { background: linear-gradient(150deg, var(--accent), var(--accent-strong)); color: var(--on-accent); border: none; }
.cell-accent p { color: rgba(255, 255, 255, 0.85); }
.cell-accent .vc-ico { background: rgba(255, 255, 255, 0.16); color: #fff; }
.cell-image { padding: 0; min-height: 176px; position: relative; }
.cell-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card); }
.cell-tint { background: var(--tint); }

/* ---------- 페이지 안내 카드 ---------- */
.nav-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nav-card { position: relative; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.nav-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 20, 48, 0.15), rgba(6, 20, 48, 0.78)); z-index: 1; }
.nav-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s var(--ease); }
.nav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.nav-card:hover img { transform: scale(1.06); }
.nav-card .nc-body { position: relative; z-index: 2; }
.nav-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.nav-card p { color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; }
.nav-card .nc-go { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; font-size: 0.9rem; }
.nav-card .nc-go svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.nav-card:hover .nc-go svg { transform: translateX(4px); }

/* ---------- 페이지 상단 히어로(서브) ---------- */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero .lead { margin-top: 18px; }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); margin-top: 18px; }
.breadcrumb { color: var(--text-faint); font-size: 0.9rem; font-weight: 600; }
.breadcrumb a:hover { color: var(--accent-ink); }

/* ---------- 창업: 하이라이트 배너 ---------- */
.highlight {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong)); color: #fff;
  border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden;
}
.highlight::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; right: -80px; top: -120px; background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%); }
.highlight h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); position: relative; }
.highlight p { color: rgba(255, 255, 255, 0.88); margin-top: 14px; max-width: 60ch; position: relative; }

/* ---------- 창업: 장점 스플릿 ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split + .split { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.split .split-media { padding: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split .split-media img { border-radius: calc(var(--r-lg) - 8px); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-media { order: 1; }
.badge-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--tint); color: var(--accent-ink); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.split-copy h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; color: var(--text-soft); }
.check-list li svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }

/* 장점 3·4 2열 카드(레이아웃 패밀리 전환) */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo .card { padding: 30px; }
.duo .badge-num { margin-bottom: 18px; }
.duo h3 { font-size: 1.35rem; margin-bottom: 10px; }
.duo p { color: var(--text-soft); }

/* ---------- 체크사항 그리드 (다른 패밀리) ---------- */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.check-item { padding: 28px; position: relative; overflow: hidden; }
.check-item .badge-num { background: var(--surface-2); }
.check-item h3 { font-size: 1.18rem; margin-bottom: 8px; }
.check-item p { color: var(--text-soft); font-size: 0.95rem; }
.check-item.feat { background: linear-gradient(150deg, var(--accent), var(--accent-strong)); color: #fff; border: none; }
.check-item.feat .badge-num { background: rgba(255, 255, 255, 0.18); color: #fff; }
.check-item.feat p { color: rgba(255, 255, 255, 0.85); }

/* ---------- 프로세스 스텝 ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.step { position: relative; padding: 26px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.step .s-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--tint); color: var(--accent-ink); margin-bottom: 16px; }
.step .s-ico svg { width: 24px; height: 24px; }
.step .s-k { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-ink); }
.step h3 { font-size: 1.12rem; margin: 6px 0 8px; }
.step p { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- 매장 갤러리 ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--r-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--surface); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 700; font-size: 0.9rem; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }
.gallery figure.has-cap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6, 20, 48, 0.55)); }
.g-wide { grid-column: span 6; aspect-ratio: 128 / 30; }
.g-half { grid-column: span 3; aspect-ratio: 4 / 3; }
.g-third { grid-column: span 2; aspect-ratio: 1 / 1; }

/* 공간 특징 아이콘 그리드 */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-mini { padding: 26px; }
.feature-mini .fm-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--tint); color: var(--accent-ink); margin-bottom: 16px; }
.feature-mini .fm-ico svg { width: 24px; height: 24px; }
.feature-mini h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-mini p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- 장비 카드 ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.equip-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.equip-card .ec-media { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.equip-card .ec-media img { width: 100%; height: 100%; object-fit: cover; }
.equip-card .ec-media.ph-media { display: grid; place-items: center; background: linear-gradient(150deg, var(--tint), var(--surface-2)); color: var(--accent-ink); }
.equip-card .ec-media.ph-media svg { width: 84px; height: 84px; opacity: 0.8; }
.equip-card .ec-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.equip-card .ec-cat { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-ink); text-transform: uppercase; }
.equip-card h3 { font-size: 1.3rem; }
.spec-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.spec-rows .sr { background: var(--surface-2); border-radius: var(--r-sm); padding: 12px 14px; }
.spec-rows .sr .k { font-size: 0.76rem; color: var(--text-faint); font-weight: 600; }
.spec-rows .sr .v { font-size: 0.98rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.35; }
.ph-note { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: var(--accent-ink); background: var(--tint); border: 1px dashed var(--border-strong); padding: 5px 12px; border-radius: var(--r-pill); }

/* 세탁기 4열 그리드 */
.equip-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
/* 실제 제품 이미지(세로형) — contain + 틴트 배경 */
.equip-card .ec-media.prod { aspect-ratio: 4 / 5; background: linear-gradient(155deg, var(--tint), var(--surface-2)); display: block; }
.equip-card .ec-media.prod img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform 0.5s var(--ease); }
.equip-card:hover .ec-media.prod img { transform: scale(1.04); }

/* 브랜드 로고월 */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.logo-card { padding: 28px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.logo-box { width: 100%; height: 82px; background: #fff; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid var(--border); overflow: hidden; }
.logo-box img { max-width: 100%; max-height: 58px; width: auto; height: auto; object-fit: contain; }
.logo-box.dark { background: #10141c; border-color: rgba(255, 255, 255, 0.12); }
.logo-box.dark img { max-height: 54px; }
.logo-card .lc-name { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.logo-card .lc-sub { font-size: 0.85rem; color: var(--text-soft); }

/* 블로그 배너 */
.blog-banner { display: block; position: relative; border-radius: var(--r-card); overflow: hidden; padding: 10px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.blog-banner img { width: 100%; height: auto; display: block; border-radius: calc(var(--r-card) - 10px); }
.blog-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* 브랜드 인증(장비) */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-card { padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.brand-mark { width: 84px; height: 84px; border-radius: 22px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); }
.brand-mark svg { width: 48px; height: 48px; }
.brand-card h3 { font-size: 1.2rem; }
.brand-card p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- CTA 밴드 ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong)); color: #fff;
  border-radius: var(--r-lg); padding: clamp(2.4rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before, .cta-inner::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%); }
.cta-inner::before { width: 360px; height: 360px; top: -140px; left: -90px; }
.cta-inner::after { width: 300px; height: 300px; bottom: -150px; right: -80px; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); position: relative; }
.cta-inner p { color: rgba(255, 255, 255, 0.88); margin-top: 14px; position: relative; }
.cta-inner .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; position: relative; }
.btn-onblue { background: #fff; color: var(--accent-strong); box-shadow: var(--shadow-lg); }
.btn-onblue .btn-ico { background: var(--tint); color: var(--accent-strong); }
.btn-onblue:hover { transform: translateY(-2px); }
.btn-onblue:hover .btn-ico { transform: translate(3px, -1px); }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.btn-outline-w .btn-ico { background: rgba(255, 255, 255, 0.16); }
.btn-outline-w:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ---------- 푸터 ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); padding-block: clamp(2.5rem, 5vw, 3.5rem); margin-top: clamp(1rem, 2vw, 2rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-soft); font-size: 0.9rem; margin-top: 4px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: var(--text-soft); font-size: 0.94rem; padding: 4px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent-ink); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--text-faint); font-size: 0.86rem; }

/* ---------- 모바일 내비 패널 ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; padding: calc(var(--header-h) + 20px) 24px 40px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; padding: 14px 4px; border-bottom: 1px solid var(--border); opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
body.nav-open .mobile-nav a { opacity: 1; transform: translateY(0); }
body.nav-open .mobile-nav a:nth-child(1) { transition-delay: 0.06s; }
body.nav-open .mobile-nav a:nth-child(2) { transition-delay: 0.11s; }
body.nav-open .mobile-nav a:nth-child(3) { transition-delay: 0.16s; }
body.nav-open .mobile-nav a:nth-child(4) { transition-delay: 0.21s; }
body.nav-open .mobile-nav a:nth-child(5) { transition-delay: 0.26s; }
.mobile-nav .btn { margin-top: 20px; justify-content: center; opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease) 0.3s, transform 0.5s var(--ease) 0.3s; }
body.nav-open .mobile-nav .btn { opacity: 1; transform: translateY(0); }

/* ---------- 스크롤 리빌 (JS 있을 때만 숨김 — 미실행 시 콘텐츠 항상 노출) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px) scale(0.985); filter: blur(6px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }

/* ---------- 히어로 버블 (브랜드 물방울 모티프) ---------- */
/* 텍스트/버튼보다 위(z축)에 떠서 실제로 지나가며 겹친 부분을 유리 렌즈처럼 굴절·투명하게 보여줌 */
.bubbles { position: absolute; inset: 0; z-index: 5; overflow: hidden; pointer-events: none; }
.bubbles span {
  position: absolute; bottom: -70px; display: block; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.06) 55%, transparent 72%);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.6), inset 0 -6px 10px rgba(255, 255, 255, 0.08), 0 1px 4px rgba(10, 20, 45, 0.16);
  backdrop-filter: blur(2.5px) brightness(1.12) contrast(0.92) saturate(1.2);
  -webkit-backdrop-filter: blur(2.5px) brightness(1.12) contrast(0.92) saturate(1.2);
  animation: bubbleRise var(--bt, 16s) linear infinite; animation-delay: var(--bd, 0s);
  will-change: transform, opacity;
}
@keyframes bubbleRise {
  0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  12% { opacity: 0.5; }
  70% { opacity: 0.32; }
  100% { transform: translate3d(var(--bx, 10px), -118vh, 0) scale(1); opacity: 0; }
}
.bubbles span:nth-child(1) { left: 6%;  width: 26px; height: 26px; --bt: 15s; --bd: 0s;   --bx: 14px; }
.bubbles span:nth-child(2) { left: 18%; width: 14px; height: 14px; --bt: 12s; --bd: 2s;   --bx: -10px; }
.bubbles span:nth-child(3) { left: 30%; width: 34px; height: 34px; --bt: 19s; --bd: 1s;   --bx: 8px; }
.bubbles span:nth-child(4) { left: 45%; width: 18px; height: 18px; --bt: 14s; --bd: 4s;   --bx: -14px; }
.bubbles span:nth-child(5) { left: 60%; width: 22px; height: 22px; --bt: 17s; --bd: 3s;   --bx: 12px; }
.bubbles span:nth-child(6) { left: 72%; width: 12px; height: 12px; --bt: 11s; --bd: 1.5s; --bx: -8px; }
.bubbles span:nth-child(7) { left: 84%; width: 30px; height: 30px; --bt: 20s; --bd: 5s;   --bx: 10px; }
.bubbles span:nth-child(8) { left: 92%; width: 16px; height: 16px; --bt: 13s; --bd: 2.5s; --bx: -12px; }
.bubbles span:nth-child(9)  { left: 12%; width: 18px; height: 18px; --bt: 16s; --bd: 6.5s; --bx: 10px; }
.bubbles span:nth-child(10) { left: 24%; width: 30px; height: 30px; --bt: 22s; --bd: 8s;   --bx: -12px; }
.bubbles span:nth-child(11) { left: 38%; width: 15px; height: 15px; --bt: 13.5s; --bd: 5.5s; --bx: 9px; }
.bubbles span:nth-child(12) { left: 53%; width: 24px; height: 24px; --bt: 18s; --bd: 7s;   --bx: -10px; }
.bubbles span:nth-child(13) { left: 67%; width: 17px; height: 17px; --bt: 15.5s; --bd: 9.5s; --bx: 13px; }
.bubbles span:nth-child(14) { left: 79%; width: 21px; height: 21px; --bt: 21s; --bd: 4.5s; --bx: -9px; }


/* ---------- 헤드라인 마스크 등장 + 히어로 로드 스태거 ---------- */
.hl-mask { display: block; }
.hl-mask .ln { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.js .hl-mask .ln > span { display: block; transform: translateY(115%); animation: lineRise 0.9s var(--ease) forwards; }
.js .hl-mask .ln:nth-child(1) > span { animation-delay: 0.05s; }
.js .hl-mask .ln:nth-child(2) > span { animation-delay: 0.16s; }
@keyframes lineRise { to { transform: translateY(0); } }

.js .hero-in { opacity: 0; transform: translateY(18px); animation: heroIn 0.8s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- 카드 틸트 + 커서 스포트라이트 ---------- */
.spot { position: relative; }
.spot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--accent) 15%, transparent), transparent 62%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.spot:hover::after { opacity: 1; }
.nav-card.spot::after, .cell-accent.spot::after { background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 62%); }
.tilting { transition: transform 0.12s var(--ease); }

/* ---------- 키워드 마퀴 밴드 ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--surface); padding-block: clamp(16px, 2.4vw, 24px); }
.marquee-track { display: flex; width: max-content; animation: marq 24s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: clamp(24px, 4vw, 46px); padding-right: clamp(24px, 4vw, 46px); }
.marquee-group span { font-size: clamp(1.35rem, 2.8vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text); white-space: nowrap; }
.marquee-group span.kw { color: var(--accent-ink); }
.marquee-group i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); opacity: 0.55; flex: none; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- 사진 갤러리 + 라이트박스 ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo { padding: 0; border: 0; background: var(--surface-2); cursor: pointer; border-radius: var(--r-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6, 20, 48, 0.4)); opacity: 0; transition: opacity 0.3s var(--ease); }
.photo::before { content: ""; position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; z-index: 2; border-radius: 50%; opacity: 0; transform: scale(0.8); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%231857d6'%3E%3Cpath d='M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Zm112,0a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Z'/%3E%3C/svg%3E") center / 20px no-repeat; }
.photo:hover img { transform: scale(1.06); }
.photo:hover::after, .photo:hover::before { opacity: 1; }
.photo:hover::before { transform: scale(1); }
.photo:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 5vw;
  background: rgba(6, 12, 26, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--r-card); box-shadow: var(--shadow-lg); object-fit: contain; background: #0a1120; }
.lb-btn { position: absolute; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease); backdrop-filter: blur(6px); }
.lb-btn:hover { background: rgba(255, 255, 255, 0.28); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-count { position: absolute; bottom: 4vw; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 700; background: rgba(255, 255, 255, 0.14); padding: 6px 16px; border-radius: var(--r-pill); font-size: 0.9rem; }
@media (max-width: 760px) {
  .lb-prev { left: 12px; } .lb-next { right: 12px; } .lb-close { top: 14px; right: 14px; }
  .lb-btn { width: 44px; height: 44px; } .lb-count { bottom: 16px; }
}

/* ---------- 반응형 ---------- */
@media (max-width: 1000px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid, .equip-grid, .equip-4, .brand-grid, .nav-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-half { grid-column: span 2; }
  .g-third { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cert-inner { grid-template-columns: 1fr; }
  .value-grid, .nav-cards, .check-grid, .equip-grid, .equip-4, .brand-grid, .duo, .feature-row { grid-template-columns: 1fr; }
  .span-2, .cell-image.span-2 { grid-column: span 1; }
  .split, .split.reverse .split-copy, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .steps { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery { grid-template-columns: 1fr; }
  .g-wide, .g-half, .g-third { grid-column: span 1; }
  .g-wide { aspect-ratio: 128 / 34; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .cell-image { min-height: 200px; }
  /* 히어로 버튼 2개 한 줄 균등 분할 */
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn { flex: 1 1 0; min-width: 0; justify-content: center; white-space: nowrap; padding: 13px 12px; font-size: 0.9rem; gap: 6px; }
  .hero-cta .btn .btn-ico { width: 26px; height: 26px; }
  /* 브랜드 인증 태그 한 줄 */
  .pill-row { flex-wrap: nowrap; gap: 6px; }
  .tagpill { padding: 6px 10px; font-size: 0.72rem; white-space: nowrap; letter-spacing: -0.02em; }
  /* 모바일 푸터 재설계 */
  .footer-brand .brand-logo { height: 52px; }
  .footer-menu { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; row-gap: 0; }
  .footer-menu h4 { grid-column: 1 / -1; }
  .footer-menu a { padding: 9px 0; font-size: 0.98rem; }
  .footer-contact { display: flex; flex-direction: column; gap: 10px; }
  .footer-contact h4 { margin-bottom: 2px; }
  .footer-contact .fc-tel {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-pill);
    padding: 13px 18px; font-weight: 700; font-size: 0.98rem; color: var(--text);
  }
  .footer-contact .fc-tel::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--accent-ink); border-bottom: 2px solid var(--accent-ink); transform: rotate(-45deg); flex: none; margin-right: 2px; }
  .footer-contact .fc-time { font-size: 0.86rem; color: var(--text-faint); padding: 6px 2px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .bubbles { display: none; }
  .spot::after { display: none; }
  .marquee-track { animation: none !important; }
  .js .hl-mask .ln > span { transform: none; }
  .js .hero-in { opacity: 1; transform: none; }
}
