/* ==========================================================================
   GLASSCORE — style.css (단일 파일)
   목차
   01 tokens        02 reset/base     03 typography    04 layout/utils
   05 buttons/icons 06 topbar/header  07 mobile menu   08 quickbar/bottombar
   09 footer        10 hero           11 stats bar     12 damage cards
   13 compare       14 process        15 target tiles  16 works cards
   17 cta band      18 sub-hero/crumb 19 detail 2col   20 checklist
   21 filter/works  22 detail page    23 about         24 contact form
   25 notice        26 modal/lightbox 27 reveal/motion 28 admin
   ========================================================================== */

/* ---------- 01 tokens ---------- */
:root{
  --orange:#FF7900;
  --orange-dark:#E06A00;
  --orange-soft:#FFF3E8;
  --ink:#14161A;
  --ink-2:#3D4148;
  --ink-3:#767C85;
  --line:#E5E7EA;
  --bg:#FFFFFF;
  --bg-2:#F6F7F8;
  --charcoal:#16181C;
  --font:'Pretendard Variable',Pretendard,-apple-system,BlinkMacSystemFont,system-ui,'Malgun Gothic',sans-serif;
  --wrap:1200px;
  --gutter:20px;
  --radius:2px;
  --topbar-h:36px;
  --header-h:60px;
  --bottombar-h:60px;
  --ease:cubic-bezier(.2,.7,.2,1);
}
@media (min-width:1024px){ :root{ --header-h:76px; --gutter:32px; } }

/* ---------- 02 reset / base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font); color:var(--ink-2); background:var(--bg);
  font-size:clamp(15px,1.6vw,17px); line-height:1.75; font-weight:400;
  -webkit-font-smoothing:antialiased; overflow-x:hidden; word-break:keep-all;
  padding-bottom:calc(var(--bottombar-h) + env(safe-area-inset-bottom,0px));
}
@media (min-width:1024px){ body{ padding-bottom:0; } }
img,svg,video{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; padding:0; cursor:pointer; }
input,select,textarea{ font:inherit; color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
h1,h2,h3,h4{ margin:0; color:var(--ink); }
table{ border-collapse:collapse; width:100%; }
[hidden]{ display:none !important; }
:focus-visible{ outline:2px solid var(--orange); outline-offset:2px; }
::selection{ background:var(--orange); color:#fff; }
.sr-only{ position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.skip{ position:absolute; left:8px; top:-48px; z-index:300; background:var(--orange); color:#fff; padding:10px 14px; border-radius:var(--radius); }
.skip:focus{ top:8px; }

/* ---------- 03 typography ---------- */
.h1{ font-size:clamp(32px,7vw,64px); font-weight:800; line-height:1.15; letter-spacing:-.02em; }
.h2{ font-size:clamp(24px,3.4vw,40px); font-weight:800; line-height:1.25; letter-spacing:-.02em; }
.h3{ font-size:clamp(17px,2vw,21px); font-weight:700; line-height:1.35; }
.label{ font-size:13px; font-weight:500; letter-spacing:.04em; color:var(--ink-3); }
.label--en{ text-transform:uppercase; }
.label--orange{ color:var(--orange); }
.label--line{ display:inline-flex; align-items:center; gap:10px; }
.label--line::before{ content:''; width:24px; height:1px; background:currentColor; }
.lead{ font-size:clamp(16px,1.8vw,19px); line-height:1.7; color:var(--ink-2); }
.small{ font-size:13px; color:var(--ink-3); }
.hl{ color:var(--orange); }
.num{ font-weight:800; color:var(--orange); letter-spacing:-.02em; font-variant-numeric:tabular-nums; }

/* ---------- 04 layout / utils ---------- */
.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding-left:var(--gutter); padding-right:var(--gutter); }
.wrap--narrow{ max-width:860px; }
.section{ padding:64px 0; }
.section--tight{ padding:40px 0; }
.section--alt{ background:var(--bg-2); }
.section--dark{ background:var(--charcoal); color:#fff; }
.section--dark h1,.section--dark h2,.section--dark h3{ color:#fff; }
.section--dark .label{ color:rgba(255,255,255,.65); }
@media (min-width:768px){ .section{ padding:88px 0; } .section--tight{ padding:56px 0; } }
@media (min-width:1024px){ .section{ padding:112px 0; } }
.section-head{ display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.section-head .h2{ margin-top:4px; }
.section-head__row{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.section-head p{ max-width:640px; }
@media (min-width:768px){ .section-head{ margin-bottom:48px; } }
.grid{ display:grid; gap:20px; }
.grid--2{ grid-template-columns:1fr; }
.grid--3{ grid-template-columns:1fr; }
.grid--4{ grid-template-columns:1fr; }
@media (min-width:768px){ .grid--2,.grid--3,.grid--4{ grid-template-columns:repeat(2,1fr); } .grid{ gap:24px; } }
@media (min-width:1024px){ .grid--3{ grid-template-columns:repeat(3,1fr); } .grid--4{ grid-template-columns:repeat(4,1fr); } }
.link{ display:inline-flex; align-items:center; gap:6px; font-weight:600; color:var(--ink); }
.link svg{ width:18px; height:18px; transition:transform .25s var(--ease); }
.link:hover svg{ transform:translateX(3px); }
.link--orange{ color:var(--orange); }
.ph{ /* image placeholder (사진 자리) */
  position:relative; background:linear-gradient(135deg,#1d2026 0%,#2b2f37 50%,#16181c 100%); color:#fff; overflow:hidden;
}
.ph::after{ content:attr(data-initial); position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:clamp(28px,6vw,56px); font-weight:800; letter-spacing:-.03em; color:rgba(255,255,255,.18); }
.ratio-4x3{ aspect-ratio:4/3; }
.ratio-16x9{ aspect-ratio:16/9; }
.ratio-3x2{ aspect-ratio:3/2; }
.divider{ height:1px; background:var(--line); border:0; margin:0; }
.badge{ display:inline-flex; align-items:center; height:24px; padding:0 8px; font-size:12px; font-weight:600; letter-spacing:.02em; border:1px solid var(--orange); color:var(--orange); border-radius:var(--radius); }
.badge--ink{ border-color:var(--ink-3); color:var(--ink-3); }
.badge--fill{ background:var(--orange); color:#fff; }
.tel-big{ font-size:clamp(22px,3vw,32px); font-weight:800; letter-spacing:-.02em; color:var(--ink); }

/* ---------- 05 buttons / icons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:48px; padding:0 22px; border-radius:var(--radius); font-weight:700; font-size:15px; line-height:1;
  border:1px solid transparent; transition:background .2s,color .2s,border-color .2s; white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn--primary{ background:var(--orange); color:#fff; }
.btn--primary:hover{ background:var(--orange-dark); }
.btn--ghost{ border-color:rgba(255,255,255,.55); color:#fff; }
.btn--ghost:hover{ background:rgba(255,255,255,.1); border-color:#fff; }
.btn--ink{ background:var(--ink); color:#fff; }
.btn--ink:hover{ background:#000; }
.btn--white{ background:#fff; color:var(--charcoal); }
.btn--white:hover{ background:#f0f0f0; }
.btn--outline{ border-color:var(--ink); color:var(--ink); }
.btn--outline:hover{ background:var(--ink); color:#fff; }
.btn--sm{ height:40px; padding:0 16px; font-size:14px; }
.btn--lg{ height:56px; padding:0 28px; font-size:16px; }
.btn--block{ width:100%; }
.btn--kakao{ background:#FAE100; color:#191919; }
.btn--kakao:hover{ background:#f0d800; }
.icon{ width:24px; height:24px; stroke:currentColor; stroke-width:1.5; fill:none; stroke-linecap:round; stroke-linejoin:round; flex:none; }

/* ---------- 06 topbar / header ---------- */
.site-top{ position:fixed; top:0; left:0; right:0; z-index:100; transition:transform .22s var(--ease); }
.site-top.is-hidden{ transform:translateY(calc(-1 * var(--topbar-h))); }
.topbar{ display:none; height:var(--topbar-h); background:var(--charcoal); color:#fff; font-size:13px; }
.topbar .wrap{ display:flex; justify-content:flex-end; align-items:center; height:100%; gap:24px; }
.topbar a{ display:inline-flex; align-items:center; gap:6px; opacity:.85; }
.topbar a:hover{ opacity:1; }
.topbar a svg{ width:15px; height:15px; }
.topbar .sep{ width:1px; height:12px; background:rgba(255,255,255,.25); }
@media (min-width:1024px){ .topbar{ display:block; } }
.header{ height:var(--header-h); background:#fff; border-bottom:1px solid var(--line); }
.header .wrap{ display:flex; align-items:center; justify-content:space-between; height:100%; }
.logo{ display:inline-flex; align-items:baseline; font-size:22px; font-weight:800; letter-spacing:-.03em; color:var(--ink); line-height:1; }
.logo em{ font-style:normal; color:var(--orange); }
@media (min-width:1024px){ .logo{ font-size:26px; } }
.nav{ display:none; align-items:center; height:100%; gap:4px; }
@media (min-width:1024px){ .nav{ display:flex; } }
.nav > ul{ display:contents; }
.nav__item{ position:relative; height:100%; display:flex; align-items:center; }
.nav__link{ display:flex; align-items:center; height:100%; padding:0 14px; font-weight:500; font-size:14px; letter-spacing:.02em; color:var(--ink-2); position:relative; transition:color .2s; }
.nav__link:hover,.nav__item.is-current .nav__link{ color:var(--ink); }
.nav__link::after{ content:''; position:absolute; left:14px; right:14px; bottom:-1px; height:2px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .25s var(--ease); }
.nav__item.is-current .nav__link::after,.nav__item:hover .nav__link::after{ transform:scaleX(1); }
.nav__cta{ margin-left:12px; }
.nav__link--accent{ color:var(--orange); font-weight:600; }
.nav__link--accent:hover{ color:var(--orange-dark); }
.mega{
  position:absolute; top:100%; left:-8px; min-width:460px; background:#fff; border:1px solid var(--line); border-top:2px solid var(--orange);
  padding:20px; display:grid; grid-template-columns:1fr 1fr; gap:4px 24px;
  opacity:0; visibility:hidden; transform:translateY(8px); transition:opacity .2s,transform .2s,visibility .2s;
  box-shadow:0 12px 32px rgba(20,22,26,.08);
}
.mega--1{ min-width:260px; grid-template-columns:1fr; }
.nav__item:hover .mega,.nav__item:focus-within .mega{ opacity:1; visibility:visible; transform:translateY(0); }
.mega a{ display:block; padding:9px 8px; font-size:14px; color:var(--ink-2); border-radius:var(--radius); }
.mega a:hover{ background:var(--bg-2); color:var(--ink); }
.mega a strong{ display:block; color:var(--ink); font-weight:600; }
.mega a span{ display:block; font-size:12px; color:var(--ink-3); }
.header__right{ display:flex; align-items:center; gap:8px; }
.burger{ width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; margin-right:-10px; }
.burger span{ display:block; width:22px; height:2px; background:var(--ink); position:relative; transition:background .2s; }
.burger span::before,.burger span::after{ content:''; position:absolute; left:0; width:22px; height:2px; background:var(--ink); transition:transform .25s var(--ease),top .25s var(--ease); }
.burger span::before{ top:-7px; } .burger span::after{ top:7px; }
.burger[aria-expanded="true"] span{ background:transparent; }
.burger[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); background:#fff; }
.burger[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); background:#fff; }
@media (min-width:1024px){ .burger{ display:none; } }
.header-spacer{ height:var(--header-h); }
@media (min-width:1024px){ .header-spacer{ height:calc(var(--header-h) + var(--topbar-h)); } }

/* ---------- 07 mobile menu ---------- */
.mmenu{ position:fixed; inset:0; z-index:99; background:var(--charcoal); color:#fff; padding:calc(var(--header-h) + 16px) var(--gutter) 32px; overflow-y:auto; opacity:0; visibility:hidden; transition:opacity .25s,visibility .25s; display:flex; flex-direction:column; }
.mmenu.is-open{ opacity:1; visibility:visible; }
body.menu-open{ overflow:hidden; }
body.menu-open .header{ background:var(--charcoal); border-color:rgba(255,255,255,.1); }
body.menu-open .logo{ color:#fff; }
.mmenu__list > li{ border-bottom:1px solid rgba(255,255,255,.1); opacity:0; transform:translateY(8px); transition:opacity .3s var(--ease),transform .3s var(--ease); }
.mmenu.is-open .mmenu__list > li{ opacity:1; transform:none; }
.mmenu__link,.mmenu__toggle{ display:flex; align-items:center; justify-content:space-between; width:100%; padding:16px 0; font-size:22px; font-weight:700; color:#fff; text-align:left; }
.mmenu__toggle svg{ width:22px; height:22px; transition:transform .25s var(--ease); }
.mmenu__toggle[aria-expanded="true"] svg{ transform:rotate(180deg); }
.mmenu__sub{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s var(--ease); }
.mmenu__sub > div{ overflow:hidden; }
.mmenu__toggle[aria-expanded="true"] + .mmenu__sub{ grid-template-rows:1fr; }
.mmenu__sub a{ display:block; padding:10px 0 10px 16px; font-size:16px; color:rgba(255,255,255,.75); }
.mmenu__sub a:last-child{ padding-bottom:18px; }
.mmenu__foot{ margin-top:auto; padding-top:32px; display:grid; gap:10px; }
.mmenu__foot .btn{ height:52px; font-size:16px; }
.mmenu__addr{ font-size:13px; color:rgba(255,255,255,.55); line-height:1.6; margin-top:8px; }
@media (min-width:1024px){ .mmenu{ display:none; } }

/* ---------- 08 quickbar (desktop) / bottombar (mobile) ---------- */
.quickbar{ display:none; position:fixed; right:0; top:50%; transform:translateY(-50%); z-index:90; width:64px; background:#fff; border:1px solid var(--line); border-right:0; }
@media (min-width:1024px){ .quickbar{ display:block; } }
.quickbar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; height:64px; font-size:10px; font-weight:600; letter-spacing:.02em; color:var(--ink-2); border-bottom:1px solid var(--line); transition:background .2s; }
.quickbar a:hover{ background:var(--bg-2); }
.quickbar a svg{ width:22px; height:22px; }
.quickbar a.is-tel{ background:var(--orange); color:#fff; border-bottom:0; }
.quickbar a.is-tel:hover{ background:var(--orange-dark); }
.bottombar{ position:fixed; left:0; right:0; bottom:0; z-index:90; display:grid; grid-template-columns:1fr 1fr 1fr; height:calc(var(--bottombar-h) + env(safe-area-inset-bottom,0px)); padding-bottom:env(safe-area-inset-bottom,0px); background:#fff; border-top:1px solid var(--line); }
.bottombar a{ display:flex; align-items:center; justify-content:center; gap:6px; font-size:14px; font-weight:700; color:var(--ink); border-right:1px solid var(--line); }
.bottombar a svg{ width:20px; height:20px; }
.bottombar a:last-child{ background:var(--orange); color:#fff; border-right:0; }
@media (min-width:1024px){ .bottombar{ display:none; } }

/* ---------- 09 footer ---------- */
.footer{ background:var(--charcoal); color:rgba(255,255,255,.7); border-top:3px solid var(--orange); font-size:14px; line-height:1.7; }
.footer__grid{ display:grid; gap:36px; padding:48px 0; }
@media (min-width:768px){ .footer__grid{ grid-template-columns:1.2fr 1fr 1.2fr; gap:32px; padding:64px 0; } }
.footer .logo{ color:#fff; font-size:24px; }
.footer__intro{ margin:14px 0 18px; max-width:320px; }
.footer__tel{ display:inline-block; font-size:28px; font-weight:800; color:#fff; letter-spacing:-.02em; line-height:1.2; }
.footer__tel-note{ font-size:12px; color:rgba(255,255,255,.5); margin-top:4px; }
.footer h4{ color:#fff; font-size:13px; font-weight:600; letter-spacing:.04em; margin-bottom:12px; }
.footer__cols{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.footer__cols a{ display:block; padding:4px 0; color:rgba(255,255,255,.7); }
.footer__cols a:hover{ color:#fff; }
.footer dl{ margin:0; display:grid; grid-template-columns:auto 1fr; gap:4px 12px; font-size:13px; }
.footer dt{ color:rgba(255,255,255,.45); white-space:nowrap; }
.footer dd{ margin:0; color:rgba(255,255,255,.8); }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.1); padding:20px 0; font-size:12px; color:rgba(255,255,255,.45); display:flex; flex-wrap:wrap; justify-content:space-between; gap:8px; }
.footer__bottom a{ color:rgba(255,255,255,.6); }
.footer__bottom a:hover{ color:#fff; }

/* ---------- 10 hero (안쪽 여백형 대형 영상/사진 + 좌측 중앙 카피 + 하단 곡선) ---------- */
.hero{ background:#fff; padding:0; }
.hero__frame{ position:relative; height:calc(100svh - var(--header-h) - var(--bottombar-h)); min-height:520px; max-height:820px; background:var(--charcoal); color:#fff; overflow:hidden; display:flex; align-items:center; }
@media (min-width:768px){ .hero__frame{ height:calc(100vh - var(--header-h) - 24px); min-height:560px; margin:0 24px; } }
@media (min-width:1024px){ .hero__frame{ height:calc(100vh - var(--header-h) - var(--topbar-h)); min-height:620px; max-height:860px; margin:0 40px; } }
@media (min-width:1600px){ .hero__frame{ margin:0 auto; max-width:1520px; } }
.hero__media{ position:absolute; inset:0; }
.hero__media picture,.hero__media img,.hero__media video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:62% 50%; }
.hero__media video{ opacity:0; transition:opacity .6s; }
.hero__media video.is-ready{ opacity:1; }
.hero__overlay{ position:absolute; inset:0; background:linear-gradient(90deg,rgba(22,24,28,.72) 0%,rgba(22,24,28,.45) 40%,rgba(22,24,28,.05) 75%),linear-gradient(180deg,rgba(22,24,28,0) 60%,rgba(22,24,28,.35) 100%); }
.hero__content{ position:relative; padding:0 var(--gutter) 64px; max-width:760px; }
@media (min-width:768px){ .hero__content{ padding:0 48px 40px; } }
@media (min-width:1024px){ .hero__content{ padding:0 80px 40px; max-width:860px; } }
.hero__label{ color:var(--orange); font-size:13px; font-weight:600; letter-spacing:.04em; display:inline-flex; align-items:center; gap:10px; margin-bottom:16px; }
.hero__label::before{ content:''; width:24px; height:1px; background:var(--orange); }
.hero .h1{ color:#fff; font-size:clamp(30px,4.6vw,56px); line-height:1.2; }
.hero__sub{ margin-top:18px; max-width:520px; color:rgba(255,255,255,.88); font-size:clamp(15px,1.5vw,18px); line-height:1.7; }
.hero__btns{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.hero__scroll{ display:none; }
.hero__curve{ position:absolute; left:0; right:0; bottom:-1px; width:100%; height:24px; display:block; color:#fff; }
@media (min-width:768px){ .hero__curve{ height:36px; } }
@media (min-width:1024px){ .hero__curve{ height:44px; } }

/* ---------- 11 stats bar ---------- */
.stats{ position:relative; z-index:2; margin-top:40px; }
@media (min-width:1024px){ .stats{ margin-top:64px; } }
.stats__box{ background:#fff; border:1px solid var(--line); display:grid; grid-template-columns:1fr; box-shadow:0 8px 24px rgba(20,22,26,.06); }
.stats__item{ padding:24px; border-bottom:1px solid var(--line); }
.stats__item:last-child{ border-bottom:0; }
.stats__item strong{ display:block; font-size:32px; font-weight:800; color:var(--orange); letter-spacing:-.02em; line-height:1.2; }
.stats__item strong small{ font-size:18px; font-weight:700; color:var(--ink); letter-spacing:-.01em; margin-left:2px; }
.stats__item span{ display:block; margin-top:6px; font-size:14px; color:var(--ink-3); }
@media (min-width:768px){ .stats__box{ grid-template-columns:repeat(3,1fr); } .stats__item{ padding:32px 28px; border-bottom:0; border-right:1px solid var(--line); } .stats__item:last-child{ border-right:0; } }

/* ---------- 12 damage cards ---------- */
.dcards{ display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; margin:0 calc(-1 * var(--gutter)); padding:0 var(--gutter) 8px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.dcards::-webkit-scrollbar{ display:none; }
.dcard{ flex:0 0 82%; scroll-snap-align:start; background:#fff; border:1px solid var(--line); display:flex; flex-direction:column; position:relative; overflow:hidden; }
.dcard::after{ content:''; position:absolute; left:0; bottom:0; height:2px; width:100%; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); }
.dcard:hover::after,.dcard:focus-within::after{ transform:scaleX(1); }
.dcard__img{ aspect-ratio:4/3; overflow:hidden; }
.dcard__img img,.dcard__img .ph{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease-out; }
.dcard:hover .dcard__img img,.dcard:hover .dcard__img .ph{ transform:scale(1.04); }
.dcard__body{ padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.dcard__body p{ font-size:14px; color:var(--ink-2); flex:1; }
.dcard__body .link{ font-size:14px; margin-top:8px; }
@media (min-width:768px){ .dcards{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; overflow:visible; margin:0; padding:0; } .dcard{ flex:auto; } }
@media (min-width:1024px){ .dcards{ grid-template-columns:repeat(3,1fr); } }

/* ---------- 13 compare slider ---------- */
.compare{ position:relative; aspect-ratio:4/3; overflow:hidden; background:#000; user-select:none; touch-action:pan-y; }
@media (min-width:768px){ .compare{ aspect-ratio:16/9; } }
.compare img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
.compare__after{ clip-path:inset(0 0 0 50%); }
.compare__handle{ position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; transform:translateX(-1px); cursor:ew-resize; }
.compare__handle::before{ content:''; position:absolute; top:50%; left:50%; width:44px; height:44px; border-radius:50%; background:#fff; transform:translate(-50%,-50%); box-shadow:0 2px 10px rgba(0,0,0,.25); }
.compare__handle svg{ position:absolute; top:50%; left:50%; width:24px; height:24px; max-width:none; transform:translate(-50%,-50%); color:var(--orange); }
.compare__handle:focus-visible{ outline:none; }
.compare__handle:focus-visible::before{ box-shadow:0 0 0 3px var(--orange); }
.compare__tag{ position:absolute; top:12px; padding:4px 8px; font-size:12px; font-weight:600; letter-spacing:.06em; color:#fff; background:rgba(0,0,0,.55); }
.compare__tag--before{ left:12px; } .compare__tag--after{ right:12px; }
.compare--single .compare__handle,.compare--single .compare__tag--before{ display:none; }
.compare--single .compare__after{ clip-path:none; }
.compare__thumbs{ display:flex; gap:8px; margin-top:12px; overflow-x:auto; scrollbar-width:none; }
.compare__thumbs::-webkit-scrollbar{ display:none; }
.compare__thumbs button{ flex:0 0 auto; width:96px; border:2px solid transparent; opacity:.6; transition:opacity .2s,border-color .2s; }
.compare__thumbs button img{ aspect-ratio:4/3; object-fit:cover; width:100%; }
.compare__thumbs button.is-active{ opacity:1; border-color:var(--orange); }
.compare__thumbs button:hover{ opacity:1; }
.compare__thumbs button span{ display:block; font-size:12px; padding:4px 2px; color:inherit; text-align:left; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
@media (min-width:768px){ .compare__thumbs button{ width:140px; } }
.compare-wrap{ max-width:960px; margin:0 auto; }
.compare-caption{ margin-top:16px; font-size:14px; color:rgba(255,255,255,.65); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.section:not(.section--dark) .compare-caption{ color:var(--ink-3); }

/* ---------- 14 process steps ---------- */
.steps{ display:grid; gap:0; counter-reset:step; }
.step{ position:relative; display:grid; grid-template-columns:48px 1fr; gap:16px; padding:0 0 32px; }
.step__no{ width:48px; height:48px; border:1.5px solid var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--orange); font-size:15px; letter-spacing:.02em; background:#fff; }
.step::before{ content:''; position:absolute; left:23.5px; top:48px; bottom:0; width:0; border-left:1px dashed var(--orange); opacity:.6; }
.step:last-child::before{ display:none; }
.step:last-child{ padding-bottom:0; }
.step h3{ margin:11px 0 6px; }
.step p{ font-size:14px; color:var(--ink-2); }
@media (min-width:1024px){
  .steps{ grid-template-columns:repeat(4,1fr); gap:32px; }
  .step{ grid-template-columns:1fr; padding:0; }
  .step::before{ left:56px; right:-32px; top:24px; bottom:auto; width:auto; height:0; border-left:0; border-top:1px dashed var(--orange); }
  .step::after{ content:''; position:absolute; right:-36px; top:20px; width:7px; height:7px; border-top:1px solid var(--orange); border-right:1px solid var(--orange); transform:rotate(45deg); }
  .step:last-child::after{ display:none; }
  .step h3{ margin-top:20px; }
}

/* ---------- 15 target tiles ---------- */
.tiles{ display:grid; gap:12px; grid-template-columns:1fr; }
@media (min-width:768px){ .tiles{ grid-template-columns:1fr 1fr; gap:16px; } }
.tile{ position:relative; display:block; aspect-ratio:4/3; overflow:hidden; background:var(--charcoal); color:#fff; }
@media (min-width:768px){ .tile{ aspect-ratio:16/10; } }
.tile img,.tile .ph{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.tile::before{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(22,24,28,.1) 0%,rgba(22,24,28,.85) 100%); transition:opacity .4s; z-index:1; }
.tile:hover img,.tile:hover .ph{ transform:scale(1.04); }
.tile:hover::before{ opacity:.75; }
.tile__body{ position:absolute; left:0; right:0; bottom:0; padding:22px; z-index:2; }
.tile__body h3{ color:#fff; font-size:clamp(19px,2.2vw,24px); margin-bottom:6px; }
.tile__body p{ font-size:14px; color:rgba(255,255,255,.8); max-width:420px; }
.tile__body .link{ color:#fff; font-size:14px; margin-top:12px; }
@media (min-width:1024px){ .tile__body{ padding:28px; } }

/* ---------- 16 works cards ---------- */
.wcard{ display:block; background:#fff; border:1px solid var(--line); overflow:hidden; transition:border-color .2s; }
.wcard:hover{ border-color:var(--ink-3); }
.wcard__img{ aspect-ratio:4/3; overflow:hidden; }
.wcard__img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease-out; }
.wcard:hover .wcard__img img{ transform:scale(1.04); }
.wcard__body{ padding:18px 20px 20px; }
.wcard__meta{ display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.wcard__meta .small{ margin-left:auto; }
.wcard__body h3{ font-size:17px; line-height:1.4; }
.wcard__loc{ margin-top:6px; font-size:13px; color:var(--ink-3); }
.wcards-empty{ padding:64px 0; text-align:center; color:var(--ink-3); }

/* ---------- 17 CTA band ---------- */
.cta{ position:relative; background:var(--charcoal); color:#fff; overflow:hidden; }
.cta::before{ content:''; position:absolute; top:0; bottom:0; right:0; width:46%; background:var(--orange); opacity:.3; clip-path:polygon(28% 0,100% 0,100% 100%,0 100%); }
@media (max-width:767px){ .cta::before{ width:60%; opacity:.22; } }
.cta .wrap{ position:relative; display:grid; gap:28px; padding-top:56px; padding-bottom:56px; }
@media (min-width:1024px){ .cta .wrap{ grid-template-columns:1.3fr 1fr; align-items:center; padding-top:80px; padding-bottom:80px; } }
.cta h2{ color:#fff; font-size:clamp(22px,3vw,36px); font-weight:800; letter-spacing:-.02em; line-height:1.3; }
.cta p{ margin-top:10px; color:rgba(255,255,255,.75); }
.cta__side{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
@media (min-width:1024px){ .cta__side{ align-items:flex-end; text-align:right; } }
.cta__tel{ font-size:clamp(26px,3.4vw,40px); font-weight:800; letter-spacing:-.02em; color:#fff; line-height:1.1; }
.cta__tel-note{ font-size:13px; color:rgba(255,255,255,.6); }

/* ---------- 18 sub-hero / breadcrumb ---------- */
.subhero{ position:relative; height:220px; background:var(--charcoal); color:#fff; display:flex; align-items:flex-end; overflow:hidden; }
@media (min-width:768px){ .subhero{ height:320px; } }
.subhero img,.subhero .ph{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.subhero .ph::after{ display:none; }
.subhero::before{ content:''; position:absolute; inset:0; background:rgba(22,24,28,.6); z-index:1; }
.subhero .wrap{ position:relative; z-index:2; padding-bottom:28px; }
@media (min-width:768px){ .subhero .wrap{ padding-bottom:40px; } }
.subhero h1{ color:#fff; font-size:clamp(28px,4.5vw,48px); font-weight:800; letter-spacing:-.02em; line-height:1.2; }
.subhero p{ margin-top:8px; color:rgba(255,255,255,.8); font-size:clamp(14px,1.6vw,17px); }
.subhero .label{ color:var(--orange); margin-bottom:10px; display:inline-flex; }
.crumb{ font-size:13px; color:var(--ink-3); padding:16px 0; border-bottom:1px solid var(--line); }
.crumb ol{ display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.crumb li+li::before{ content:'/'; margin-right:6px; color:var(--line); }
.crumb a:hover{ color:var(--ink); }
.crumb [aria-current]{ color:var(--ink); font-weight:500; }

/* ---------- 19 detail 2-col (service/target) ---------- */
.two{ display:grid; gap:40px; }
@media (min-width:1024px){ .two{ grid-template-columns:60fr 40fr; gap:64px; align-items:start; } }
.prose h2{ font-size:clamp(20px,2.4vw,26px); font-weight:800; letter-spacing:-.02em; margin:40px 0 14px; padding-top:20px; border-top:1px solid var(--line); }
.prose h2:first-child{ margin-top:0; padding-top:0; border-top:0; }
.prose h3{ font-size:17px; margin:24px 0 8px; }
.prose p{ margin-bottom:14px; }
.prose ul{ margin:0 0 14px; padding-left:0; }
.prose ul li{ position:relative; padding-left:16px; margin-bottom:6px; }
.prose ul li::before{ content:''; position:absolute; left:0; top:.75em; width:6px; height:1px; background:var(--orange); }
.prose strong{ color:var(--ink); font-weight:700; }
.prose table{ font-size:14px; margin-bottom:14px; }
.prose th,.prose td{ border:1px solid var(--line); padding:10px 12px; text-align:left; vertical-align:top; }
.prose th{ background:var(--bg-2); color:var(--ink); font-weight:600; white-space:nowrap; }
.side{ position:sticky; top:calc(var(--header-h) + 24px); }
@media (min-width:1024px){ .side{ top:calc(var(--header-h) + var(--topbar-h) + 24px); } }
.side-card{ border:1px solid var(--line); border-top:3px solid var(--orange); padding:24px; background:#fff; }
.side-card h3{ font-size:19px; margin-bottom:6px; }
.side-card p{ font-size:14px; color:var(--ink-2); margin-bottom:18px; }
.side-card .btn{ width:100%; }
.side-card .btn + .btn{ margin-top:8px; }
.side-card__tel{ display:block; margin:18px 0 4px; font-size:26px; font-weight:800; color:var(--ink); letter-spacing:-.02em; }
.side-card__hours{ font-size:13px; color:var(--ink-3); }

/* ---------- 20 checklist (가능/어려움) ---------- */
.check2{ display:grid; gap:20px; }
@media (min-width:768px){ .check2{ grid-template-columns:1fr 1fr; gap:24px; } }
.check2__col{ border:1px solid var(--line); padding:24px; background:#fff; }
.check2__col h3{ font-size:17px; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.check2__col li{ display:flex; gap:10px; padding:9px 0; border-top:1px solid var(--line); font-size:15px; }
.check2__col li svg{ width:20px; height:20px; flex:none; margin-top:3px; }
.check2__col--ok li svg{ color:var(--orange); }
.check2__col--no li svg{ color:var(--ink-3); }
.check2__col--no{ background:var(--bg-2); }
.check2__col--no li{ color:var(--ink-2); }

/* ---------- 21 filter chips / works list ---------- */
.filters{ display:flex; flex-direction:column; gap:10px; padding:20px 0; border-bottom:1px solid var(--line); margin-bottom:32px; }
.filters__row{ display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; margin:0 calc(-1 * var(--gutter)); padding:0 var(--gutter); }
.filters__row::-webkit-scrollbar{ display:none; }
.filters__row span.label{ flex:none; align-self:center; margin-right:4px; }
.chip{ flex:none; height:36px; padding:0 14px; border:1px solid var(--line); border-radius:var(--radius); font-size:14px; font-weight:500; color:var(--ink-2); background:#fff; transition:background .15s,color .15s,border-color .15s; }
.chip:hover{ border-color:var(--ink-3); color:var(--ink); }
.chip[aria-pressed="true"]{ background:var(--orange); border-color:var(--orange); color:#fff; }
@media (min-width:768px){ .filters{ flex-direction:row; justify-content:space-between; align-items:center; } .filters__row{ margin:0; padding:0; overflow:visible; flex-wrap:wrap; } }
.filters__count{ font-size:13px; color:var(--ink-3); }

/* ---------- 22 works detail ---------- */
.spec{ font-size:15px; }
.spec th,.spec td{ padding:14px 0; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
.spec th{ width:120px; color:var(--ink-3); font-weight:500; }
.spec td{ color:var(--ink); font-weight:500; }
@media (min-width:768px){ .spec{ display:grid; grid-template-columns:1fr 1fr; column-gap:40px; } .spec tbody{ display:contents; } .spec tr{ display:flex; } .spec th{ flex:0 0 120px; } .spec td{ flex:1; } }
.gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
@media (min-width:768px){ .gallery{ grid-template-columns:repeat(3,1fr); gap:16px; } }
.gallery button{ display:block; aspect-ratio:4/3; overflow:hidden; background:var(--bg-2); }
.gallery button img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease-out; }
.gallery button:hover img{ transform:scale(1.04); }
.prevnext{ display:grid; gap:12px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
@media (min-width:768px){ .prevnext{ grid-template-columns:1fr 1fr; } .prevnext a+a{ border-left:1px solid var(--line); text-align:right; align-items:flex-end; } }
.prevnext a{ display:flex; flex-direction:column; gap:4px; padding:20px 0; }
@media (min-width:768px){ .prevnext a{ padding:24px; } }
.prevnext a:hover strong{ color:var(--orange); }
.prevnext .label{ font-size:12px; }
.prevnext strong{ color:var(--ink); font-size:16px; transition:color .2s; }
.prevnext a.is-empty{ color:var(--ink-3); pointer-events:none; }
.prevnext a.is-empty strong{ color:var(--ink-3); }
.detail-head{ display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.detail-head .wcard__meta{ margin:0; }

/* ---------- 23 about ---------- */
.greet{ display:grid; gap:32px; }
@media (min-width:1024px){ .greet{ grid-template-columns:1fr 1fr; gap:64px; align-items:center; } }
.greet__img{ aspect-ratio:4/3; }
.greet blockquote{ margin:0; }
.greet blockquote p{ font-size:clamp(17px,2vw,21px); line-height:1.7; color:var(--ink); font-weight:500; }
.greet blockquote p+p{ margin-top:14px; }
.greet cite{ display:block; margin-top:24px; font-style:normal; font-size:14px; color:var(--ink-3); }
.greet cite strong{ color:var(--ink); font-weight:700; margin-right:8px; }
.numslides{ display:grid; gap:12px; }
@media (min-width:768px){ .numslides{ grid-template-columns:repeat(3,1fr); gap:16px; } }
.numslide{ position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--charcoal); color:#fff; }
.numslide img,.numslide .ph{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.numslide .ph::after{ display:none; }
.numslide::before{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(22,24,28,.15),rgba(22,24,28,.8)); z-index:1; }
.numslide__no{ position:absolute; top:20px; left:20px; z-index:2; font-size:14px; font-weight:800; color:var(--orange); letter-spacing:.06em; }
.numslide__no::after{ content:''; display:block; width:24px; height:2px; background:var(--orange); margin-top:8px; }
.numslide__txt{ position:absolute; left:20px; right:20px; bottom:20px; z-index:2; }
.numslide__txt h3{ color:#fff; font-size:19px; margin-bottom:4px; }
.numslide__txt p{ font-size:13px; color:rgba(255,255,255,.75); }
.info-table th,.info-table td{ padding:14px 12px; border-bottom:1px solid var(--line); text-align:left; font-size:15px; vertical-align:top; }
.info-table th{ width:140px; color:var(--ink-3); font-weight:500; background:var(--bg-2); }
.info-table td{ color:var(--ink); }
.info-table tr:first-child th,.info-table tr:first-child td{ border-top:1px solid var(--ink); }
.map{ aspect-ratio:16/9; background:var(--bg-2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--ink-3); font-size:14px; text-align:center; padding:20px; }
@media (min-width:768px){ .map{ aspect-ratio:21/9; } }
.addr-row{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:16px; }
.addr-row strong{ color:var(--ink); }
.regions{ display:grid; gap:12px; }
@media (min-width:768px){ .regions{ grid-template-columns:repeat(3,1fr); } }
.region{ border:1px solid var(--line); padding:20px; }
.region h3{ font-size:16px; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.region h3 i{ width:8px; height:8px; background:var(--orange); display:inline-block; }
.region p{ font-size:14px; color:var(--ink-2); }
.equip{ display:grid; gap:0; border-top:1px solid var(--ink); }
.equip li{ display:grid; grid-template-columns:48px 1fr; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); align-items:start; }
.equip li span.num{ font-size:13px; padding-top:4px; }
.equip li h3{ font-size:16px; margin-bottom:4px; }
.equip li p{ font-size:14px; }

/* ---------- 24 contact form ---------- */
.form{ display:grid; gap:20px; }
.form__row{ display:grid; gap:20px; }
@media (min-width:768px){ .form__row--2{ grid-template-columns:1fr 1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:14px; font-weight:600; color:var(--ink); }
.field label .req{ color:var(--orange); margin-left:2px; }
.field input,.field select,.field textarea{ width:100%; height:48px; padding:0 14px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; font-size:15px; color:var(--ink); transition:border-color .15s; }
.field textarea{ height:auto; min-height:140px; padding:12px 14px; resize:vertical; line-height:1.6; }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233D4148' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--ink); }
.field.is-error input,.field.is-error select,.field.is-error textarea{ border-color:#D0342C; }
.field__msg{ font-size:12px; color:#D0342C; display:none; }
.field.is-error .field__msg{ display:block; }
.field__hint{ font-size:12px; color:var(--ink-3); }
.drop{ border:1px dashed var(--ink-3); background:var(--bg-2); padding:28px 16px; text-align:center; font-size:14px; color:var(--ink-2); cursor:pointer; transition:border-color .15s,background .15s; }
.drop:hover,.drop.is-over{ border-color:var(--orange); background:var(--orange-soft); }
.drop svg{ width:28px; height:28px; margin:0 auto 8px; color:var(--ink-3); }
.drop strong{ color:var(--ink); }
.drop input{ display:none; }
.thumbs{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
@media (min-width:768px){ .thumbs{ grid-template-columns:repeat(5,1fr); } }
.thumb{ position:relative; aspect-ratio:1; background:var(--bg-2); overflow:hidden; border:1px solid var(--line); }
.thumb img{ width:100%; height:100%; object-fit:cover; }
.thumb button{ position:absolute; top:4px; right:4px; width:28px; height:28px; background:rgba(0,0,0,.6); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.thumb button svg{ width:14px; height:14px; }
.thumb span{ position:absolute; left:0; right:0; bottom:0; font-size:10px; padding:2px 6px; background:rgba(0,0,0,.55); color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.agree{ display:flex; align-items:flex-start; gap:10px; font-size:14px; }
.agree input{ width:20px; height:20px; margin:1px 0 0; accent-color:var(--orange); flex:none; }
.agree button{ text-decoration:underline; text-underline-offset:3px; color:var(--ink-3); margin-left:4px; font-size:13px; }
.form__submit{ margin-top:8px; }
.form-alert{ padding:12px 14px; background:var(--orange-soft); border-left:3px solid var(--orange); font-size:14px; color:var(--ink); }
.done{ text-align:center; padding:80px 0; }
.done__icon{ width:64px; height:64px; margin:0 auto 24px; border:1.5px solid var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--orange); }
.done__icon svg{ width:28px; height:28px; }
.done p{ margin:12px auto 0; max-width:480px; }
.done .btns{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:32px; }
.hours{ display:grid; grid-template-columns:auto 1fr; gap:6px 16px; font-size:14px; margin-top:16px; padding-top:16px; border-top:1px solid var(--line); }
.hours dt{ color:var(--ink-3); } .hours dd{ margin:0; color:var(--ink); font-weight:500; }

/* ---------- 25 notice ---------- */
.nlist{ border-top:1px solid var(--ink); }
.nitem{ border-bottom:1px solid var(--line); }
.nitem__btn{ display:flex; align-items:center; gap:12px; width:100%; padding:18px 0; text-align:left; }
.nitem__btn .badge{ flex:none; }
.nitem__btn strong{ flex:1; font-weight:600; color:var(--ink); font-size:15px; }
.nitem__btn time{ font-size:13px; color:var(--ink-3); flex:none; }
.nitem__btn svg{ width:18px; height:18px; color:var(--ink-3); flex:none; transition:transform .25s var(--ease); }
.nitem__btn[aria-expanded="true"] svg{ transform:rotate(180deg); }
.nitem__body{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s var(--ease); }
.nitem__body > div{ overflow:hidden; }
.nitem__btn[aria-expanded="true"] + .nitem__body{ grid-template-rows:1fr; }
.nitem__body p{ padding:0 0 20px 0; font-size:15px; color:var(--ink-2); }
@media (min-width:768px){ .nitem__btn{ padding:22px 8px; gap:20px; } .nitem__body p{ padding:0 8px 24px; } }
.nitem--pinned .nitem__btn strong{ font-weight:700; }

/* ---------- 26 modal / lightbox ---------- */
.modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:20px; background:rgba(20,22,26,.6); opacity:0; visibility:hidden; transition:opacity .2s,visibility .2s; }
.modal.is-open{ opacity:1; visibility:visible; }
.modal__box{ width:100%; max-width:520px; max-height:calc(100vh - 40px); overflow-y:auto; background:#fff; padding:28px; border-top:3px solid var(--orange); transform:translateY(8px); transition:transform .25s var(--ease); }
.modal.is-open .modal__box{ transform:none; }
.modal__box h2{ font-size:20px; margin-bottom:10px; }
.modal__box p{ font-size:14px; color:var(--ink-2); margin-bottom:12px; }
.modal__box h3{ font-size:15px; margin:16px 0 6px; }
.modal__box ul{ font-size:14px; color:var(--ink-2); padding-left:18px; list-style:disc; margin-bottom:12px; }
.modal__close{ position:absolute; top:12px; right:12px; width:40px; height:40px; display:flex; align-items:center; justify-content:center; }
.modal__close svg{ width:22px; height:22px; }
.modal__box{ position:relative; }
.modal__actions{ display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.lightbox{ position:fixed; inset:0; z-index:200; background:rgba(0,0,0,.92); display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .2s,visibility .2s; }
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:calc(100vw - 40px); max-height:calc(100vh - 120px); object-fit:contain; }
.lightbox__close{ position:absolute; top:16px; right:16px; width:44px; height:44px; color:#fff; display:flex; align-items:center; justify-content:center; }
.lightbox__close svg{ width:26px; height:26px; }
.lightbox__nav{ position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; color:#fff; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.1); }
.lightbox__nav svg{ width:24px; height:24px; }
.lightbox__nav--prev{ left:12px; } .lightbox__nav--next{ right:12px; }
.lightbox__count{ position:absolute; bottom:20px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.7); font-size:13px; letter-spacing:.06em; }
body.modal-open{ overflow:hidden; }

/* ---------- 27 reveal / motion ---------- */
.js .up{ opacity:0; transform:translateY(16px); transition:opacity .5s ease-out,transform .5s ease-out; }
.js .up.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .js .up{ opacity:1; transform:none; }
}

/* ---------- 28 admin ---------- */
.adm{ min-height:100vh; background:var(--bg-2); color:var(--ink-2); }
.adm-login{ min-height:100vh; display:flex; align-items:center; justify-content:center; padding:20px; background:var(--charcoal); }
.adm-login__box{ width:100%; max-width:380px; background:#fff; padding:36px 28px; border-top:3px solid var(--orange); }
.adm-login__box .logo{ margin-bottom:6px; }
.adm-login__box .small{ margin-bottom:24px; display:block; }
.adm-login__box .form{ gap:14px; }
.adm-shell{ display:grid; grid-template-columns:1fr; min-height:100vh; }
@media (min-width:1024px){ .adm-shell{ grid-template-columns:240px 1fr; } }
.adm-side{ background:var(--charcoal); color:#fff; display:flex; flex-direction:column; }
.adm-side__head{ display:flex; align-items:center; justify-content:space-between; height:60px; padding:0 20px; border-bottom:1px solid rgba(255,255,255,.1); }
.adm-side__head .logo{ color:#fff; font-size:20px; }
.adm-side__head .logo small{ font-size:11px; font-weight:500; color:rgba(255,255,255,.5); margin-left:8px; letter-spacing:.04em; }
.adm-nav{ display:none; flex-direction:column; padding:12px; gap:2px; }
.adm-nav button{ display:flex; align-items:center; gap:10px; padding:11px 12px; font-size:14px; font-weight:500; color:rgba(255,255,255,.7); text-align:left; border-left:2px solid transparent; }
.adm-nav button svg{ width:18px; height:18px; }
.adm-nav button:hover{ color:#fff; background:rgba(255,255,255,.05); }
.adm-nav button.is-active{ color:#fff; border-left-color:var(--orange); background:rgba(255,255,255,.06); }
.adm-side__foot{ margin-top:auto; padding:16px 20px; font-size:12px; color:rgba(255,255,255,.5); display:none; }
.adm-side__foot button{ color:#fff; text-decoration:underline; margin-left:8px; }
@media (min-width:1024px){ .adm-nav{ display:flex; } .adm-side__foot{ display:block; } .adm-side__head{ height:72px; } }
.adm-tabs{ position:fixed; left:0; right:0; bottom:0; z-index:90; display:grid; grid-template-columns:repeat(4,1fr); height:calc(var(--bottombar-h) + env(safe-area-inset-bottom,0px)); padding-bottom:env(safe-area-inset-bottom,0px); background:#fff; border-top:1px solid var(--line); }
.adm-tabs button{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; font-size:11px; font-weight:600; color:var(--ink-3); }
.adm-tabs button svg{ width:20px; height:20px; }
.adm-tabs button.is-active{ color:var(--orange); }
@media (min-width:1024px){ .adm-tabs{ display:none; } }
.adm-main{ padding:20px var(--gutter) 90px; }
@media (min-width:1024px){ .adm-main{ padding:32px 40px 40px; } }
.adm-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
.adm-head h1{ font-size:22px; font-weight:800; letter-spacing:-.02em; }
.adm-card{ background:#fff; border:1px solid var(--line); padding:20px; margin-bottom:16px; }
@media (min-width:1024px){ .adm-card{ padding:28px; } }
.adm-card h2{ font-size:17px; margin-bottom:16px; }
.adm-table{ font-size:14px; }
.adm-table th,.adm-table td{ padding:12px 10px; border-bottom:1px solid var(--line); text-align:left; vertical-align:middle; }
.adm-table th{ font-size:12px; color:var(--ink-3); font-weight:600; letter-spacing:.04em; white-space:nowrap; }
.adm-table td{ color:var(--ink); }
.adm-table .actions{ display:flex; gap:6px; white-space:nowrap; }
.adm-table-wrap{ overflow-x:auto; }
.adm-table img{ width:56px; aspect-ratio:4/3; object-fit:cover; border:1px solid var(--line); }
.adm-empty{ padding:40px 0; text-align:center; color:var(--ink-3); font-size:14px; }
.adm-list{ display:grid; gap:10px; }
.adm-item{ display:grid; grid-template-columns:72px 1fr auto; gap:12px; align-items:center; padding:12px; background:#fff; border:1px solid var(--line); }
.adm-item img{ width:72px; aspect-ratio:4/3; object-fit:cover; }
.adm-item strong{ display:block; color:var(--ink); font-size:15px; }
.adm-item span{ font-size:12px; color:var(--ink-3); }
.status{ display:inline-flex; align-items:center; height:24px; padding:0 8px; font-size:12px; font-weight:600; border-radius:var(--radius); background:var(--bg-2); color:var(--ink-2); }
.status--new{ background:var(--orange-soft); color:var(--orange-dark); }
.status--done{ background:#E8F3EC; color:#1E7A45; }
.status select{ height:28px; font-size:12px; border:1px solid var(--line); padding:0 6px; }
.slot2{ display:grid; gap:12px; }
@media (min-width:768px){ .slot2{ grid-template-columns:1fr 1fr; } }
.slot{ border:1px dashed var(--ink-3); background:var(--bg-2); aspect-ratio:4/3; position:relative; display:flex; align-items:center; justify-content:center; text-align:center; font-size:14px; color:var(--ink-2); cursor:pointer; overflow:hidden; }
.slot.is-over{ border-color:var(--orange); background:var(--orange-soft); }
.slot img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.slot__tag{ position:absolute; top:8px; left:8px; padding:3px 8px; font-size:11px; font-weight:700; letter-spacing:.06em; background:var(--charcoal); color:#fff; z-index:1; }
.slot__tag--after{ background:var(--orange); }
.slot__clear{ position:absolute; top:8px; right:8px; z-index:1; width:28px; height:28px; border-radius:50%; background:rgba(0,0,0,.6); color:#fff; display:flex; align-items:center; justify-content:center; }
.slot__clear svg{ width:14px; height:14px; }
.slot input{ display:none; }
.adm-video{ display:grid; gap:16px; }
@media (min-width:768px){ .adm-video{ grid-template-columns:1fr 1fr; } }
.adm-video video{ width:100%; aspect-ratio:16/9; background:#000; object-fit:cover; }
.adm-stat{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-bottom:16px; }
@media (min-width:768px){ .adm-stat{ grid-template-columns:repeat(4,1fr); } }
.adm-stat div{ background:#fff; border:1px solid var(--line); padding:16px; }
.adm-stat strong{ display:block; font-size:26px; font-weight:800; color:var(--ink); letter-spacing:-.02em; }
.adm-stat span{ font-size:12px; color:var(--ink-3); }
.toast{ position:fixed; left:50%; bottom:calc(var(--bottombar-h) + 20px); transform:translateX(-50%) translateY(8px); z-index:300; background:var(--ink); color:#fff; padding:10px 16px; font-size:14px; border-radius:var(--radius); opacity:0; transition:opacity .2s,transform .2s; pointer-events:none; }
.toast.is-show{ opacity:1; transform:translateX(-50%); }
@media (min-width:1024px){ .toast{ bottom:24px; } }

/* ---------- 29 admin grid overflow fix ---------- */
.adm-side,.adm-main{ min-width:0; }
.adm-table-wrap{ min-width:0; }

/* ---------- 30 admin mobile list ---------- */
.adm-list{ display:none; }
.adm-item{ grid-template-columns:72px 1fr; }
.adm-item > div{ min-width:0; }
.adm-item strong{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.adm-item .actions{ display:flex; gap:12px; margin-top:6px; }
.adm-item .actions a,.adm-item .actions button{ font-size:13px; font-weight:600; color:var(--orange); }
.adm-item .actions button:last-child{ color:var(--ink-3); }
@media (max-width:767px){ #worksTable{ display:none; } .adm-list{ display:grid; } }

/* ---------- 31 home intro (히어로 아래 2열) ---------- */
.intro{ padding:48px 0 32px; }
@media (min-width:768px){ .intro{ padding:72px 0 48px; } }
@media (min-width:1024px){ .intro{ padding:96px 0 64px; } }
.intro__grid{ display:grid; gap:40px; }
@media (min-width:1024px){ .intro__grid{ grid-template-columns:minmax(0,1fr) 380px; gap:72px; align-items:start; } }
.intro__title{ color:var(--orange); font-size:clamp(24px,3vw,36px); font-weight:700; line-height:1.4; letter-spacing:-.02em; margin-bottom:24px; }
.intro__main > p{ margin-bottom:18px; max-width:720px; }
.pc{ display:none; } @media (min-width:1024px){ .pc{ display:inline; } }
.intro__map{ margin-top:40px; }
.intro__map svg{ width:100%; max-width:720px; height:auto; display:block; }
.m-land{ fill:#E9EBEE; } .m-seoul{ fill:#D3D7DC; }
.m-dot{ fill:var(--orange); stroke:#fff; stroke-width:3; }
.m-dot--main{ fill:var(--charcoal); }
.m-lines path{ stroke:var(--orange); stroke-width:1; fill:none; opacity:.7; }
.m-labels text{ font-family:var(--font); font-size:17px; fill:var(--ink-2); }
.m-label--main{ fill:var(--ink) !important; font-weight:700; }
.intro__map-note{ margin-top:12px; font-size:14px; color:var(--ink-3); }
.hotline{ position:relative; background:var(--orange); color:#fff; padding:28px 28px 26px; overflow:hidden; }
.hotline::after{ content:''; position:absolute; right:-40px; top:-40px; width:180px; height:180px; border-radius:50%; border:28px solid rgba(255,255,255,.14); }
.hotline__label{ display:block; font-size:13px; font-weight:600; opacity:.9; margin-bottom:10px; position:relative; }
.hotline__tel{ display:inline-flex; align-items:center; gap:10px; font-size:clamp(26px,2.4vw,32px); font-weight:800; letter-spacing:-.02em; color:#fff; line-height:1.1; position:relative; }
.hotline__tel svg{ width:24px; height:24px; }
.hotline__link{ display:inline-block; margin-top:14px; font-size:14px; font-weight:600; color:#fff; border-bottom:1px solid rgba(255,255,255,.6); position:relative; }
.acc{ margin-top:8px; }
.acc__item{ border-bottom:1px solid var(--line); }
.acc__btn{ display:flex; align-items:center; justify-content:space-between; gap:12px; width:100%; padding:18px 0; text-align:left; font-size:19px; font-weight:600; color:var(--ink); }
.acc__btn svg{ width:20px; height:20px; color:var(--ink-3); flex:none; transition:transform .25s var(--ease); }
.acc__btn[aria-expanded="true"]{ color:var(--orange); }
.acc__btn[aria-expanded="true"] svg{ transform:rotate(180deg); color:var(--orange); }
.acc__body{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s var(--ease); }
.acc__body > div{ overflow:hidden; }
.acc__body p{ font-size:14px; color:var(--ink-2); margin-bottom:8px; }
.acc__body .link{ font-size:14px; margin-bottom:18px; }
.acc__btn[aria-expanded="true"] + .acc__body{ grid-template-rows:1fr; }
.intro__photo{ position:relative; display:block; margin-top:28px; overflow:hidden; background:var(--charcoal); }
.intro__photo img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .5s var(--ease); }
.intro__photo:hover img{ transform:scale(1.04); }
.intro__photo span{ position:absolute; left:20px; bottom:18px; color:#fff; font-weight:600; font-size:15px; }
