/* =====================================================================
   LOCALMATE — style.css (2026-08 final structure)
   Tokens → base → components (in page order) → motion → breakpoints
   Breakpoints: ≤1279 narrow desktop · ≤1023 tablet · ≤767 mobile · ≤350 small
   ===================================================================== */

:root {
  --blue: #3341ff;
  --blue-dark: #2230eb;
  --blue-soft: #8b93ff;
  --ink: #111111;
  --ink-2: #333333;
  --muted: #5f5f5f;
  --muted-2: #6b6b6b;
  --line: #e8e8e8;
  --line-2: #f0f0f0;
  --surface: #f7f7f7;
  --white: #ffffff;
  --dark: #111111;
  --dark-text: #ffffff;
  --dark-muted: rgba(255, 255, 255, .72);
  --dark-line: rgba(255, 255, 255, .14);
  --header-h: 76px;
  --bar-h: 68px;
  --radius: 8px;
  --container: 1280px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-ko: "Noto Sans KR", "Inter", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-en: "Inter", "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Inter", "Noto Sans KR", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ko);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: var(--font-en); }
html[lang="ko"] body { word-break: keep-all; overflow-wrap: anywhere; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
h1, h2, h3 { text-wrap: balance; }
p { margin: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible { outline-offset: 1px; }
.skip-link {
  position: absolute; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 14px; border-radius: 6px;
  background: var(--ink); color: #fff; font-weight: 700;
  transform: translateY(-200%); transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-compact { padding: 84px 0; }
.section-border-bottom { border-bottom: 1px solid var(--line); }
.section-gray { background: #f8f8f8; }
.mobile-only { display: none !important; }

/* ---------- Type ---------- */
.eyebrow {
  margin: 0 0 17px;
  font: 800 14px/1.3 var(--font-label);
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.section-heading { margin-bottom: 60px; }
.section-heading h2, .contact-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
}
.section-heading > p:not(.eyebrow), .contact-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.split-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.split-heading > div:first-child { min-width: 0; }
.compact-heading { margin-bottom: 36px; }
.compact-heading h2 { font-size: clamp(32px, 3.2vw, 44px); }

/* ---------- Buttons ---------- */
.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 22px;
  font-weight: 800; font-size: 16px;
  cursor: pointer; white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button .arrow { display: inline-block; transition: transform .3s var(--ease); }
.button:hover .arrow { transform: translateX(4px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-large { min-height: 56px; padding: 0 28px; font-size: 17px; }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #333; }
.button-outline { background: #fff; border-color: var(--line); }
.button-outline:hover { background: var(--surface); border-color: #cfcfcf; }
.button.full { width: 100%; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; z-index: 120; top: 0; left: 0; right: 0; height: 2px; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; background: var(--blue); transform-origin: left center; transform: scaleX(0); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .045);
  backdrop-filter: blur(12px);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.logo { width: 145px; height: 26px; display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img, .footer-logo img, .sheet-brand img { display: block; width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  font: 700 15px/1 var(--font-label);
  letter-spacing: .01em; color: var(--muted); white-space: nowrap;
  padding: 6px 0;
  transition: color .2s;
}
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a.active::after { transform: scaleX(1); }
.language-switch { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; font: 800 14px/1 var(--font-label); letter-spacing: .05em; color: var(--muted-2); }
.language-switch a { color: var(--muted-2); transition: color .2s ease; }
.language-switch a:hover, .language-switch a.active { color: var(--ink); }
.language-switch span { color: #ddd; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font: 700 14px/1 var(--font-label); color: #555; white-space: nowrap; }
.mobile-menu-button, .mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: var(--header-h); }
.hero-inner { min-height: calc(82vh - var(--header-h)); display: flex; flex-direction: column; justify-content: center; padding: 96px 0 72px; }
.hero-label { color: var(--blue); margin-bottom: 22px; }
.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 900;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-description { max-width: 34em; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 40px; }
.hero-from { font: 700 14px/1.4 var(--font-label); letter-spacing: .02em; color: var(--muted-2); }
[data-magnetic] { will-change: transform; }

.hero-categories { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
.hero-categories p { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; margin: 0; }
.hero-categories span { font: 800 12px/1.4 var(--font-label); letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.hero-categories span:not(:last-child)::after { content: "·"; margin: 0 14px; color: var(--blue); }

/* ---------- Work ---------- */
.project-filters { display: flex; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.project-filters button { border: 0; border-right: 1px solid var(--line); background: #fff; padding: 14px 19px; font: 800 15px/1 var(--font-label); color: var(--muted); cursor: pointer; transition: background-color .2s, color .2s; }
.project-filters button:last-child { border-right: 0; }
.project-filters button:hover { color: var(--ink); }
.project-filters button.active { background: var(--ink); color: #fff; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 34px; }
.project-group-label { grid-column: 1 / -1; margin: 8px 0 -16px; padding-top: 22px; border-top: 1px solid var(--ink); font: 800 13px/1.3 var(--font-label); letter-spacing: .14em; color: var(--muted-2); }
.project-group-label:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.project-card-wide { grid-column: 1 / -1; }
.project-card[hidden] { display: none; }
.project-card-link { display: block; border-radius: 10px; }
.project-visual {
  position: relative; overflow: hidden; isolation: isolate;
  aspect-ratio: 4 / 3; border-radius: 10px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; background: #242424;
}
.project-card-wide .portfolio-visual { aspect-ratio: 2 / 1; }
.project-visual > img {
  position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover;
  transition: transform .6s var(--ease);
}
.project-jj > img { object-position: 50% 42%; }
.project-visual::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.05) 46%, rgba(0,0,0,.68) 100%);
  transition: opacity .5s ease; opacity: .92;
}
.project-visual-label { font: 700 14px/1.4 var(--font-label); letter-spacing: 0; color: rgba(255,255,255,.88); transition: transform .5s var(--ease); }
html[lang="ko"] .project-visual-label { font-family: var(--font-ko); }
.project-visual-title { margin-top: auto; max-width: 86%; font: 900 clamp(28px, 4.7vw, 74px)/.94 var(--font-label); letter-spacing: -.045em; transition: transform .5s var(--ease); }
.project-card-link:hover .project-visual > img, .project-card-link:focus-visible .project-visual > img { transform: scale(1.03); }
.project-card-link:hover .project-visual::before { opacity: 1; }
.project-card-link:hover .project-visual-title { transform: translateY(-6px); }
.project-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-top: 18px; }
.project-meta h3 { margin: 0; font-size: 24px; }
.project-meta p { margin: 8px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.project-meta > span { margin-top: 5px; font: 700 14px/1.5 var(--font-label); letter-spacing: 0; color: var(--muted-2); text-align: right; white-space: nowrap; }
.project-strategy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 30px; margin-top: 17px; padding-top: 17px; border-top: 1px solid var(--line); }
.project-strategy p { min-width: 0; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.project-strategy b { display: block; margin-bottom: 4px; color: var(--blue); font: 800 12px/1.35 var(--font-label); letter-spacing: .06em; }
.empty-project-state { padding: 38px; border: 1px dashed #ddd; color: var(--muted-2); text-align: center; font-size: 17px; }
.mobile-work-more { display: none; }

/* Case study (future; rendered from <template>) */
.case-study { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 40px 64px; padding: 44px 0 8px; border-top: 1px solid var(--ink); }
.case-head h3 { margin: 0; font: 900 clamp(32px, 3.6vw, 52px)/1 var(--font-label); letter-spacing: -.04em; }
.case-thesis { margin: 22px 0 0; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3; font-weight: 800; letter-spacing: -.02em; }
.case-copy { margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 520px; }
.case-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 24px; align-content: start; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.case-stats .eyebrow { grid-column: 1 / -1; margin-bottom: 4px; }
.case-stat strong { display: block; font: 900 clamp(34px, 3.4vw, 48px)/1 var(--font-label); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.case-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

/* ---------- Philippines Edge (dark) ---------- */
.section-dark { background: var(--dark); color: var(--dark-text); }
.section-dark .eyebrow { color: var(--blue-soft); }
.section-dark .section-heading > p:not(.eyebrow) { color: var(--dark-muted); max-width: 720px; }
.edge-heading { margin-bottom: 72px; }
.edge-layout { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 48px; align-items: start; }
.edge-rail { position: sticky; top: calc(var(--header-h) + 32px); list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.edge-rail li { position: relative; padding-left: 22px; font: 800 13px/1.6 var(--font-label); letter-spacing: .18em; color: rgba(255,255,255,.32); transition: color .3s ease; }
.edge-rail li::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); transform: translateY(-50%) scale(.6); transition: transform .3s var(--ease), background-color .3s ease; }
.edge-rail li.active { color: #fff; }
.edge-rail li.active::before { background: var(--blue-soft); transform: translateY(-50%) scale(1); }
.edge-list { border-top: 1px solid var(--dark-line); }
.edge-item { border-bottom: 1px solid var(--dark-line); }
.edge-item h3 { margin: 0; }
.edge-button {
  width: 100%; display: grid; grid-template-columns: 64px minmax(0, 1fr) 40px; grid-template-areas: "num kicker toggle" "num title toggle"; align-items: center; column-gap: 20px;
  margin: 0; padding: 30px 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer;
}
.edge-num { grid-area: num; align-self: start; padding-top: 4px; font: 800 13px/1 var(--font-label); letter-spacing: .12em; color: var(--blue-soft); }
.edge-kicker { grid-area: kicker; align-self: end; display: block; margin-bottom: 8px; font: 800 12px/1.3 var(--font-label); letter-spacing: .14em; color: rgba(255,255,255,.5); }
.edge-title { grid-area: title; align-self: start; display: block; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; font-weight: 800; letter-spacing: -.02em; transition: color .25s ease; }
.edge-button:hover .edge-title { color: var(--blue-soft); }
.edge-toggle { grid-area: toggle; position: relative; width: 40px; height: 40px; border: 1px solid var(--dark-line); border-radius: 50%; justify-self: end; transition: transform .4s var(--ease), border-color .3s ease; }
.edge-toggle::before, .edge-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; background: #fff; transform: translate(-50%, -50%); transition: transform .4s var(--ease); }
.edge-toggle::before { width: 14px; height: 1px; }
.edge-toggle::after { width: 1px; height: 14px; }
.edge-item.is-open .edge-toggle { border-color: var(--blue-soft); transform: rotate(180deg); }
.edge-item.is-open .edge-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.edge-body { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .55s var(--ease), opacity .4s ease; }
.edge-item.is-open .edge-body { grid-template-rows: 1fr; opacity: 1; }
.edge-body-inner { min-height: 0; overflow: hidden; padding-left: 84px; }
.edge-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.edge-tags li { padding: 8px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); }
.edge-body p { max-width: 640px; margin: 22px 0 36px; color: var(--dark-muted); font-size: 17px; line-height: 1.75; }

.edge-flow { margin-top: 64px; padding: 36px 0 0; border-top: 1px solid var(--dark-line); display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr); gap: 32px 64px; align-items: center; }
.flow-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin: 0; padding: 0; list-style: none; counter-reset: flow; }
.flow-steps li { position: relative; padding-left: 0; }
.flow-steps li + li::before { content: "→"; position: absolute; left: -22px; top: 30px; color: rgba(255,255,255,.35); font: 400 18px/1 var(--font-label); }
.flow-steps span { display: block; margin-bottom: 10px; font: 800 12px/1.3 var(--font-label); letter-spacing: .16em; color: var(--blue-soft); }
.flow-steps b { display: block; font-size: 20px; line-height: 1.4; font-weight: 800; letter-spacing: -.01em; }
.edge-flow > p { color: var(--dark-muted); font-size: 16px; line-height: 1.75; }


/* ---------- Strategy ---------- */
.role-explorer { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.role-card { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 10px; padding: 26px 28px 24px; background: #fff; transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease); }
.role-card.is-active { border-color: var(--ink); box-shadow: 0 18px 40px -28px rgba(0,0,0,.35); }
.role-button { width: 100%; margin: 0; padding: 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.role-num { display: block; margin-bottom: 18px; font: 800 13px/1 var(--font-label); letter-spacing: .12em; color: var(--blue); }
.role-label { display: block; margin-bottom: 8px; font: 900 13px/1 var(--font-label); letter-spacing: .14em; color: var(--muted-2); }
.role-title { display: block; font-size: 22px; line-height: 1.3; font-weight: 800; letter-spacing: -.02em; }
.role-keys { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0 0; padding: 0; list-style: none; }
.role-keys li { padding: 6px 10px; border-radius: 4px; border: 1px solid var(--line); background: #fff; color: var(--muted-2); font: 800 11px/1.3 var(--font-label); letter-spacing: .12em; transition: background-color .3s ease, color .3s ease, border-color .3s ease; }
.role-card.is-active .role-keys li { background: var(--ink); border-color: var(--ink); color: #fff; }
.role-more { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .5s var(--ease), opacity .35s ease; }
.role-card.is-active .role-more { grid-template-rows: 1fr; opacity: 1; }
.role-more-inner { min-height: 0; overflow: hidden; }
.role-more-inner > p { margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.role-fit { font-size: 14px !important; color: var(--muted-2) !important; }
.role-fit::before { content: "적합 · "; color: var(--ink); font-weight: 800; }
html[lang="en"] .role-fit::before { content: "Fits · "; }
/* Website Finder 진입은 문장 한 줄 + 텍스트 링크 — Primary CTA보다 약하게 */
.finder-entry { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 16px; line-height: 1.7; }
.finder-link { margin: 0; padding: 0; border: 0; background: none; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }
.finder-link .arrow { display: inline-block; transition: transform .3s var(--ease); }
.finder-link:hover .arrow { transform: translateX(4px); }
.finder-entry.is-open .finder-link .arrow { transform: rotate(90deg); }
.finder-wrap { margin-top: 24px; }

/* Finder (ported) */
.estimator-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 52px; align-items: start; }
.estimate-steps { border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.estimate-step { margin: 0; padding: 34px; border: 0; min-width: 0; }
.estimate-step + .estimate-step { border-top: 1px solid var(--line-2); }
.estimate-step-title { display: flex; align-items: center; gap: 16px; margin-bottom: 21px; }
.estimate-step-title > span { font: 800 13px/1 var(--font-label); letter-spacing: .15em; color: var(--blue); }
.estimate-step-title h3 { margin: 0; font-size: 20px; }
.estimate-step-title h3:focus { outline: none; }
.estimate-step-title small { margin-left: auto; color: var(--muted-2); font-size: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.finder-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.finder-long-choices { display: grid; grid-template-columns: 1fr; }
.chip {
  width: 100%; min-height: 48px; display: inline-flex; align-items: center; justify-content: flex-start;
  border: 1px solid #dedede; border-radius: 6px; background: #fff; padding: 12px 15px;
  color: #555; font-size: 16px; font-weight: 700; line-height: 1.45; text-align: left; white-space: normal; overflow-wrap: anywhere; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: #bdbdbd; }
.chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.finder-long-choices .chip { min-height: 56px; }
.finder-other { display: block; margin-top: 18px; }
.finder-other > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 14px; font-weight: 700; }
.finder-other input { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 12px 14px; color: var(--ink); font-size: 16px; }
.finder-other input:focus { border-color: #999; }
.finder-error { min-height: 21px; margin: 14px 0 0; color: var(--ink); font-size: 14px; font-weight: 700; line-height: 1.5; }
.finder-error:empty { min-height: 0; margin: 0; }
.estimate-summary { position: sticky; top: calc(var(--header-h) + 16px); border: 1px solid var(--line); border-radius: 7px; padding: 32px; background: #fff; }
.finder-result .eyebrow { margin-bottom: 12px; color: var(--blue); }
.finder-role-result { color: var(--blue); font: 900 clamp(25px, 2.4vw, 34px)/1.15 var(--font-label); letter-spacing: -.035em; overflow-wrap: anywhere; }
.finder-result h3 { margin: 13px 0 0; font-size: 21px; line-height: 1.4; letter-spacing: -.02em; }
.finder-result h3:focus { outline: none; }
.finder-result-copy { margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.selected-summary { margin: 20px 0 18px; padding-bottom: 17px; border-bottom: 1px solid var(--line-2); }
.selected-summary:empty { display: none; }
.selected-summary p { margin: 9px 0; display: flex; gap: 9px; font-size: 15px; color: #555; }
.selected-summary b { color: var(--blue); min-width: 68px; font: 800 13px/1.6 var(--font-label); }
.finder-result-block { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.finder-result-block > strong { display: block; margin-bottom: 8px; font-size: 14px; }
.finder-result-block ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.summary-label { margin: 17px 0 9px; font: 800 13px/1.2 var(--font-label); letter-spacing: .12em; color: var(--muted-2); }
.finder-plan { display: block; margin: 5px 0 18px; color: var(--ink); font: 900 19px/1.4 var(--font-label); overflow-wrap: anywhere; }
.summary-price { min-height: 76px; margin-bottom: 10px; color: var(--muted-2); font-size: 23px; line-height: 1.45; font-weight: 800; }
.summary-price.has-price { color: var(--ink); font: 900 42px/1.05 var(--font-label); letter-spacing: -.035em; }
.summary-price.has-price.is-range { font-size: 26px; }
.summary-note { min-height: 30px; margin: 0 0 16px; color: var(--muted-2); font-size: 13px; line-height: 1.5; }
.estimate-mobile-progress i { max-width: 100%; }

/* ---------- Services (menu list) ---------- */
.service-list { border-top: 1px solid var(--ink); }
.service-item { border-bottom: 1px solid var(--line); }
.service-head { position: relative; cursor: pointer; }
.service-head h3 { margin: 0; }
.service-button {
  width: 100%; display: grid; grid-template-columns: 130px minmax(0, 1fr) 150px 36px; grid-template-areas: "name title price toggle" "name desc price toggle"; align-items: center; column-gap: 24px; row-gap: 0;
  margin: 0; padding: 28px 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer;
}
.service-name { grid-area: name; font: 800 13px/1.3 var(--font-label); letter-spacing: .14em; color: var(--muted-2); }
.service-title { grid-area: title; align-self: end; display: block; font-size: 22px; line-height: 1.3; font-weight: 800; letter-spacing: -.02em; transition: color .25s ease; }
.service-head:hover .service-title { color: var(--blue); }
.service-desc { grid-area: desc; align-self: start; display: block; margin-top: 6px; color: var(--muted); font-size: 15px; line-height: 1.6; font-weight: 400; }
.service-price { grid-area: price; font-size: 18px; font-weight: 800; letter-spacing: -.01em; text-align: right; white-space: nowrap; }
.service-toggle { grid-area: toggle; justify-self: end; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font: 400 20px/1 var(--font-label); color: var(--muted-2); transition: transform .4s var(--ease), border-color .3s ease, color .3s ease; }
.service-item.open .service-toggle { transform: rotate(180deg); border-color: var(--ink); color: var(--ink); }
.service-detail { display: none; margin: 0 0 0 154px; padding: 6px 0 28px; }
.service-item.open .service-detail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; }
.service-detail > div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line-2); font-size: 15px; color: #555; }
.service-detail b { color: var(--ink); white-space: nowrap; }

/* ---------- Price ---------- */
.web-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.web-price-grid > article { min-width: 0; display: flex; flex-direction: column; padding: 40px 30px 34px; }
.web-price-grid article + article { border-left: 1px solid var(--line); }
.web-price-grid article > span { display: block; margin-bottom: 23px; font: 800 14px/1.35 var(--font-label); letter-spacing: .03em; color: #666; }
.big-price { font: 900 clamp(44px, 4.3vw, 62px)/1 var(--font-label); letter-spacing: -.045em; white-space: nowrap; }
.big-price b { font-weight: inherit; font-variant-numeric: tabular-nums; }
.big-price small { margin-left: 7px; font: 800 18px/1 var(--font-ko); letter-spacing: 0; color: #555; }
html[lang="en"] .big-price small { font-family: var(--font-label); }
.price-fit { min-height: 78px; margin: 22px 0 8px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.price-role { min-height: 42px; display: block; color: var(--blue); font: 800 13px/1.5 var(--font-label); overflow-wrap: anywhere; }
.price-detail-toggle { display: none; }
.web-price-grid ul { list-style: none; margin: 18px 0 0; padding: 19px 0 0; border-top: 1px solid var(--line); }
.web-price-grid li { position: relative; padding-left: 13px; margin: 10px 0; color: #555; font-size: 16px; line-height: 1.55; }
.web-price-grid li::before { content: ""; position: absolute; left: 0; top: .55em; width: 1px; height: 10px; background: #bbb; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: start; }
.primary-contact-card { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.primary-contact-card > span { font: 800 13px/1.4 var(--font-label); letter-spacing: .1em; color: var(--muted-2); }
.primary-contact-card > a { width: fit-content; font: 900 clamp(27px, 3vw, 40px)/1.1 var(--font-label); letter-spacing: -.035em; }
.copy-kakao { width: fit-content; border: 0; background: none; padding: 0; color: #555; cursor: pointer; font-size: 16px; }
.copy-kakao b { margin-left: 8px; color: var(--blue); font-size: 14px; }
.contact-form { display: grid; gap: 17px; }
.contact-form label > span, .contact-form legend { display: block; margin-bottom: 10px; color: #555; font-size: 14px; font-weight: 700; }
.contact-form legend small { color: var(--muted-2); font-weight: 400; }
.form-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.contact-form input, .contact-form select, .contact-form textarea, .sheet-panel input, .sheet-panel select, .sheet-panel textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 14px 15px; color: var(--ink); font-size: 16px; transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #999; }
.contact-form textarea { resize: vertical; }
.contact-form fieldset { margin: 0; border: 1px solid var(--line); border-radius: 6px; padding: 15px; }
.form-service-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.form-service-chips button { border: 1px solid var(--line); border-radius: 5px; padding: 11px 14px; background: #fff; color: #666; font: 800 14px/1 var(--font-label); cursor: pointer; transition: background-color .2s, color .2s; }
html[lang="ko"] .form-service-chips button { font-family: var(--font-ko); }
.form-service-chips button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.privacy-check { display: flex !important; align-items: center; gap: 8px; cursor: pointer; }
.privacy-check input { width: 15px !important; height: 15px; accent-color: var(--ink); }
.privacy-check span { margin: 0 !important; font-size: 14px !important; font-weight: 400 !important; }
.privacy-details { margin-top: -4px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.privacy-details summary { width: max-content; cursor: pointer; color: #4f4f4f; font-weight: 700; }
.privacy-details p { margin: 8px 0 0; }
.form-helper { margin: -2px 0 0; color: var(--muted-2); font-size: 13px; line-height: 1.65; }

/* ---------- Process / Why ---------- */
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); margin: 0; padding: 0; list-style: none; }
.process-grid > li { padding: 22px 14px; }
.process-grid > li + li { border-left: 1px solid var(--line); }
.process-grid span { display: block; margin-bottom: 8px; font: 800 13px/1 var(--font-label); color: var(--blue); }
.process-grid strong { display: block; font-size: 17px; }
.process-grid small { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ---------- Footer ---------- */
.site-footer { padding: 42px 0; background: #fff; }
.footer-inner { display: grid; grid-template-columns: minmax(250px, 1fr) auto auto auto; align-items: start; gap: 34px; }
.footer-logo { width: 152px; height: 25px; display: block; }
.footer-brand p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 20px; color: var(--muted); font-size: 14px; font-weight: 700; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: 7px; color: #666; font-size: 14px; }
.footer-copyright { margin: 0; color: var(--muted-2); font-size: 14px; white-space: nowrap; }

/* ---------- Mobile bar / sheet / modal / toast / cursor ---------- */
.mobile-bottom-bar, .bottom-sheet { display: none; }
.contact-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.contact-modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.48); }
.modal-panel { position: relative; z-index: 1; width: min(620px, 100%); max-height: 88vh; overflow: auto; background: #fff; border-radius: 10px; padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.16); }
.modal-close { position: absolute; top: 15px; right: 16px; border: 0; background: none; font-size: 26px; cursor: pointer; color: #666; }
.modal-panel h2 { margin: 0; font-size: 31px; letter-spacing: -.025em; }
.modal-panel > p:not(.eyebrow) { margin: 10px 0 0; color: #666; font-size: 16px; line-height: 1.7; }
.modal-panel textarea { width: 100%; margin: 12px 0 16px; border: 1px solid var(--line); border-radius: 6px; padding: 14px; resize: none; color: #555; background: #fafafa; font-size: 15px; line-height: 1.6; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.toast { position: fixed; z-index: 500; left: 50%; bottom: 28px; transform: translate(-50%, 12px); opacity: 0; pointer-events: none; background: #111; color: #fff; border-radius: 6px; padding: 11px 15px; font-size: 15px; transition: .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.cursor-badge {
  position: fixed; z-index: 400; left: 0; top: 0; width: 68px; height: 68px; margin: -34px 0 0 -34px;
  display: none; align-items: center; justify-content: center; border-radius: 50%;
  background: var(--ink); color: #fff; font: 800 11px/1 var(--font-label); letter-spacing: .14em;
  pointer-events: none; opacity: 0; transform: scale(.5); will-change: transform, opacity;
  transition: opacity .25s ease;
}
.cursor-badge.is-on { opacity: 1; transform: scale(1); }
@media (hover: hover) and (pointer: fine) { .cursor-badge { display: flex; } }

/* ---------- Motion (reveal) ---------- */
.js [data-hero] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s var(--ease); }
.js body.hero-in [data-hero] { opacity: 1; transform: none; }
.js body.hero-in [data-hero="2"] { transition-delay: 90ms; }
.js body.hero-in [data-hero="3"] { transition-delay: 180ms; }
.js body.hero-in [data-hero="4"] { transition-delay: 270ms; }
.js body.hero-in [data-hero="5"] { transition-delay: 360ms; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal-group] > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s var(--ease); }
.js [data-reveal-group] > *:nth-child(2) { transition-delay: 90ms; }
.js [data-reveal-group] > *:nth-child(3) { transition-delay: 180ms; }
.js [data-reveal-group] > *:nth-child(4) { transition-delay: 270ms; }
.js [data-reveal-group] > *:nth-child(5) { transition-delay: 360ms; }
.js [data-reveal-group].is-visible > * { opacity: 1; transform: none; }
.js [data-mask] .project-visual { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); }
.js [data-mask].is-visible .project-visual { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js [data-hero], .js [data-reveal], .js [data-reveal-group] > * { opacity: 1; transform: none; }
  .js [data-mask] .project-visual { clip-path: none; }
  .cursor-badge { display: none !important; }
}

/* =====================================================================
   ≤1279 — narrow desktop
   ===================================================================== */
@media (max-width: 1279px) {
  .header-phone { display: none; }
  .desktop-nav { gap: 16px; margin-left: 24px; }
  .desktop-nav a { font-size: 14px; }
  .language-switch { margin-left: auto; }
  .header-actions { gap: 10px; }
  .header-actions .button-small { padding: 0 14px; font-size: 13px; }
  .split-heading { flex-wrap: wrap; }
  .edge-layout { grid-template-columns: 150px minmax(0, 1fr); gap: 36px; }
  .role-card { padding: 22px 22px 20px; }
  .role-title { font-size: 20px; }
  .service-button { grid-template-columns: 110px minmax(0, 1fr) 140px 36px; }
  .service-detail { margin-left: 134px; }
  .web-price-grid > article { padding-inline: 22px; }
  .big-price small { font-size: 16px; margin-left: 6px; }
}

/* =====================================================================
   ≤1023 — tablet
   ===================================================================== */
@media (max-width: 1023px) {
  :root { --header-h: 68px; }
  .section { padding: 96px 0; }
  .section-compact { padding: 72px 0; }
  .scroll-progress { display: none; }
  .desktop-nav, .header-actions { display: none; }
  .header-inner { justify-content: space-between; }
  .language-switch { margin-left: auto; margin-right: 8px; }
  .mobile-menu-button {
    margin-left: 4px; width: 44px; height: 44px; border: 0; background: transparent;
    display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 5px; cursor: pointer;
  }
  .mobile-menu-button span { width: 22px; height: 1px; background: var(--ink); }
  .mobile-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 28px 24px; border-bottom: 1px solid var(--line); background: #fff; }
  .mobile-nav.open { display: flex; flex-direction: column; }
  .mobile-nav-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .mobile-nav a:not(.button) { font: 800 16px/1.35 var(--font-label); }
  html[lang="ko"] .mobile-nav a:not(.button) { font-family: var(--font-ko); }
  .mobile-nav-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
  .mobile-nav-language { display: flex; gap: 8px; font-weight: 800; color: var(--muted-2); }
  .mobile-nav-language a.active { color: var(--ink); }
  .site-header { background: rgba(255,255,255,.96); border-bottom-color: var(--line); }

  .hero-inner { min-height: 0; padding: 72px 0 56px; }
  .hero-description { font-size: 18px; }

  .edge-heading { margin-bottom: 48px; }
  .edge-layout { grid-template-columns: 1fr; }
  .edge-rail { display: none; }
  .edge-button { grid-template-columns: 48px minmax(0, 1fr) 36px; padding: 24px 0; }
  .edge-body-inner { padding-left: 68px; }
  .edge-flow { grid-template-columns: 1fr; gap: 24px; }

  .role-explorer { grid-template-columns: 1fr; gap: 12px; }
  .role-card.is-active { box-shadow: none; }
  .role-more { grid-template-rows: 1fr; opacity: 1; }
  .role-keys li { background: var(--ink); border-color: var(--ink); color: #fff; }
  .role-button { cursor: default; }
  .estimator-layout { grid-template-columns: 1fr; gap: 32px; }
  .estimate-summary { position: static; width: 100%; }
  .finder-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .service-button { grid-template-columns: 96px minmax(0, 1fr) 120px 36px; column-gap: 16px; padding: 22px 0; }
  .service-title { font-size: 20px; }
  .service-detail { margin-left: 112px; }
  .service-item.open .service-detail { grid-template-columns: 1fr; }

  .web-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .web-price-grid article:nth-child(odd) { border-left: 0; }
  .web-price-grid article:nth-child(even) { border-left: 1px solid var(--line); }
  .web-price-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid > li:nth-child(4) { border-left: 0; }
  .process-grid > li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .footer-inner { grid-template-columns: minmax(240px, 1fr) auto auto; }
  .footer-copyright { grid-column: 1 / -1; }
}

/* =====================================================================
   ≤767 — mobile
   ===================================================================== */
@media (max-width: 767px) {
  :root { --header-h: 64px; --bar-h: 68px; }
  * { min-width: 0; }
  html { scroll-padding-top: calc(var(--header-h) + 10px); overflow-x: clip; }
  body { padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom)); overflow-x: clip; }
  body.menu-open, body.sheet-open { overflow: hidden; }
  .mobile-only { display: block !important; }
  .container { width: calc(100% - 32px); }
  .section { padding: 76px 0; }
  .section-compact { padding: 64px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .compact-heading h2, .contact-intro h2 { font-size: clamp(30px, 9vw, 40px); line-height: 1.12; letter-spacing: -.04em; }
  .section-heading > p:not(.eyebrow), .contact-intro > p:not(.eyebrow) { font-size: 16px; line-height: 1.7; }
  .section-heading h2 br, .contact-intro h2 br { display: none; }
  .eyebrow { margin-bottom: 12px; font-size: 12px; line-height: 1.4; letter-spacing: .1em; }
  .button { min-height: 50px; padding-inline: 16px; font-size: 15px; }
  .button-large { min-height: 54px; font-size: 16px; }

  /* Header and full-screen menu */
  .header-inner { width: calc(100% - 28px); }
  .logo { width: 122px; height: 21px; }
  .language-switch { display: none !important; }
  .mobile-menu-button { position: relative; z-index: 2; width: 48px; height: 48px; margin-left: auto; gap: 6px; }
  .mobile-menu-button span { width: 24px; height: 2px; margin: 0; transition: transform .2s ease, opacity .2s ease; }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    position: absolute; z-index: 1; top: 100%; left: 0; right: 0; height: calc(100svh - var(--header-h));
    display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
    padding: 38px 24px calc(26px + env(safe-area-inset-bottom)); border: 0; background: #fff;
    opacity: 0; visibility: hidden; transform: translateX(100%);
    transition: opacity .2s ease, transform .25s ease, visibility .25s;
    overflow-y: auto; overscroll-behavior: contain;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
  .mobile-nav-links { display: grid; grid-template-columns: 1fr; gap: 0; }
  .mobile-nav a:not(.button) { font: 900 28px/1.25 var(--font-label); letter-spacing: -.03em; }
  html[lang="ko"] .mobile-nav a:not(.button) { font-family: var(--font-ko); font-size: 26px; }
  .mobile-nav-links > a { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-nav-footer { display: grid; gap: 18px; margin-top: 0; }
  .mobile-nav-language { gap: 10px; }
  .mobile-nav-language a { min-height: 44px; display: inline-flex !important; align-items: center; font-size: 16px !important; }

  /* Hero */
  .hero-inner { min-height: calc(78svh - var(--header-h)); padding: 40px 0 40px; }
  .hero-label { margin-bottom: 16px; }
  .hero h1 { max-width: none; font-size: clamp(36px, 10.5vw, 48px); line-height: 1.06; letter-spacing: -.04em; }
  html[lang="en"] .hero h1 { font-size: clamp(34px, 9.6vw, 44px); }
  .hero-description { margin-top: 20px; font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 28px; }
  .hero-cta .button { width: 100%; }
  .hero-from { text-align: center; }
  .hero-categories { padding: 12px 0; }
  .hero-categories span { font-size: 11px; letter-spacing: .1em; }
  .hero-categories span:not(:last-child)::after { margin: 0 9px; }

  /* Work: three selected projects */
  #projects .split-heading { display: block; }
  .project-filters { display: none; }
  .project-grid { display: flex; flex-direction: column; gap: 28px; }
  .project-group-label { margin: 0; }
  .mobile-featured-project { order: 1; }
  .project-card:has(.project-farmers) { order: 2; }
  .project-card:has(.project-jj) { order: 3; }
  .project-card:has(.project-emart), .project-card:has(.project-compose) { display: none; }
  .project-card-wide { grid-column: auto; }
  .portfolio-visual, .project-card-wide .portfolio-visual { aspect-ratio: 4 / 3; padding: 20px; border-radius: 8px; }
  .project-visual-title { font-size: clamp(30px, 10vw, 46px); }
  .project-visual-label { font-size: 13px; }
  .project-meta { display: block; padding-top: 14px; }
  .project-meta h3 { font-size: 21px; }
  .project-meta p { margin-top: 6px; font-size: 15px; }
  .project-meta > span { display: block; margin-top: 8px; font-size: 12px; text-align: left; }
  .project-strategy { grid-template-columns: 1fr; gap: 12px; margin-top: 14px; padding-top: 14px; }
  .mobile-work-more { display: block; width: 100%; min-height: 50px; margin-top: 30px; border: 1px solid var(--ink); border-radius: 6px; padding: 14px 18px; font-size: 15px; font-weight: 800; text-align: center; }
  .case-study { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .case-stats { padding: 20px; gap: 12px; }

  /* Edge */
  .edge-heading { margin-bottom: 36px; }
  .edge-button { grid-template-columns: 34px minmax(0, 1fr) 32px; column-gap: 12px; padding: 20px 0; }
  .edge-num { font-size: 12px; }
  .edge-kicker { font-size: 11px; margin-bottom: 6px; }
  .edge-title { font-size: 20px; }
  .edge-toggle { width: 32px; height: 32px; }
  .edge-body-inner { padding-left: 0; }
  .edge-tags li { padding: 7px 11px; font-size: 13px; }
  .edge-body p { margin: 18px 0 26px; font-size: 15px; }
  .edge-flow { margin-top: 44px; padding-top: 28px; }
  .flow-steps { grid-template-columns: 1fr; gap: 16px; }
  .flow-steps li + li::before { display: none; }
  .flow-steps b { font-size: 18px; }
  .edge-flow > p { font-size: 15px; }

  /* Strategy */
  .role-card { padding: 20px 18px; }
  .role-num { margin-bottom: 14px; }
  .role-title { font-size: 19px; }
  .role-more-inner > p { font-size: 15px; }
  .finder-entry { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 32px; padding-top: 20px; font-size: 15px; }

  /* Finder: four-step wizard */
  .estimate-mobile-progress { margin-bottom: 16px; }
  .estimate-mobile-progress > span { display: block; margin-bottom: 10px; font: 800 12px/1 var(--font-label); color: #666; }
  .estimate-mobile-progress > div { height: 4px; overflow: hidden; border-radius: 99px; background: #e8e8e8; }
  .estimate-mobile-progress i { display: block; width: 25%; height: 100%; background: var(--blue); transition: width .25s ease; }
  .estimator-layout { display: block; }
  .estimate-steps { display: contents; border: 0; }
  .estimate-step, .estimate-summary { display: none; }
  .estimate-step.mobile-step-active, .estimate-summary.mobile-step-active { display: block; }
  .estimate-step { min-height: 310px; padding: 24px 18px; border: 1px solid var(--line) !important; border-radius: 8px; }
  .estimate-step-title { align-items: flex-start; flex-wrap: wrap; margin-bottom: 22px; }
  .estimate-step-title > span { font-size: 12px; }
  .estimate-step-title h3 { flex: 1 1 calc(100% - 42px); font-size: 20px; line-height: 1.4; }
  .estimate-step-title small { width: 100%; margin: 5px 0 0 28px; font-size: 12px; }
  .finder-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .finder-long-choices { gap: 8px; }
  .chip { min-height: 50px; padding: 12px; font-size: 14px; }
  .finder-long-choices .chip { min-height: 58px; }
  .estimate-summary { min-height: 310px; padding: 26px 18px; border-radius: 8px; }
  .finder-role-result { font-size: clamp(25px, 8vw, 32px); }
  .finder-result h3 { font-size: 20px; }
  .summary-price { font-size: 20px; }
  .summary-price.has-price { font-size: clamp(31px, 9vw, 40px); }
  .summary-price.has-price.is-range { font-size: 24px; }
  .estimate-mobile-nav { display: flex !important; gap: 10px; margin-top: 14px; }
  .estimate-mobile-nav .button { flex: 1; }
  .estimate-mobile-nav .button[hidden] { display: none !important; }

  /* Services: stacked rows */
  .service-button { grid-template-columns: minmax(0, 1fr) 32px; grid-template-areas: "name toggle" "title toggle" "desc desc" "price price"; column-gap: 12px; padding: 20px 0; }
  .service-name { grid-area: name; font-size: 11px; margin-bottom: 6px; }
  .service-title { grid-area: title; font-size: 20px; }
  .service-desc { grid-area: desc; margin-top: 8px; font-size: 14px; }
  .service-price { grid-area: price; margin-top: 10px; text-align: left; font-size: 16px; color: var(--blue); }
  .service-toggle { grid-area: toggle; align-self: start; width: 32px; height: 32px; }
  .service-detail { margin: 0; padding: 0 0 22px; }
  .service-detail > div { font-size: 14px; }

  /* Price: compact 2×2 cards */
  .web-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; border: 0; }
  .web-price-grid > article { min-height: 174px; padding: 18px 14px; border: 1px solid var(--line) !important; border-radius: 8px; background: #fff; }
  .web-price-grid article > span { min-height: 38px; margin-bottom: 12px; font-size: 12px; line-height: 1.45; color: #555; }
  .big-price { font-size: clamp(34px, 10vw, 48px); }
  .big-price small { display: block; margin: 7px 0 0; font-size: 13px; }
  html[lang="en"] .big-price small { display: inline; margin-left: 4px; }
  .price-fit { min-height: 0; margin: 15px 0 8px; font-size: 13px; line-height: 1.55; }
  .price-role { min-height: 42px; font-size: 12px; line-height: 1.45; }
  .price-detail-toggle { width: 100%; min-height: 44px; margin-top: 12px; display: block; border: 0; border-top: 1px solid var(--line); background: transparent; color: #666; font-size: 13px; font-weight: 800; text-align: left; cursor: pointer; }
  .price-detail-toggle::after { content: "+"; float: right; font-size: 18px; }
  .web-price-grid article.open .price-detail-toggle::after { content: "−"; }
  .price-card-detail { display: none; }
  .web-price-grid article.open .price-card-detail { display: block; }
  .web-price-grid ul { margin-top: 0; padding-top: 14px; }
  .web-price-grid li { margin: 8px 0; font-size: 14px; }

  /* Contact */
  .contact-layout { gap: 38px; }
  .primary-contact-card { margin-top: 26px; }
  .primary-contact-card > a { font-size: clamp(27px, 8.5vw, 36px); }
  .primary-contact-card .copy-kakao { min-height: 44px; display: inline-flex; align-items: center; }
  .contact-form { gap: 15px; }
  .form-two { grid-template-columns: 1fr; gap: 15px; }
  .contact-form fieldset { display: none; }
  .mobile-service-select { display: block !important; }
  .contact-form label > span, .contact-form legend { margin-bottom: 8px; font-size: 14px; }
  .contact-form input, .contact-form select, .contact-form textarea { min-height: 50px; padding: 14px; font-size: 16px; }
  .contact-form textarea { min-height: 136px; }
  .privacy-check { min-height: 44px; }
  .privacy-details { font-size: 13px; }

  /* Process / Why */
  .compact-heading { margin-bottom: 28px; }
  .process-grid { grid-template-columns: 1fr 1fr; border-top-color: var(--ink); }
  .process-grid > li { min-height: 110px; padding: 18px 12px 18px 0; border: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .process-grid > li:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line) !important; }
  .process-grid span { font-size: 12px; }
  .process-grid strong { font-size: 17px; }

  /* Footer / bottom bar / sheet */
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-logo { width: 138px; height: 23px; }
  .footer-nav { display: none; }
  .footer-contact { display: grid; gap: 8px; }
  .footer-copyright { grid-column: auto; font-size: 12px; }
  .mobile-bottom-bar {
    position: fixed; z-index: 95; bottom: 0; left: 0; right: 0;
    height: calc(var(--bar-h) + env(safe-area-inset-bottom));
    display: flex; align-items: center;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line); background: rgba(255,255,255,.97);
  }
  .js .mobile-bottom-bar { transform: translateY(110%); transition: transform .35s var(--ease); }
  .js .mobile-bottom-bar.is-visible { transform: none; }
  .mobile-bottom-bar button { width: 100%; min-height: 50px; border: 0; border-radius: 6px; background: var(--blue); color: #fff; padding: 0 18px; font-size: 16px; font-weight: 800; }
  .bottom-sheet { position: fixed; inset: 0; z-index: 250; display: none; align-items: flex-end; }
  .bottom-sheet.open { display: flex; }
  .sheet-overlay { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.42); }
  .sheet-panel { position: relative; z-index: 1; width: 100%; max-height: 80svh; overflow: auto; padding: 14px 18px calc(24px + env(safe-area-inset-bottom)); border-radius: 18px 18px 0 0; background: #fff; }
  .sheet-handle { width: 35px; height: 3px; border-radius: 99px; background: #ddd; margin: 0 auto 14px; }
  .sheet-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
  .sheet-brand { display: flex; align-items: center; gap: 12px; }
  .sheet-brand > img { width: 43px; height: 32px; flex: 0 0 auto; }
  .sheet-header span { display: block; color: var(--ink); font-size: 18px; line-height: 1.35; font-weight: 800; }
  .sheet-header small { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.5; }
  .sheet-close { width: 44px; height: 44px; border: 0; background: none; color: #555; font-size: 30px; }
  .sheet-actions { display: grid; gap: 10px; }
  .sheet-action { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 14px 16px; text-align: left; }
  .sheet-action span { color: #666; font-size: 13px; font-weight: 700; }
  .sheet-action strong { font-size: 15px; }
  .sheet-action:last-child { background: var(--blue); color: #fff; border-color: var(--blue); }
  .sheet-action:last-child span { color: rgba(255,255,255,.88); }
  .modal-panel { padding: 26px 20px; }
  .modal-actions { display: grid; grid-template-columns: 1fr; }
  .toast { bottom: calc(var(--bar-h) + 16px); width: max-content; max-width: calc(100% - 32px); font-size: 14px; }

  /* Lighter motion on mobile */
  .js [data-reveal] { transform: translateY(14px); }
  .js [data-reveal-group] > * { transform: translateY(10px); }
  .js [data-mask] .project-visual { clip-path: none; }
}

@media (max-width: 350px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: 34px; }
  .web-price-grid { gap: 8px; }
  .web-price-grid > article { padding: 16px 11px; }
  .big-price { font-size: 32px; }
  .finder-choice-grid { gap: 7px; }
  .chip { padding-inline: 9px; font-size: 13px; }
  html[lang="en"] .finder-choice-grid { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .project-card-link:hover .project-visual > img { transform: none; }
}
