/* ============================================================
   FINERO 피네로 — 차수판시공 전문
   Primary: #1C4080 (Navy) | Accent: #C9A84C (Gold)
   Font: Pretendard
============================================================ */

/* ── Design Tokens ── */
:root {
  --primary:         #1C4080;
  --primary-dark:    #0E2A5C;
  --primary-light:   #2658A8;
  --gold:            #C9A84C;
  --gold-soft:       #D9BE7A;
  --gold-dark:       #A8862D;
  --ink:             #0F1F3D;
  --mute:            #6B7A99;
  --border:          #E0E0E0;
  --border-mid:      #BDBDBD;
  --border-soft:     #EEEEEE;
  --bg-alt:          #F8F8F8;
  --bg-warm:         #F4F2EE;
  --bg-white:        #FFFFFF;
  --bg-dark:         #0E2A5C;
  --c-text:          #0F1F3D;
  --c-text-muted:    #6B7A99;
  --c-text-inv:      #FFFFFF;
  --primary-d-rgb:   14, 42, 92;

  --ff-main:     'Noto Sans KR', 'Pretendard Variable', 'Pretendard', -apple-system,
                BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  --font-display:'Manrope', 'Noto Sans KR', sans-serif;

  --sz-xs:   0.875rem;
  --sz-sm:   1rem;
  --sz-base: 1.125rem;
  --sz-lg:   1.25rem;
  --sz-xl:   1.375rem;
  --sz-2xl:  1.625rem;
  --sz-3xl:  2rem;
  --sz-4xl:  2.5rem;
  --sz-5xl:  3.25rem;

  --radius:    0px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 6px -4px rgba(0,0,0,.06);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --ease:       cubic-bezier(.22,1,.36,1);
  --max-w:      1200px;
  --dp-sec-pad: clamp(64px, 9vw, 112px);
}

/* ── Word-break ── */
body { word-break: keep-all; overflow-wrap: break-word; }
p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div { word-break: keep-all; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-main);
  background: var(--bg-alt);
  color: var(--c-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Display font — 모든 제목에 Manrope 적용 ── */
h1, h2, h3, h4 { font-family: var(--font-display); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -999px; left: -999px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  z-index: 9999;
}
.skip-link:focus { top: 8px; left: 8px; }

/* ── AOS-lite animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }

/* ============================================================
   HEADER
============================================================ */
.dc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14,42,92,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow 0.3s;
}
.dc-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.dc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.dc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.dc-logo__icon { flex-shrink: 0; }
.dc-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.dc-logo__text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}
.dc-logo__text small {
  font-size: 0.78rem;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.dc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.dc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.dc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dc-nav a {
  color: rgba(255,255,255,0.75);
  font-size: var(--sz-sm);
  font-weight: 500;
  transition: color 0.2s;
}
.dc-nav a:hover { color: #fff; }
.dc-nav__cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 9px 22px;
  font-weight: 700;
  font-size: var(--sz-sm);
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
}
.dc-nav__cta:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .dc-hamburger { display: flex; }
  .dc-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--primary-dark);
    padding: 16px 0 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 2px solid var(--gold);
    pointer-events: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .dc-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .dc-nav a { padding: 12px 24px; }
  .dc-nav__cta {
    margin: 8px 24px;
    display: block;
    text-align: center;
    padding: 14px 22px;
  }
}

/* ============================================================
   HERO — Bento Grid
============================================================ */
.dc-hero {
  background: var(--bg-dark);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}
.dc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.dc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.dc-hero-main {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px 0;
}
.dc-hero__eyebrow {
  display: block;
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.dc-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.dc-hero__sub {
  font-size: var(--sz-lg);
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}
.dc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.dc-hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5px 12px;
  font-size: var(--sz-xs);
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.dc-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dc-micro-copy {
  display: block;
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}
.dc-bento-right {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
}
.dc-bento-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 8s ease;
}
.dc-bento-right:hover img { transform: scale(1.04); }
.dc-bento-right__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,42,92,0.88));
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  padding: 20px 14px 10px;
  letter-spacing: 0.04em;
}
.dc-bento-mini-grid {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dc-bento-mini {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
  position: relative;
}
.dc-bento-mini img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease;
}
.dc-bento-mini:hover img { transform: scale(1.05); }
.dc-bento-mini__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,42,92,0.85));
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  padding: 8px 10px 6px;
}
@media (max-width: 900px) {
  .dc-hero-grid { grid-template-columns: 1fr; }
  .dc-hero-main { grid-row: 1; padding: 40px 0 24px; }
  .dc-bento-right { grid-column: 1; grid-row: 2; aspect-ratio: 16/7; }
  .dc-bento-mini-grid { grid-column: 1; grid-row: 3; }
}
@media (max-width: 540px) {
  .dc-hero { padding: 40px 0 32px; }
  .dc-hero h1 { font-size: 2rem; }
  .dc-bento-mini-grid { display: none; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: trustMarquee 20s linear infinite;
}
.trust-strip-track:hover { animation-play-state: paused; }
@keyframes trustMarquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.trust-item {
  font-weight: 700;
  font-size: var(--sz-sm);
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-sep {
  color: var(--primary-dark);
  opacity: 0.45;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

/* ============================================================
   MARQUEE SECTION
============================================================ */
.dc-marquee-section {
  background: var(--bg-dark);
  padding: 56px 0;
  overflow: hidden;
}
.dc-marquee-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 32px;
}
.dc-marquee-label {
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.dc-marquee-title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.dc-marquee-wrap {
  width: 100%;
  overflow: hidden;
}
.dc-marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeLeft 70s linear infinite;
  width: max-content;
}
.dc-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeLeft {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.dc-mq-item {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-light);
  position: relative;
}
.dc-mq-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dc-mq-item:hover img { transform: scale(1.05); }
.dc-mq-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,42,92,0.88));
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  padding: 20px 12px 8px;
}
.dc-marquee-footer {
  text-align: center;
  margin-top: 32px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.dc-marquee-cta {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--sz-sm);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.dc-marquee-cta:hover { border-color: var(--gold); }
.dc-marquee-area {
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION COMMONS
============================================================ */
.section { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.section-alt { background: var(--bg-white); }
.section-soft { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--c-text-inv); }

.dp-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  display: block;
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--gold-soft); }
.display-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--primary);
}
.section-dark .display-title { color: #fff; }
.body-lead {
  font-size: var(--sz-lg);
  color: var(--c-text-muted);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .body-lead { color: rgba(255,255,255,0.6); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1.2;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  text-decoration: none;
  letter-spacing: 0.05em;
  min-height: 52px;
  word-break: keep-all;
}
.btn-primary:hover, .btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-primary svg, .btn-gold svg { transition: transform 0.2s; }
.btn-primary:hover svg, .btn-gold:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
  min-height: 52px;
  word-break: keep-all;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-outline--dark {
  border-color: var(--border-mid);
  color: var(--c-text);
}
.btn-outline--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.cta-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  text-decoration: none;
  letter-spacing: 0.05em;
  min-height: 52px;
  word-break: keep-all;
}
.cta-band-btn:hover {
  background: var(--gold-soft);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.cta-band-btn svg { transition: transform 0.2s; }
.cta-band-btn:hover svg { transform: translateX(4px); }

/* ============================================================
   SERVICE CARDS — 번호 사용, 풀카드 링크
============================================================ */
.service-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list > li { display: flex; }
@media (max-width: 1024px) {
  .service-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .service-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .service-list { grid-template-columns: 1fr; }
}
a.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 24px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}
.service-card__num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.30;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
a.service-card h3 {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
a.service-card p {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 0;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--gold);
  margin-top: 22px;
  transition: gap 0.2s var(--ease);
}
a.service-card:hover .service-card__more { gap: 8px; }

/* ============================================================
   STATS GRID
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
.stats-grid__item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stats-grid__item:last-child { border-right: 0; }
@media (max-width: 640px) {
  .stats-grid__item:nth-child(2) { border-right: 0; }
  .stats-grid__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: var(--sz-sm);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================================
   PROCESS LIST
============================================================ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-list { grid-template-columns: 1fr; }
}
.process-list__item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.process-list__item:first-child { border-top: 0; }
.process-list__item:last-child { border-right: 0; }
@media (max-width: 900px) {
  .process-list__item { border-top: 1px solid var(--border); }
  .process-list__item:nth-child(2) { border-right: 0; }
}
@media (max-width: 480px) {
  .process-list__item { border-right: 0; }
}
.process-n {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  opacity: 0.9;
}
.process-list__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.process-list__desc {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--bg-dark);
  padding: 72px 0 60px;
}
.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text .eyebrow { color: var(--gold-soft); }
.cta-band-text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin: 10px 0 10px;
  line-height: 1.3;
}
.cta-band-text p {
  color: rgba(255,255,255,0.6);
  font-size: var(--sz-sm);
  line-height: 1.8;
}
.cta-band-micro {
  display: block;
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}

/* ============================================================
   FAQ GRID — 카드 방식
============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 28px 24px 26px;
  transition: box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.faq-card:hover {
  box-shadow: var(--shadow);
}
.faq-card-num {
  display: block;
  font-size: var(--sz-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.faq-card-q {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.45;
}
.faq-card-a {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* ============================================================
   REGION LINKS — 필 스타일
============================================================ */
.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.region-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border-mid);
  color: var(--c-text);
  font-size: var(--sz-sm);
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.region-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
.dc-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.dc-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 640px) {
  .dc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.dc-footer__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.dc-footer__tagline {
  font-size: var(--sz-sm);
  color: var(--gold-soft);
  margin-bottom: 12px;
  font-weight: 500;
}
.dc-footer__biz {
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.dc-footer__tel-note {
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}
.dc-footer__tel-note a {
  color: var(--gold-soft);
  text-decoration: underline;
}
.dc-footer__nav h4 {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.dc-footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.dc-footer__nav a {
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.dc-footer__nav a:hover { color: var(--gold); }
.dc-footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   STICKY BOTTOM BAR
============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
}
.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: var(--sz-sm);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.sticky-cta-btn.primary {
  background: var(--gold);
  color: var(--ink);
}
.sticky-cta-btn.primary:hover { background: var(--gold-soft); }
.sticky-cta-btn.secondary {
  background: var(--primary);
  color: #fff;
}
.sticky-cta-btn.secondary:hover { background: var(--primary-dark); }
@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}

/* ============================================================
   FLOATING CTA (Desktop)
============================================================ */
.dp-float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: background 0.25s, transform 0.25s;
}
.dp-float-cta:hover {
  background: var(--gold-soft);
  transform: scale(1.05);
}
.dp-float-cta__ring {
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  animation: ctaRing 2.5s ease infinite;
}
@keyframes ctaRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 768px) {
  .dp-float-cta { display: none !important; }
}

/* ============================================================
   BACK TO TOP
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(14,42,92,0.9);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  transition: background 0.2s;
}
#back-to-top.visible { display: flex; }
#back-to-top:hover { background: var(--primary); }
@media (max-width: 768px) {
  #back-to-top { bottom: 72px; right: 16px; }
}

/* ============================================================
   SERVICE DETAIL PAGES (_service_render.php)
============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero p {
  font-size: var(--sz-lg);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--sz-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.8); }

.kicker {
  display: inline-block;
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-intro { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.page-intro__text { font-size: var(--sz-lg); color: var(--c-text-muted); line-height: 1.8; }

.feat-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 20px; margin-top: 32px; }
.feat-card { padding: 28px 22px; border: 1px solid var(--border); background: var(--bg-white); }
.feat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.feat-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.feat-card p { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }

.symp-section { padding: var(--dp-sec-pad) 0; background: var(--bg-alt); }
.symp-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 16px; margin-top: 32px; }
.symp-card { padding: 22px 18px; border-left: 3px solid var(--gold); background: var(--bg-white); }
.symp-card p { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.6; }

.proc-section { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.proc-steps { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 0; }
.proc-step { padding: 32px 24px; border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
.proc-step:first-child { border-top: 0; }
.proc-step:last-child { border-right: 0; }
.proc-step__n { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.proc-step__title { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.proc-step__desc { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }

.method-section { padding: var(--dp-sec-pad) 0; background: var(--bg-alt); }
.method-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; margin-top: 32px; }
.method-card { padding: 28px 24px; border: 1px solid var(--border); background: var(--bg-white); position: relative; }
.method-card__n { font-size: var(--sz-xs); font-weight: 700; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.12em; }
.method-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.method-card p { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }

.svc-gallery { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.svc-gallery .cases-grid { margin-top: 32px; }

.related-section { padding: var(--dp-sec-pad) 0; background: var(--bg-alt); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 28px; }
.related-card { padding: 20px 18px; border: 1px solid var(--border); background: var(--bg-white); transition: border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-card h3 { font-size: var(--sz-sm); font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.related-card p { font-size: var(--sz-xs); color: var(--c-text-muted); }
.svc-cta-wrap { padding: var(--dp-sec-pad) 0; background: var(--bg-dark); text-align: center; }
.svc-cta-wrap h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.svc-cta-wrap p { font-size: var(--sz-lg); color: rgba(255,255,255,0.6); margin-bottom: 28px; }

/* ============================================================
   CASES GRID (homepage + gallery)
============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-white);
  transition: var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-card-body { padding: clamp(16px, 2vw, 24px); }
.case-card-title {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.case-card-meta {
  font-size: var(--sz-xs);
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.case-card-desc {
  font-size: var(--sz-xs);
  color: var(--c-text-muted);
  line-height: 1.7;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.before-after figure {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.before-after figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .7rem;
  padding: 2px 8px;
  backdrop-filter: blur(4px);
  font-weight: 600;
}
.section-cta-wrap { text-align: center; margin-top: 40px; }
.empty-msg { text-align: center; color: var(--c-text-muted); padding: 48px 0; }

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-page { background: var(--bg-white); }
.gallery-page .section-title { margin-bottom: 8px; }
.page-desc { color: var(--c-text-muted); font-size: var(--sz-lg); margin-bottom: 36px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,42,92,0.88));
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  padding: 24px 12px 10px;
}

/* ============================================================
   PORTFOLIO DETAIL PAGE
============================================================ */
.pd-hero {
  min-height: clamp(280px, 38vh, 480px);
  position: relative;
  overflow: hidden;
}
.pd-hero img {
  width: 100%; height: clamp(280px, 38vh, 480px);
  object-fit: cover;
}
.pd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.pd-hero-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 3vw, 40px);
  color: #fff;
}
.pd-hero-title h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
}
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: clamp(24px, 3vw, 40px) 0;
}
.ba-compare figure { position: relative; }
.ba-compare img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-compare figcaption {
  text-align: center;
  padding: 8px;
  font-size: var(--sz-xs);
  font-weight: 600;
  color: var(--c-text);
  background: var(--bg-alt);
}
.pd-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: clamp(24px, 3vw, 40px) 0;
}
@media (max-width: 640px) { .pd-meta { grid-template-columns: 1fr 1fr; } }
.pd-meta-item {
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--border);
  text-align: center;
}
.pd-meta-label {
  font-size: var(--sz-xs);
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.pd-meta-value {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--c-text);
}
.pd-container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px) 80px; }
.pd-ba-section, .pd-process-section { margin-bottom: 48px; }
.pd-steps ol { padding-left: 0; list-style: none; counter-reset: step; }
.pd-steps li {
  counter-increment: step;
  padding: clamp(12px, 1.5vw, 16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}
.pd-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-size: var(--sz-xs);
  min-width: 28px;
}
.pd-cta-wrap { text-align: center; margin: 48px 0; }
.pd-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.pd-nav a {
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}
.pd-nav a:hover { border-color: var(--gold); }
.pd-nav-label { font-size: var(--sz-xs); color: var(--c-text-muted); }
.pd-nav-title { font-size: var(--sz-sm); font-weight: 600; color: var(--c-text); }
.pd-nav-empty {}
.pd-summary-section { margin-bottom: 48px; }
.pd-summary-text { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.8; margin-top: 20px; }

/* ============================================================
   ADMIN PAGE
============================================================ */
.admin-body { background: var(--bg-alt); }
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 24px clamp(16px, 3vw, 32px); }
.admin-header {
  background: var(--primary);
  color: #fff;
  padding: 16px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-size: 1.25rem; font-weight: 700; }
.admin-logout { color: rgba(255,255,255,0.7); font-size: var(--sz-xs); text-decoration: underline; }
.admin-logout:hover { color: #fff; }
.admin-section { background: var(--bg-white); border: 1px solid var(--border); margin-bottom: 24px; }
.admin-section-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-section-header h2 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); }
.admin-section-body { padding: 20px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 640px) { .admin-stat-grid { grid-template-columns: 1fr 1fr; } }
.admin-stat-card { padding: 20px; border: 1px solid var(--border); text-align: center; }
.admin-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.admin-stat-label { font-size: var(--sz-xs); color: var(--c-text-muted); margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: var(--sz-sm); }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-soft); text-align: left; }
.admin-table th { font-weight: 700; color: var(--primary); background: var(--bg-alt); }
.admin-table tr:hover td { background: var(--bg-alt); }
.admin-badge { display: inline-block; padding: 2px 10px; font-size: .75rem; font-weight: 600; }
.admin-badge--pub { background: rgba(28,64,128,0.1); color: var(--primary); }
.admin-badge--noi { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.admin-form { display: grid; gap: 16px; }
.admin-form input[type=text], .admin-form input[type=password] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: var(--sz-sm);
  background: var(--bg-white);
}
.admin-btn { padding: 10px 24px; background: var(--primary); color: #fff; border: none; font-size: var(--sz-sm); font-weight: 700; cursor: pointer; transition: background 0.2s; }
.admin-btn:hover { background: var(--primary-dark); }
.admin-btn--gold { background: var(--gold); color: var(--ink); }
.admin-btn--gold:hover { background: var(--gold-dark); color: #fff; }
.admin-alert { padding: 12px 16px; font-size: var(--sz-sm); font-weight: 600; border-left: 3px solid var(--gold); background: rgba(201,168,76,0.1); margin-bottom: 16px; }
.admin-msg { padding: 12px 16px; margin-bottom: 16px; font-size: var(--sz-sm); }
.admin-msg.ok  { background: rgba(28,64,128,0.08); color: var(--primary); }
.admin-msg.err { background: rgba(200,30,30,0.08); color: #c41e1e; }

/* ============================================================
   CONSULTATION PAGE
============================================================ */
.consult-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--primary);
  padding: 14px 20px;
  font-size: var(--sz-sm);
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}
.consult-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .consult-layout { grid-template-columns: 1fr; } }
.consult-card {
  background: var(--bg-dark);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  min-height: 320px;
}
.consult-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }
.consult-card p { font-size: var(--sz-sm); color: rgba(255,255,255,0.6); line-height: 1.7; }
.consult-card .btn-primary { margin-top: auto; align-self: flex-start; }
.consult-card-note { font-size: var(--sz-xs); color: rgba(255,255,255,0.35); }

/* ============================================================
   SITEMAP PAGE
============================================================ */

/* 헤더 배너 */
.stm-head {
  background: var(--bg-dark);
  padding: clamp(48px, 7vw, 80px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.stm-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.stm-head .kicker { color: var(--gold-soft); margin-bottom: 12px; }
.stm-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.stm-head__meta { font-size: var(--sz-sm); color: rgba(255,255,255,.45); }
.stm-head__meta strong { color: var(--gold-soft); font-weight: 700; }

/* 필터 + 그리드 섹션 */
.stm-body { background: var(--bg-alt); }

/* 필터 버튼 */
.stm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.stm-filter {
  padding: 8px 20px;
  border: 1.5px solid var(--border-mid);
  background: var(--bg-white);
  font-family: inherit;
  font-size: var(--sz-xs);
  font-weight: 700;
  color: var(--c-text-muted);
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s, border-color .2s, color .2s;
}
.stm-filter:hover { border-color: var(--primary); color: var(--primary); }
.stm-filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* 카드 그리드 */
.stm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
@media (max-width: 768px) { .stm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stm-grid { grid-template-columns: 1fr; } }

/* 카드 */
.stm-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: border-left-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stm-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stm-card__badge {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.stm-card__title {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}
.stm-card__slug {
  font-size: .78rem;
  color: var(--c-text-muted);
  font-family: 'Courier New', monospace;
  margin-top: 4px;
}

/* 결과 없음 */
.stm-empty {
  text-align: center;
  color: var(--c-text-muted);
  font-size: var(--sz-sm);
  padding: 48px 0;
}

/* ============================================================
   404 PAGE
============================================================ */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.error-page h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: var(--border-mid); margin-bottom: 16px; }
.error-page p { font-size: var(--sz-lg); color: var(--c-text-muted); margin-bottom: 32px; }

/* ============================================================
   REGION PAGES
============================================================ */
.region-hero {
  min-height: clamp(380px, 50vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
}
.region-hero .container { padding-top: 80px; padding-bottom: 64px; }
.region-hero .kicker {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  padding: .25rem .8rem;
}
.region-hero__title {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 800;
  margin: 16px 0 14px;
  line-height: 1.15;
  color: #fff;
}
.region-hero__sub {
  font-size: clamp(.95rem, 1.05vw, 1.1rem);
  opacity: .88;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.section-body {
  font-size: var(--sz-lg);
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin-top: 14px;
}
.region-intro    { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.region-services { padding: var(--dp-sec-pad) 0; background: var(--bg-alt); }
.region-proc     { padding: var(--dp-sec-pad) 0; background: var(--bg-white); }
.region-faq      { padding: var(--dp-sec-pad) 0; background: var(--bg-alt); }
.region-faq .faq-grid { grid-template-columns: 1fr 1fr; }
.region-faq .faq-grid .faq-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 640px) { .region-faq .faq-grid { grid-template-columns: 1fr; } }
.region-cta {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.region-cta h2 { font-size: clamp(1.4rem,2.5vw,2rem); color: #fff; margin-bottom: 16px; }
.region-cta p  { opacity: .85; margin-bottom: 28px; }
.btn-primary--inv {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-primary--inv:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}
.region-services .services-grid { margin-top: 32px; }
@media (max-width: 640px) { .region-services .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px)  { .region-services .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SVC-CARD (old icon cards on homepage legacy)
============================================================ */
.svc-card {
  padding: clamp(20px,2.5vw,32px);
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-icon { width: 48px; height: 48px; color: var(--primary); }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--primary); }
.svc-card-desc { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; flex: 1; }
.svc-card-link { font-size: var(--sz-sm); font-weight: 700; color: var(--gold); }
.svc-card-link:hover { text-decoration: underline; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 20px; }

/* ============================================================
   RESPONSIVE OVERRIDES
============================================================ */
@media (max-width: 768px) {
  .cta-band-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-band-text { text-align: center; }
  .dp-section-head { margin-bottom: 36px; }
  .pd-nav { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-list { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .dc-hero__cta-row { flex-direction: column; align-items: flex-start; }
  .service-list { grid-template-columns: 1fr; }
}

/* ============================================================
   SVC-HERO — Ken Burns + 다단 그라데이션 + 글래스 배지
============================================================ */
.svc-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: svcKenBurns 7s ease-in-out forwards;
  filter: brightness(.88) saturate(1.08);
}
@keyframes svcKenBurns {
  from { transform: scale(1.07); }
  to   { transform: scale(1);    }
}
@media (prefers-reduced-motion: reduce) {
  .svc-hero-bg { animation: none; }
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,42,92,.82) 0%, rgba(14,42,92,.58) 45%, rgba(14,42,92,.32) 100%),
    linear-gradient(to top,  rgba(0,0,0,.40)    0%, transparent 60%);
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 96px);
}
.svc-hero-content .kicker {
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.svc-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.svc-hero-sub {
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.7;
}
.svc-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  padding: 7px 18px;
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .svc-hero { min-height: clamp(360px, 50vh, 520px); }
}
@media (max-width: 560px) {
  .svc-hero { min-height: 320px; }
  .svc-hero-content h1 { font-size: 1.85rem; }
  .svc-hero-trust { display: none; }
}

/* ============================================================
   SCROLL REVEAL  .rv → .rv.in
============================================================ */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.rv.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SERVICE SECTION WRAPPERS
============================================================ */
.svc-intro-section  { background: var(--bg-white); }
.svc-symp-section   { background: var(--bg-alt); }
.svc-proc-section   { background: var(--bg-white); }
.svc-method-section { background: var(--bg-alt); }
.svc-gallery-section { background: var(--bg-white); }
.svc-faq-section    { background: var(--bg-alt); }

.svc-intro-text {
  font-size: var(--sz-lg);
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 780px;
}

/* cta-band 서비스 페이지용 추가 클래스 */
.cta-band-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-band-desc {
  font-size: var(--sz-lg);
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}

/* ============================================================
   FEAT-CARD — 피처카드 (섹션 2, ≥3개)
============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.feat-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.feat-num   { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; display: block; }
.feat-title { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.feat-body  { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SYMP-CARD — 진단카드 (섹션 3, ≥5개)  .num 배지
============================================================ */
.symp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.symp-card {
  padding: 24px 20px;
  border-left: 3px solid var(--gold);
  background: var(--bg-white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.symp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.symp-card .num,
.symp-card .symp-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.symp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.symp-body { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }
@media (max-width: 768px) { .symp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .symp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROC-LIST — 프로세스 5단계 + ::before 카운터 + 연결선
============================================================ */
.proc-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  position: relative;
}
.proc-list::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.15) 100%);
  pointer-events: none;
}
.proc-list .proc-step {
  padding: 28px 20px;
  border-top: 2px solid var(--border);
  position: relative;
}
.proc-list .proc-step:first-child { border-top-color: var(--gold); }
.proc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--ink);
  font-size: var(--sz-xs);
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.proc-info {}
.proc-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.proc-body { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.65; }
@media (max-width: 1024px) {
  .proc-list { grid-template-columns: repeat(3, 1fr); }
  .proc-list::after { display: none; }
}
@media (max-width: 768px) { .proc-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proc-list { grid-template-columns: 1fr; } }

/* ============================================================
   METHOD-CARD — 방식 비교 (2~3개)  .pros / .cons
============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.method-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.method-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.method-pros, .pros {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.method-pros li, .pros li {
  font-size: var(--sz-sm);
  color: var(--c-text);
  padding: 4px 0;
  line-height: 1.5;
}
.method-pros li::before, .pros li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}
.method-cons, .cons {
  list-style: none;
  padding: 0;
}
.method-cons li, .cons li {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  padding: 4px 0;
  line-height: 1.5;
}
.method-cons li::before, .cons li::before {
  content: '· ';
  color: var(--c-text-muted);
}
@media (max-width: 768px) { .method-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SVC-GALLERY — 이미지 갤러리 3컷
============================================================ */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.svc-gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--primary-light);
}
.svc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.svc-gallery-item:hover img { transform: scale(1.05); }
.svc-gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,42,92,.85));
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  padding: 24px 14px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media (max-width: 768px) { .svc-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-gallery { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ ACCORDION — max-height 트랜지션 + aria-expanded 제어
============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin-top: 32px;
}
.cc-faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: inherit;
  font-size: var(--sz-base);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}
.faq-q[aria-expanded="true"] + .faq-a { max-height: 600px; }
.faq-a p, .faq-a > * {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  line-height: 1.85;
  padding-bottom: 20px;
}

/* ── 지역 페이지 FAQ (cc-faq-q / cc-faq-a div 방식) ── */
.cc-faq-q {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 600;
  font-size: var(--sz-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-text);
  transition: color .2s;
  user-select: none;
}
.cc-faq-q:hover { color: var(--primary); }
.cc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}
.cc-faq-item.open .cc-faq-a { max-height: 600px; }
.cc-faq-a p { font-size: var(--sz-sm); color: var(--c-text-muted); line-height: 1.85; padding-bottom: 20px; }

/* ============================================================
   CASE PAGE (.cs-page) — 시공사례 중앙 정렬
============================================================ */

/* ① 컨테이너에 text-align:center → inline-block(.kicker) 위치 중앙화 */
.cs-page section > .container { text-align: center; }

/* ② .kicker: inline-block → block 전환 + 텍스트 중앙 */
.cs-page .kicker { display: block; text-align: center; }

/* ③ 섹션 제목·본문 명시적 중앙 */
.cs-page .section-title,
.cs-page .section-body,
.cs-page .symp-title,
.cs-page .symp-body,
.cs-page .proc-title,
.cs-page .proc-body { text-align: center; }
.cs-page .section-body { margin-left: auto; margin-right: auto; }

/* symp-card 중앙 */
.cs-page .symp-card { text-align: center; }

/* proc-step 중앙 */
.cs-page .proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs-page .proc-num { margin-bottom: 14px; }

/* method-card·pros·cons·FAQ → 좌정렬 유지 */
.cs-page .method-card { text-align: left; }
.cs-page .pros, .cs-page .cons { text-align: left; }
.cs-page .faq-q, .cs-page .faq-a, .cs-page .faq-a p { text-align: left; }

/* ba-compare figcaption은 center 그대로 유지 */

/* ============================================================
   CASE CTA — 사진 배경 CTA 섹션
============================================================ */
.case-cta {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.case-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,42,92,.88) 0%, rgba(14,42,92,.68) 50%, rgba(14,42,92,.82) 100%);
}
.case-cta .container { position: relative; z-index: 1; }
.case-cta .kicker {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  padding: .3rem 1rem;
}
.case-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 18px 0 16px;
  line-height: 1.25;
}
.case-cta p {
  color: rgba(255,255,255,.80);
  font-size: clamp(.95rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 32px;
}
