/* ═══════════════════════════════════════════════════════════════════════
   리지워크 — 등산·아웃도어
   윗부분은 공통 뼈대 키트(kit.css). 그 아래가 이 벌의 디자인이다.
   색·활자·간격은 00-디자인보드.png 에서만 가져왔다.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 기본 ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img, video { max-width: 100%; height: auto; }
img { -webkit-user-drag: none; user-select: none; }
.frame { display: block; }

/* ── 초점 ─────────────────────────────────────────────────────────── */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: .75rem 1rem; background: Canvas; color: CanvasText;
}
.skip-link:focus { left: 0; }

/* ── 터치 영역 ────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .site-header a, .site-header button,
  .drawer a, .drawer button,
  .dots button, .pager button, .tab {
    min-width: 44px; min-height: 44px;
  }
}

/* ── 가로 넘침 ────────────────────────────────────────────────────── */
.scroll-x { overflow-x: auto; position: relative; -webkit-overflow-scrolling: touch; }
.clip { overflow: clip; }

/* ── 무JS 완성본 ──────────────────────────────────────────────────── */
.acc-item .acc-panel { display: block; }
.js .acc-item .acc-panel { display: none; }
.js .acc-item.open .acc-panel { display: block; }

.js [role="tabpanel"][hidden] { display: none; }
[role="tabpanel"][hidden] { display: block; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

.js-only { display: none; }
.js .js-only { display: revert; }

:where([hidden]):not([role="tabpanel"]) { display: none !important; }

/* ── 모션 끔 ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── 모바일 서랍 ──────────────────────────────────────────────────── */
.menu-btn { display: none; }
@media (max-width: 767px) { .menu-btn { display: inline-flex; } }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
  transform: translateX(100%); transition: transform .28s ease;
  z-index: 60; overflow-y: auto;
  visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }

.scrim {
  position: fixed; inset: 0; z-index: 50;
  background: rgb(10 22 17 / .55);
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }

@media (min-width: 768px) { .drawer, .scrim { display: none; } }

/* ── 토스트 ───────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 24px; translate: -50% 0;
  z-index: 80; pointer-events: none;
  opacity: 0; transition: opacity .25s ease, translate .25s ease;
}
.toast.show { opacity: 1; translate: -50% -6px; }

/* ── 폼 ───────────────────────────────────────────────────────────── */
.agree input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.agree input:focus-visible + label .box { outline: 2px solid currentColor; outline-offset: 2px; }

.spinner {
  display: inline-block; width: 1em; height: 1em; vertical-align: -.125em;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: kit-spin .7s linear infinite;
}
@keyframes kit-spin { to { rotate: 360deg; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ── 구획 리듬 ────────────────────────────────────────────────────── */
.section { padding-block: calc(var(--section, 96px) / 2); }
.section-lead { padding-top: var(--section, 96px); }
.section-last { padding-bottom: var(--section, 96px); }


/* ═══════════════════════════════════════════════════════════════════════
   여기부터 리지워크의 생김새
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* 00-디자인보드 COLOR SYSTEM */
  --forest-900: #1B3B2E;
  --forest-700: #264A36;
  --orange:     #F15A24;
  --paper:      #F2F4F5;
  --slate:      #3D4651;

  /* 위 다섯 색에서 뽑은 파생값 */
  --forest-950: #12291F;
  --forest-600: #33604A;
  --ink:        #17211C;
  --slate-600:  #5B6672;
  --slate-400:  #8B949E;
  --line:       #DCE1E3;
  --line-soft:  #E8EBEC;
  --line-dark:  rgb(242 244 245 / .18);
  --white:      #FFFFFF;
  --orange-700: #C9430F;

  /* 의미 색 — 글자·아이콘을 반드시 병기한다(색만으로 상태를 알리지 않는다) */
  --ok:   #1F6B4B;
  --warn: #9A5B00;
  --err:  #B23A2B;

  /* 8pt 기준 간격 (LAYOUT & GRID: 8 16 24 32 48 64 96) */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px;

  --radius: 4px;
  --radius-lg: 8px;
  --section: 112px;
  --wrap: 1240px;

  --shadow-1: 0 1px 2px rgb(27 59 46 / .07), 0 10px 30px rgb(27 59 46 / .07);
  --shadow-2: 0 2px 6px rgb(27 59 46 / .10), 0 22px 54px rgb(27 59 46 / .13);

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, sans-serif;
  --serif: "Nanum Myeongjo", "Nanum Myeongjo OTF", serif;
}

@media (max-width: 900px) { :root { --section: 80px; } }
@media (max-width: 560px) { :root { --section: 64px; } }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) { body { padding-bottom: 64px; } }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.28; letter-spacing: -.025em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }

.sprite { position: absolute; width: 0; height: 0; }
.ic { width: 24px; height: 24px; display: inline-block; vertical-align: middle;
      fill: none; stroke: currentColor; stroke-width: 1.5;
      stroke-linecap: round; stroke-linejoin: round; }
.ic-sm { width: 18px; height: 18px; }
.ic-lg { width: 32px; height: 32px; stroke-width: 1.3; }

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

.skip-link { background: var(--forest-900); color: var(--paper); border-radius: 0 0 var(--radius) 0; font-weight: 600; }

/* ── 표제 부품 ────────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: var(--s2);
}
.eyebrow::after { content: ""; flex: 0 0 40px; height: 1px; background: var(--orange); opacity: .55; }
.eyebrow.on-dark { color: #F0A585; }
.eyebrow.on-dark::after { background: #F0A585; }

.h-xl { font-size: clamp(34px, 6.6vw, 76px); line-height: 1.14; letter-spacing: -.035em; }
.h-lg { font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -.03em; }
.h-md { font-size: clamp(20px, 2.4vw, 26px); }
.h-sm { font-size: 18px; }

.lede { font-size: clamp(15px, 1.5vw, 18px); color: var(--slate-600); line-height: 1.8; max-width: 62ch; }
.note { font-size: 13px; color: var(--slate-400); line-height: 1.7; }
.num { font-family: var(--serif); font-feature-settings: "tnum"; }

/* ── 단추 ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px;
  border: 1px solid transparent; border-radius: var(--radius);
  font: inherit; font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  cursor: pointer; text-align: center;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-700); }
.btn-dark { background: var(--forest-900); color: var(--paper); }
.btn-dark:hover { background: var(--forest-700); }
.btn-line { background: transparent; color: var(--forest-900); border-color: var(--forest-900); }
.btn-line:hover { background: var(--forest-900); color: var(--paper); }
.btn-line.on-dark { color: var(--paper); border-color: rgb(242 244 245 / .55); }
.btn-line.on-dark:hover { background: var(--paper); color: var(--forest-900); }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ── 헤더 ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(18 41 31 / .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgb(242 244 245 / .10);
  color: var(--paper);
  transition: background-color .2s ease;
}
.site-header.is-stuck { background: rgb(18 41 31 / .98); }
.header-inner {
  width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: var(--s3); min-height: 68px;
}
@media (max-width: 560px) { .header-inner { width: min(100% - 24px, var(--wrap)); gap: 10px; } }

.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -.03em; flex: 0 0 auto; }
.brand-mark { width: 26px; height: 22px; flex: 0 0 auto; }
.brand-mark path { fill: var(--orange); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: var(--s2); }
.nav a {
  display: inline-flex; align-items: center; padding: 8px 13px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600; color: rgb(242 244 245 / .82);
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--paper); background: rgb(242 244 245 / .09); }
.nav a[aria-current="page"] { color: var(--paper); box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }
@media (max-width: 767px) { .nav { display: none; } }

.header-tools { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius);
  color: rgb(242 244 245 / .86);
}
.icon-link:hover { background: rgb(242 244 245 / .10); color: var(--paper); }
.header-cta { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 18px; margin-left: 6px;
  background: var(--orange); color: #fff; border-radius: var(--radius); font-weight: 700; font-size: 14px; }
.header-cta:hover { background: var(--orange-700); }
@media (max-width: 899px) { .header-cta { display: none; } }

.menu-btn {
  align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 0; color: var(--paper); cursor: pointer;
}
.menu-bar { display: block; width: 22px; height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 7h17M3.5 12h17M3.5 17h17' stroke='%23000' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/22px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 7h17M3.5 12h17M3.5 17h17' stroke='%23000' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/22px no-repeat; }

/* ── 서랍 ─────────────────────────────────────────────────────────── */
.drawer { background: var(--forest-950); color: var(--paper); padding: var(--s3) var(--s3) var(--s5); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); padding-bottom: var(--s3); border-bottom: 1px solid var(--line-dark); }
.drawer-head .brand { font-size: 18px; }
.drawer-close { display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px;
  background: transparent; border: 1px solid var(--line-dark); border-radius: var(--radius);
  color: var(--paper); font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; }
.drawer-nav { display: flex; flex-direction: column; padding: var(--s2) 0; }
.drawer-nav a { display: flex; align-items: center; padding: 14px 2px; font-size: 17px; font-weight: 600;
  border-bottom: 1px solid var(--line-dark); }
.drawer-nav a[aria-current="page"] { color: var(--orange); }
.drawer-cta { display: flex; align-items: center; justify-content: center; margin-top: var(--s3);
  min-height: 50px; background: var(--orange); color: #fff; border-radius: var(--radius); font-weight: 700; }
.drawer-tel { margin-top: var(--s2); text-align: center; font-size: 15px; color: rgb(242 244 245 / .72); }
.drawer-tel a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }

/* ── 토스트 ───────────────────────────────────────────────────────── */
.toast { max-width: min(92vw, 460px); }
.toast-msg { display: block; padding: 13px 20px; border-radius: var(--radius);
  background: var(--forest-950); color: var(--paper); font-size: 14.5px; font-weight: 600;
  box-shadow: var(--shadow-2); text-align: center; }
@media (max-width: 767px) { .toast { bottom: 84px; } }

/* ── 히어로 ───────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--forest-950); color: var(--paper); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 33%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(94deg, rgb(18 41 31 / .90) 0%, rgb(18 41 31 / .74) 34%, rgb(18 41 31 / .30) 62%, rgb(18 41 31 / .42) 100%),
    linear-gradient(to top, rgb(18 41 31 / .85) 0%, rgb(18 41 31 / 0) 38%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  min-height: min(86vh, 748px); padding: var(--s6) 0 var(--s5);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 560px) { .hero-inner { width: min(100% - 32px, var(--wrap)); min-height: 0; padding: var(--s5) 0 var(--s4); } }
.hero h1 { max-width: 15ch; text-shadow: 0 2px 24px rgb(10 22 17 / .45); }
.hero-sub { margin-top: var(--s3); font-size: clamp(15px, 1.6vw, 18px); color: rgb(242 244 245 / .86); max-width: 40ch; }
.hero-cta { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: 12px; }
.hero-foot { position: relative; z-index: 1; width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s3); padding-bottom: var(--s4); }
.hero-index { display: flex; align-items: center; gap: 4px; }
.hero-index a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px;
  font-family: var(--serif); font-size: 13px; letter-spacing: .06em; color: rgb(242 244 245 / .52); }
.hero-index a:first-child { color: var(--paper); }
.hero-index a:first-child::after { content: ""; width: 26px; height: 1px; margin-left: 8px; background: rgb(242 244 245 / .5); }
.hero-index a:hover { color: var(--paper); }
.hero-scroll { display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--serif); font-size: 11px; letter-spacing: .28em; color: rgb(242 244 245 / .66); }
.hero-scroll::before { content: ""; width: 1px; height: 46px; background: linear-gradient(to bottom, rgb(242 244 245 / 0), rgb(242 244 245 / .8)); }
@media (max-width: 767px) { .hero-index { display: none; } .hero-foot { justify-content: flex-end; padding-bottom: var(--s3); } }

/* ── 하이라이트 3장 (가운데가 한 칸 올라간다 — 01-home 시안) ───────── */
.hl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s5); }
.hl-card { position: relative; display: block; background: var(--forest-900); border-radius: var(--radius);
  overflow: clip; box-shadow: var(--shadow-1); transition: transform .22s ease, box-shadow .22s ease; }
.hl-card:nth-child(2) { transform: translateY(-32px); }
.hl-card:hover { box-shadow: var(--shadow-2); }
.hl-card:nth-child(2):hover { transform: translateY(-38px); }
.hl-card:hover:not(:nth-child(2)) { transform: translateY(-6px); }
.hl-fig { display: block; margin: 0; aspect-ratio: 4 / 3; }
.hl-fig img { width: 100%; height: 100%; object-fit: cover; }
.hl-body { position: absolute; inset: auto 0 0 0; padding: var(--s4) var(--s3) var(--s3); color: var(--paper);
  background: linear-gradient(to top, rgb(18 41 31 / .94) 12%, rgb(18 41 31 / 0)); }
.hl-body h3 { font-size: 20px; }
.hl-body p { margin-top: 6px; font-size: 14px; color: rgb(242 244 245 / .82); line-height: 1.6; }
.hl-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 700; color: #F5B49A; }
@media (max-width: 900px) {
  .hl-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s2); margin-top: var(--s4); }
  .hl-card:nth-child(2), .hl-card:nth-child(2):hover, .hl-card:hover { transform: none; }
  .hl-fig { aspect-ratio: 16 / 9; }
}

/* ── 레이어링 시스템 (sticky layer reveal) ────────────────────────── */
.layering { background: var(--forest-950); color: var(--paper); }
.layering .lede { color: rgb(242 244 245 / .74); }
.lay-grid { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: var(--s6); margin-top: var(--s5); align-items: start; }
.lay-stage { position: sticky; top: 104px; }
.lay-panel { background: rgb(38 74 54 / .55); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: var(--s3); }
.lay-svg { width: 100%; height: auto; display: block; }
.lay-svg .band { fill: none; stroke: rgb(242 244 245 / .30); stroke-width: 2; transition: stroke .3s ease, stroke-width .3s ease, fill .3s ease; }
.lay-svg .band-fill { fill: rgb(242 244 245 / .05); }
.lay-svg .band-txt { fill: rgb(242 244 245 / .62); font-family: var(--sans); font-size: 12px; font-weight: 700; transition: fill .3s ease; }
.lay-svg .skin { fill: rgb(242 244 245 / .12); stroke: none; }
.lay-stage[data-active="1"] .l1 .band,
.lay-stage[data-active="2"] .l2 .band,
.lay-stage[data-active="3"] .l3 .band { stroke: var(--orange); stroke-width: 3.5; fill: rgb(241 90 36 / .14); }
.lay-stage[data-active="1"] .l1 .band-txt,
.lay-stage[data-active="2"] .l2 .band-txt,
.lay-stage[data-active="3"] .l3 .band-txt { fill: #F7B79C; }

.elev { width: 100%; height: auto; display: block; margin-top: var(--s2); }
.elev .ground { fill: rgb(242 244 245 / .07); }
.elev .line { fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.elev .grid { stroke: rgb(242 244 245 / .14); stroke-width: 1; }
.elev .mk { fill: var(--forest-950); stroke: rgb(242 244 245 / .55); stroke-width: 1.6; }
.elev .mk-txt { fill: rgb(242 244 245 / .66); font-family: var(--serif); font-size: 11px; }
.elev-cap { margin-top: 10px; font-size: 12.5px; color: rgb(242 244 245 / .6); }

.lay-steps { display: flex; flex-direction: column; gap: var(--s6); }
.lay-step { border-left: 2px solid rgb(242 244 245 / .16); padding-left: var(--s3); }
.lay-step .step-no { font-family: var(--serif); font-size: 13px; letter-spacing: .18em; color: #F0A585; }
.lay-step h3 { margin-top: 6px; font-size: clamp(21px, 2.4vw, 28px); }
.lay-step p { margin-top: var(--s2); color: rgb(242 244 245 / .78); line-height: 1.85; }
.lay-step .warnline { display: flex; gap: 10px; margin-top: var(--s2); padding: 12px 14px;
  background: rgb(241 90 36 / .12); border: 1px solid rgb(241 90 36 / .38); border-radius: var(--radius);
  font-size: 14px; color: #FBD9CB; }
.lay-step .warnline .ic { flex: 0 0 auto; color: #F8A587; }
.lay-step ul { margin-top: var(--s2); display: grid; gap: 6px; }
.lay-step li { display: flex; gap: 9px; font-size: 14.5px; color: rgb(242 244 245 / .74); }
.lay-step li::before { content: "—"; color: rgb(242 244 245 / .4); }
@media (max-width: 980px) {
  .lay-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s4); }
  .lay-stage { position: static; }
  .lay-steps { gap: var(--s4); }
}

/* ── 방수지수 ─────────────────────────────────────────────────────── */
.wp-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s5); }
.wp-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: clip; }
.wp-card img { width: 100%; height: 132px; object-fit: cover; display: block; }
.wp-body { padding: var(--s3); }
.wp-body h3 { font-size: 17px; }
.wp-unit { display: block; margin-top: 4px; font-family: var(--serif); font-size: 12.5px; color: var(--orange); letter-spacing: .04em; }
.wp-body p { margin-top: 10px; font-size: 14px; color: var(--slate-600); line-height: 1.72; }
.wp-scale { margin-top: var(--s5); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); }
.wp-scale h3 { font-size: 18px; }
.wp-bars { margin-top: var(--s3); display: grid; gap: 14px; }
.wp-bar { display: grid; grid-template-columns: minmax(0, 148px) minmax(0, 1fr) auto; align-items: center; gap: var(--s2); font-size: 14px; }
.wp-bar b { font-weight: 700; }
.wp-track { height: 10px; border-radius: 999px; background: var(--line-soft); overflow: clip; }
.wp-fill { display: block; height: 100%; background: var(--forest-700); }
.wp-bar:nth-child(3) .wp-fill { background: var(--orange); }
.wp-bar .val { font-family: var(--serif); font-size: 14px; color: var(--slate); white-space: nowrap; }
@media (max-width: 980px) { .wp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .wp-grid { grid-template-columns: minmax(0, 1fr); }
  .wp-bar { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .wp-bar .val { justify-self: start; }
}

/* ── 판형: 안내 박스 ──────────────────────────────────────────────── */
.callout { display: flex; gap: 14px; padding: var(--s3); border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); font-size: 14.5px; color: var(--slate-600); line-height: 1.75; }
.callout .ic { flex: 0 0 auto; margin-top: 2px; }
.callout b { color: var(--ink); }
.callout-warn { background: #FDF3EE; border-color: #F3CFBE; color: #6B3B27; }
.callout-warn .ic { color: var(--orange); }
.callout-warn b { color: #8A2F14; }

/* ── 계획 세우기 띠 ───────────────────────────────────────────────── */
.plan-band { background: var(--forest-700); color: var(--paper); border-radius: var(--radius-lg); overflow: clip;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); align-items: center; gap: var(--s5); padding: var(--s5); }
.plan-band h2 { font-size: clamp(23px, 2.8vw, 32px); }
.plan-band p { margin-top: var(--s2); color: rgb(242 244 245 / .78); }
.plan-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s4); }
.plan-art { margin: 0; border-radius: var(--radius); overflow: clip; }
.plan-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .plan-band { grid-template-columns: minmax(0, 1fr); padding: var(--s4); gap: var(--s3); } .plan-art { display: none; } }

/* ── 면 머리 ──────────────────────────────────────────────────────── */
.page-head { background: var(--forest-950); color: var(--paper); padding: var(--s6) 0 var(--s5); }
.page-head h1 { font-size: clamp(30px, 5vw, 52px); }
.page-head .lede { margin-top: var(--s3); color: rgb(242 244 245 / .76); }

/* ── 컬렉션 모자이크 ──────────────────────────────────────────────── */
.mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto auto;
  gap: var(--s2); margin-top: var(--s4); }
.tile { position: relative; display: block; border-radius: var(--radius); overflow: clip; background: var(--forest-900); }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-a { grid-column: 1 / -1; aspect-ratio: 32 / 9; }
.tile-b { grid-column: 1; aspect-ratio: 3 / 2; }
.tile-c { grid-column: 1; aspect-ratio: 16 / 9; }
.tile-d { grid-column: 2; grid-row: 2 / 4; }
.tile-d img { min-height: 100%; }
.tile-label { position: absolute; inset: auto 0 0 0; padding: var(--s5) var(--s3) var(--s3); color: var(--paper);
  background: linear-gradient(to top, rgb(18 41 31 / .90) 10%, rgb(18 41 31 / 0)); }
.tile-label b { display: block; font-size: 19px; font-weight: 700; }
.tile-label span { display: block; margin-top: 3px; font-size: 13px; color: rgb(242 244 245 / .78); }
@media (max-width: 700px) {
  .mosaic { grid-template-columns: minmax(0, 1fr); }
  .tile-a { aspect-ratio: 16 / 7; }
  .tile-b, .tile-c { grid-column: 1; aspect-ratio: 16 / 9; }
  .tile-d { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 5; }
}

/* ── 상품 격자 (Container Query 로 카드 안쪽 배치를 바꾼다) ────────── */
.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: var(--s4); }
.filter-row .flabel { font-size: 13px; font-weight: 700; color: var(--slate-600); margin-right: 4px; }
.chip { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 600; color: var(--slate); cursor: pointer; }
.chip[aria-pressed="true"] { background: var(--forest-900); border-color: var(--forest-900); color: var(--paper); }

.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s3); }
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .prod-grid { grid-template-columns: minmax(0, 1fr); } }

.prod { container-type: inline-size; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: clip; display: flex; flex-direction: column; }
.prod-fig { position: relative; margin: 0; background: var(--paper); }
.prod-fig img { width: 100%; height: 230px; object-fit: cover; display: block; }
.prod-fig.contain img { object-fit: contain; padding: var(--s2); background: #fff; }
.prod-body { padding: var(--s3); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-layer { font-family: var(--serif); font-size: 12px; letter-spacing: .1em; color: var(--orange); }
.prod-name { font-size: 17px; font-weight: 700; }
.prod-spec { font-size: 13.5px; color: var(--slate-600); line-height: 1.65; }
.prod-price { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.prod-price small { font-size: 12px; font-weight: 500; color: var(--slate-400); margin-left: 6px; }
.prod-foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-top: var(--s1); }
@container (min-width: 340px) {
  .prod-body { gap: 12px; }
  .prod-name { font-size: 19px; }
  .prod-spec { font-size: 14px; }
}

.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.stock .ic { width: 15px; height: 15px; }
.stock-in { color: var(--ok); }
.stock-low { color: var(--warn); }
.stock-out { color: var(--err); }
.stock-soon { color: var(--slate-600); }

.cmp { position: absolute; opacity: 0; width: 1px; height: 1px; }
.cmp-label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 6px 14px 6px 10px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--slate); cursor: pointer; }
.cmp-label .box { width: 18px; height: 18px; border: 1.5px solid var(--slate-400); border-radius: 3px; display: inline-block; position: relative; }
.cmp:checked + .cmp-label { background: var(--forest-900); border-color: var(--forest-900); color: var(--paper); }
.cmp:checked + .cmp-label .box { background: var(--orange); border-color: var(--orange); }
.cmp:checked + .cmp-label .box::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg); }
.cmp:focus-visible + .cmp-label { outline: 2px solid var(--forest-900); outline-offset: 2px; }

/* ── Gear Matrix ──────────────────────────────────────────────────── */
.matrix-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2);
  margin-top: var(--s4); padding: 14px var(--s3); background: var(--forest-900); color: var(--paper); border-radius: var(--radius); }
.matrix-bar p { font-size: 14.5px; }
.matrix-bar b { font-family: var(--serif); font-size: 17px; color: #F7B79C; margin: 0 3px; }
.matrix-wrap { margin-top: var(--s2); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.matrix { width: 100%; min-width: 760px; font-size: 14px; }
.matrix th, .matrix td { padding: 14px var(--s2); text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.matrix thead th { background: var(--paper); font-size: 13px; letter-spacing: -.01em; vertical-align: bottom; }
.matrix thead th img { display: block; width: 100%; max-width: 96px; height: 64px; object-fit: contain; margin-bottom: 8px; }
.matrix tbody th { width: 148px; font-weight: 700; color: var(--slate-600); background: #FAFBFB; font-size: 13px; }
.matrix .v { font-family: var(--serif); font-size: 15px; color: var(--ink); }
.matrix .na { color: var(--slate-400); font-size: 13px; }
.matrix tr:last-child th, .matrix tr:last-child td { border-bottom: 0; }
.matrix .is-pick { background: #FFF6F2; }
.matrix thead th.is-pick { background: #FDE8DF; }

/* ── 사이즈 찾기 ──────────────────────────────────────────────────── */
.tool { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: clip; }
.tool-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.tool-in { padding: var(--s5); border-right: 1px solid var(--line-soft); }
.tool-out { padding: var(--s5); background: #FAFBFB; }
@media (max-width: 860px) {
  .tool-grid { grid-template-columns: minmax(0, 1fr); }
  .tool-in { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .tool-in, .tool-out { padding: var(--s4); }
}

.field-row { margin-top: var(--s3); }
.field-row:first-of-type { margin-top: 0; }
.field-row > .lbl { display: block; font-size: 13px; font-weight: 700; color: var(--slate-600); margin-bottom: 8px; }
.seg { display: flex; gap: 8px; }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg label { flex: 1; display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  border: 1px solid var(--line); border-radius: var(--radius); font-size: 15px; font-weight: 600; color: var(--slate); cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.seg input:checked + label { background: var(--forest-900); border-color: var(--forest-900); color: var(--paper); }
.seg input:focus-visible + label { outline: 2px solid var(--forest-900); outline-offset: 2px; }

.unit-field { position: relative; }
.unit-field .unit { position: absolute; right: 14px; top: 50%; translate: 0 -50%; font-size: 13px; color: var(--slate-400); pointer-events: none; }
.control {
  width: 100%; min-height: 50px; padding: 12px 46px 12px 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 16px; font-weight: 600; color: var(--ink);
}
select.control { padding-right: 40px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9.5l6 6 6-6' stroke='%235B6672' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; }
.control:focus-visible { outline: 2px solid var(--forest-900); outline-offset: 1px; border-color: var(--forest-900); }
textarea.control { padding-right: 14px; line-height: 1.7; resize: vertical; font-weight: 400; }
.field.invalid .control { border-color: var(--err); background: #FDF4F3; }
.err { display: none; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--err); }
.field.invalid .err, .agree.invalid .err { display: block; }

.size-out { text-align: center; }
.size-out .cap { font-size: 13px; font-weight: 700; color: var(--slate-600); letter-spacing: .04em; }
.size-letter { display: block; font-family: var(--serif); font-size: clamp(64px, 12vw, 108px); line-height: 1; margin-top: var(--s2); letter-spacing: -.02em; }
.size-note { margin-top: 6px; font-size: 13px; color: var(--slate-400); }
.size-body { display: grid; grid-template-columns: minmax(0, 1fr) 132px; gap: var(--s3); margin-top: var(--s4); text-align: left; align-items: center; }
.size-meas { display: grid; gap: 10px; }
.size-meas li { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--slate-600); }
.size-meas b { font-family: var(--serif); font-size: 17px; color: var(--ink); font-weight: 400; }
.silhouette { width: 100%; height: auto; }
.silhouette .body { fill: var(--line); }
.silhouette .rule { stroke: var(--slate-400); stroke-width: 1; }
@media (max-width: 420px) { .size-body { grid-template-columns: minmax(0, 1fr); } .silhouette { max-width: 120px; margin-inline: auto; } }

/* ── 레이어링 찾기 결과 ───────────────────────────────────────────── */
.layer-out { display: grid; gap: var(--s3); }
.temp-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s2); }
.temp-box { flex: 1 1 150px; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.temp-box .cap { display: block; font-size: 12.5px; font-weight: 700; color: var(--slate-600); }
.temp-box .big { display: block; margin-top: 6px; font-family: var(--serif); font-size: 32px; line-height: 1.1; }
.temp-box .sub { display: block; margin-top: 4px; font-size: 12.5px; color: var(--slate-400); }
.temp-box.accent { background: var(--forest-900); border-color: var(--forest-900); color: var(--paper); }
.temp-box.accent .cap { color: rgb(242 244 245 / .78); }
.temp-box.accent .sub { color: rgb(242 244 245 / .6); }

.rec-list { display: grid; gap: 10px; }
.rec { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s2); align-items: start;
  padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.rec .tag { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--paper);
  background: var(--forest-700); border-radius: var(--radius); padding: 6px 0; text-align: center; }
.rec b { display: block; font-size: 15.5px; }
.rec p { margin-top: 4px; font-size: 14px; color: var(--slate-600); line-height: 1.7; }

/* ── 패킹리스트 (입는 층 중심) ────────────────────────────────────── */
.pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(206px, 1fr)); gap: var(--s2); margin-top: var(--s4); }
.pack-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s3); }
.pack-col > h3 { display: flex; align-items: center; gap: 8px; font-size: 15.5px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.pack-col > h3 .tagno { font-family: var(--serif); font-size: 12px; color: var(--paper); background: var(--forest-700);
  border-radius: 3px; padding: 3px 7px; }
.pack-list { display: grid; gap: 2px; margin-top: 10px; }
.pack-list input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pack-list label { display: flex; align-items: flex-start; gap: 10px; min-height: 44px; padding: 10px 4px;
  font-size: 14.5px; color: var(--slate); cursor: pointer; line-height: 1.5; }
.pack-list label .box { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; border: 1.5px solid var(--slate-400);
  border-radius: 3px; position: relative; }
.pack-list input:checked + label { color: var(--slate-400); }
.pack-list input:checked + label .txt { text-decoration: line-through; }
.pack-list input:checked + label .box { background: var(--forest-700); border-color: var(--forest-700); }
.pack-list input:checked + label .box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg); }
.pack-list input:focus-visible + label .box { outline: 2px solid var(--forest-900); outline-offset: 2px; }
.pack-list .hint { display: block; font-size: 12.5px; color: var(--slate-400); }
.pack-sum { margin-top: var(--s3); padding: var(--s3); background: var(--forest-900); color: var(--paper); border-radius: var(--radius);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2); }
.pack-sum .txt { font-size: 15px; }
.pack-sum b { font-family: var(--serif); color: #F7B79C; }
.pack-sum .miss { display: block; margin-top: 4px; font-size: 13.5px; color: rgb(242 244 245 / .78); }

/* ── 표 ───────────────────────────────────────────────────────────── */
.tbl { width: 100%; min-width: 520px; font-size: 14px; background: var(--white); }
.tbl caption { text-align: left; padding: 14px var(--s3); font-size: 13px; color: var(--slate-600); }
.tbl th, .tbl td { padding: 13px var(--s2); text-align: left; border-bottom: 1px solid var(--line-soft); }
.tbl thead th { background: var(--paper); font-size: 13px; font-weight: 700; }
.tbl tbody th { font-weight: 700; }
.tbl td { font-family: var(--serif); }
.tbl-wrap { margin-top: var(--s3); border: 1px solid var(--line); border-radius: var(--radius); }

/* ── 스토리 ───────────────────────────────────────────────────────── */
.story-hero { background: var(--forest-950); color: var(--paper); border-radius: var(--radius-lg); overflow: clip;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); align-items: stretch; }
.story-copy { padding: var(--s6) var(--s5); }
.story-copy h1 { font-size: clamp(28px, 4.4vw, 46px); }
.story-copy p { margin-top: var(--s3); color: rgb(242 244 245 / .78); max-width: 46ch; }
.story-copy .btn { margin-top: var(--s4); }
.story-fig { margin: 0; }
.story-fig img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
@media (max-width: 860px) { .story-hero { grid-template-columns: minmax(0, 1fr); } .story-copy { padding: var(--s4); } .story-fig { order: -1; } .story-fig img { min-height: 240px; } }

.mat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s5); }
.mat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: clip; }
.mat img { width: 100%; height: 150px; object-fit: cover; display: block; }
.mat div { padding: var(--s3); }
.mat h3 { font-size: 16px; }
.mat p { margin-top: 8px; font-size: 13.5px; color: var(--slate-600); line-height: 1.7; }
@media (max-width: 980px) { .mat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .mat-grid { grid-template-columns: minmax(0, 1fr); } }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s5); counter-reset: st; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); }
.step .no { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: var(--orange); }
.step h3 { margin-top: 10px; font-size: 18px; }
.step p { margin-top: 10px; font-size: 14.5px; color: var(--slate-600); line-height: 1.75; }
@media (max-width: 860px) { .steps { grid-template-columns: minmax(0, 1fr); } }

.quote { margin: var(--s5) 0 0; padding: var(--s5); background: var(--forest-700); color: var(--paper); border-radius: var(--radius-lg); }
.quote p { font-family: var(--serif); font-size: clamp(19px, 2.6vw, 27px); line-height: 1.62; }
.quote .quote-src { margin-top: var(--s3); font-size: 14px; color: rgb(242 244 245 / .7); }

/* ── 고객 지원 ────────────────────────────────────────────────────── */
.sup-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: var(--s3); margin-top: var(--s4); align-items: start; }
.sup-list { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: clip; }
.sup-list a { display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding: var(--s3) var(--s4); border-bottom: 1px solid var(--line-soft); font-size: 16px; font-weight: 600; min-height: 66px; }
.sup-list a:last-child { border-bottom: 0; }
.sup-list a:hover { background: var(--paper); }
.sup-list .ic { color: var(--slate-400); }
.sup-side { background: var(--forest-700); color: var(--paper); border-radius: var(--radius); padding: var(--s4); }
.sup-side h2 { font-size: 19px; }
.sup-side ul { margin-top: var(--s3); display: grid; gap: 4px; }
.sup-side a { display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 8px 0; font-size: 15px; font-weight: 600; }
.sup-side a:hover { color: #F7B79C; }
.sup-side .tel { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line-dark); font-size: 13.5px; color: rgb(242 244 245 / .74); }
.sup-side .tel a { display: inline-flex; min-height: 44px; font-family: var(--serif); font-size: 19px; color: var(--paper); }
@media (max-width: 860px) { .sup-grid { grid-template-columns: minmax(0, 1fr); } }

/* ── 아코디언 ─────────────────────────────────────────────────────── */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: clip; background: var(--white); margin-top: var(--s3); }
.acc-item { border-bottom: 1px solid var(--line-soft); }
.acc-item:last-child { border-bottom: 0; }
.acc-trigger { display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  width: 100%; min-height: 60px; padding: var(--s2) var(--s3); background: transparent; border: 0;
  font: inherit; font-size: 15.5px; font-weight: 600; text-align: left; color: var(--ink); cursor: pointer; }
.acc-trigger:hover { background: var(--paper); }
.acc-trigger .ic { flex: 0 0 auto; color: var(--slate-400); transition: rotate .2s ease; }
.acc-item.open .acc-trigger .ic { rotate: 180deg; }
.acc-panel { padding: 0 var(--s3) var(--s3); font-size: 14.5px; color: var(--slate-600); line-height: 1.8; }
.acc-panel ul { display: grid; gap: 6px; margin-top: 8px; }
.acc-panel li { display: flex; gap: 8px; }
.acc-panel li::before { content: "·"; color: var(--slate-400); }

/* ── 매장 ─────────────────────────────────────────────────────────── */
.store-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s3); }
.store { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); }
.store h3 { font-size: 17px; }
.store p { margin-top: 10px; font-size: 14px; color: var(--slate-600); line-height: 1.75; }
.store dl { margin: var(--s2) 0 0; display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 6px 10px; font-size: 14px; }
.store dt { color: var(--slate-400); }
.store dd { margin: 0; }
@media (max-width: 700px) { .store-grid { grid-template-columns: minmax(0, 1fr); } }

/* ── 문의 폼 ──────────────────────────────────────────────────────── */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s5); margin-top: var(--s3); }
@media (max-width: 560px) { .form-card { padding: var(--s3); } }
.inquiry-form { display: grid; gap: var(--s3); }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--slate-600); margin-bottom: 8px; }
.field .control { padding-right: 14px; }
.counter { margin-top: 6px; font-size: 12.5px; color: var(--slate-400); text-align: right; }
.agree { position: relative; }
.agree label { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--slate); cursor: pointer; min-height: 44px; padding-top: 2px; }
.agree label .box { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; border: 1.5px solid var(--slate-400); border-radius: 3px; position: relative; }
.agree input:checked + label .box { background: var(--forest-700); border-color: var(--forest-700); }
.agree input:checked + label .box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg); }
.form-submit { min-height: 52px; background: var(--forest-900); color: var(--paper); border: 0; border-radius: var(--radius);
  font: inherit; font-weight: 700; font-size: 15.5px; cursor: pointer; }
.form-submit:hover { background: var(--forest-700); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 560px) { .two-col { grid-template-columns: minmax(0, 1fr); } }

/* ── 푸터 ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--forest-900); color: var(--paper); }
.benefits { border-bottom: 1px solid var(--line-dark); }
.benefits-inner { width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  display: grid; grid-template-columns: auto repeat(4, minmax(0, 1fr)); align-items: center; gap: var(--s3); padding: var(--s4) 0; }
.benefits-mark { width: 44px; height: 36px; }
.benefits-mark path { fill: var(--paper); }
.benefit { display: flex; align-items: center; gap: 12px; }
.benefit .ic { flex: 0 0 auto; color: rgb(242 244 245 / .82); }
.benefit b { display: block; font-size: 14.5px; }
.benefit span { display: block; font-size: 12.5px; color: rgb(242 244 245 / .62); }
@media (max-width: 980px) {
  .benefits-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
  .benefits-mark { display: none; }
}
@media (max-width: 400px) { .benefits-inner { grid-template-columns: minmax(0, 1fr); } }

.footer-inner { width: min(100% - 40px, var(--wrap)); margin-inline: auto; padding: var(--s5) 0 var(--s5); }
@media (max-width: 767px) { .footer-inner { padding-bottom: 84px; } }
.footer-brand { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.footer-tag { margin-top: 8px; font-size: 14px; color: rgb(242 244 245 / .7); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 6px; margin-top: var(--s3); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 12px 4px 0;
  font-size: 14.5px; font-weight: 600; color: rgb(242 244 245 / .82); }
.footer-nav a:hover { color: var(--paper); }
.footer-biz { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line-dark);
  font-style: normal; font-size: 13px; line-height: 1.9; color: rgb(242 244 245 / .62); }
.footer-biz a { color: rgb(242 244 245 / .8); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: var(--s2); }
.footer-legal a { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 600; color: rgb(242 244 245 / .8); }
.footer-copy { margin-top: var(--s2); font-size: 12.5px; color: rgb(242 244 245 / .5); }

/* ── 모바일 하단 이동 막대 (06-mobile 시안) ──────────────────────── */
.dock { display: none; }
@media (max-width: 767px) {
  .dock {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed; inset: auto 0 0 0; z-index: 45;
    background: var(--forest-950); border-top: 1px solid var(--line-dark);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .dock a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 60px; font-size: 11px; font-weight: 600; color: rgb(242 244 245 / .62); }
  .dock a[aria-current="page"] { color: var(--orange); }
  .dock .ic { width: 21px; height: 21px; }
}
