:root {
  --primary: #A0C4D8;
  --primary-dark: #7FA9C2;
  --text: #1c1c1e;
  --text-muted: #6b6b73;
  --border: #e4e4e7;
  --bg-soft: #f7f8fa;
  --card-radius: 0;
  --btn-radius: 9999px;
  --shadow-sm: 0 2px 8px rgba(20,20,24,.06);
  --shadow-md: 0 10px 28px rgba(20,20,24,.09), 0 2px 8px rgba(20,20,24,.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--text);
  word-break: keep-all;
  line-height: 1.6;
}
h1, h2, h3 { font-weight: 800; margin: 0; word-break: keep-all; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* 버튼: btn-pill */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-weight: 700; padding: 0.9rem 1.9rem; border-radius: var(--btn-radius); border: none; cursor: pointer; transition: all .25s ease; font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: #14313f; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); }

/* 섹션 레이블: label-badge */
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--primary); color: #14313f; padding: 0.3rem 0.85rem; border-radius: 9999px; margin-bottom: 0.9rem; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6rem; }
.section-head p { color: var(--text-muted); font-size: 0.95rem; }
section { padding: 5rem 0; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.82); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-header .logo { font-weight: 800; font-size: 1.15rem; }
.site-header nav { display: flex; gap: 1.8rem; }
.site-header nav a { font-size: 0.92rem; font-weight: 600; }
.header-cta { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); }
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); z-index: 99; padding: 1rem 1.25rem; flex-direction: column; gap: 1rem; }
.mobile-nav.open { display: flex; }
@media (max-width: 860px) {
  .site-header nav { display: none; }
  .hamburger { display: flex; }
}

/* Hero: hero-grid 타입 */
.hero-grid-section { padding: 9.5rem 0 4.5rem; background: var(--bg-soft); }
.hero-grid-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: start; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1.25; margin-bottom: 0.4rem; }
.hero-copy .hero-sub { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.hero-copy .hero-desc { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 1.6rem; }
.hero-badges { display: flex; gap: 1.4rem; margin-top: 1.4rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--text); }
.hero-badge svg { width: 18px; height: 18px; color: var(--primary-dark); flex-shrink: 0; }
.hero-btn-group { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.hero-photo-grid > div { overflow: hidden; }
.hero-photo-grid img { width: 100%; height: 280px; object-fit: cover; object-position: center 70%; display: block; }
.hero-photo-caption { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
@media (max-width: 900px) {
  .hero-grid-wrap { grid-template-columns: 1fr; }
  .hero-photo-grid { width: 100vw; margin-left: calc(50% - 50vw); gap: 0.6rem; }
  .hero-photo-caption { padding: 0 1.25rem; }
}
@media (max-width: 520px) {
  .hero-photo-grid { grid-template-columns: 1fr; }
  .hero-photo-grid img { height: 220px; }
}

/* 트러스트 바 (히어로 하단) */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 1.8rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.trust-num { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); }
.trust-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }

/* 고민 포인트 */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { border: 1px solid var(--border); border-top: 3px solid transparent; background: var(--bg-soft); padding: 1.8rem 1.5rem; transition: border-top-color .3s ease, transform .3s ease; }
.pain-card:hover { border-top-color: var(--primary-dark); transform: translateY(-4px); }
.pain-icon { width: 42px; height: 42px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.pain-icon svg { width: 20px; height: 20px; color: var(--primary-dark); }
.pain-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.pain-card p { font-size: 0.88rem; color: var(--text-muted); }

/* 시공사례 포트폴리오 */
.portfolio-section { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card { border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; cursor: pointer; text-decoration: none; display: block; background: #fff; }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-card .card-thumb { aspect-ratio: 4/3; overflow: hidden; }
.portfolio-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover .card-thumb img { transform: scale(1.05); }
.portfolio-card .card-body { padding: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; background: var(--primary); color: #14313f; display: inline-block; padding: 0.22rem 0.65rem; border-radius: 0.3rem; align-self: flex-start; }
.card-title { font-weight: 800; font-size: 1.02rem; line-height: 1.4; color: var(--text); }
.card-sub { font-weight: 400; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.card-sub svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-more { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-top: 0.2rem; transition: color 0.3s ease; }
.portfolio-card:hover .card-more { color: var(--primary-dark); }

/* 중간 배너 */
.mid-banner { background: linear-gradient(120deg, var(--primary), var(--primary-dark)); padding: 3rem 1.25rem; text-align: center; color: #0f2733; }
.mid-banner .container { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.mid-banner p { font-size: 1.15rem; font-weight: 700; margin: 0; }

/* 서비스 소개: sv2 리스트 (텍스트+사진 가로 카드) */
.service-list { display: flex; flex-direction: column; gap: 1.25rem; }
.service-card { display: grid; grid-template-columns: 1fr 280px; border: 1px solid var(--border); background: #fff; overflow: hidden; transition: box-shadow .3s ease, transform .3s ease; text-decoration: none; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card .body { padding: 1.8rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.service-card .eng-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--primary-dark); text-transform: uppercase; }
.service-card h3 { font-size: 1.15rem; margin: 0.2rem 0; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 0.4rem; }
.service-card .more { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.service-card .thumb { min-height: 220px; overflow: hidden; background: var(--bg-soft); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.05); }
@media (max-width: 720px) {
  .service-card { grid-template-columns: 1fr; }
  .service-card .thumb { aspect-ratio: 16/9; min-height: 0; }
}

/* 시공 전후 미리보기 */
.home-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .home-ba-grid { grid-template-columns: 1fr; } }
.home-ba-card { display: block; border: 1px solid var(--border); background: var(--bg-soft); text-decoration: none; color: inherit; transition: box-shadow .3s ease, transform .3s ease; }
.home-ba-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.home-ba-photos { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.home-ba-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.home-ba-tag { position: absolute; top: 10px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.6rem; color: #fff; }
.home-ba-tag.before { left: 10px; background: rgba(28,28,30,0.65); }
.home-ba-tag.after { right: 10px; background: rgba(160,196,216,0.92); color: #14313f; }
.home-ba-caption { padding: 1rem 1.1rem; font-size: 0.88rem; color: var(--text-muted); border-top: 1px solid var(--border); }
.home-ba-caption strong { display: block; color: var(--text); margin-bottom: 0.2rem; }

/* 프로세스 */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }
.process-card { border: 1px solid var(--border); background: #fff; padding: 1.6rem 1.3rem; transition: box-shadow .3s ease, transform .3s ease; }
.process-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.process-num { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; color: var(--primary-dark); border-bottom: 2px solid var(--primary-dark); padding-bottom: 0.3rem; margin-bottom: 0.9rem; }
.process-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); }

/* 회사소개 */
.about-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .about-wrap { grid-template-columns: 1fr; } }
.about-wrap h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.1rem; }
.about-wrap p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.96rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-stat { background: var(--bg-soft); border-radius: var(--card-radius); padding: 1.5rem 1rem; text-align: center; }
.about-stat strong { display: block; font-size: 1.7rem; color: var(--primary-dark); }
.about-stat span { font-size: 0.8rem; color: var(--text-muted); }

/* 서비스 지역: 다크 커버리지 밴드 */
.coverage-section { background: linear-gradient(150deg, #14161a 0%, #1e2126 100%); color: #fff; }
.coverage-section .section-head { text-align: left; margin: 0 0 2rem; max-width: none; }
.coverage-section .section-head p { color: rgba(255,255,255,0.6); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .coverage-inner { grid-template-columns: 1fr; } }
.coverage-list { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.12); }
.coverage-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.coverage-city { font-weight: 800; color: var(--primary); width: 3.2rem; flex-shrink: 0; }
.coverage-areas { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0.2rem; font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.faq-q .faq-num { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); width: 1.6rem; flex-shrink: 0; }
.faq-q .faq-q-text { flex: 1; }
.faq-q .plus { width: 26px; height: 26px; flex-shrink: 0; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease; font-size: 1.1rem; color: var(--text); }
.faq-item.open .plus { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); color: #14313f; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 0.92rem; color: var(--text-muted); }
.faq-a p { padding: 0 0.2rem 1.3rem 2.6rem; margin: 0; }
.faq-item.open .faq-a { max-height: 400px; }

/* CTA */
.cta-section { background: var(--text); color: #fff; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-trust { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 1.8rem 0 2.2rem; }
.cta-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #d4d4d8; }
.cta-trust-item svg { width: 18px; height: 18px; color: var(--primary); }
.cta-btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-section .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* CTA 스플릿 배너 (메인 최종 CTA) */
.cta-split { padding: 0; }
.cta-split-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; min-height: 320px; }
@media (max-width: 860px) { .cta-split-inner { grid-template-columns: 1fr; } }
.cta-split-img { overflow: hidden; height: 400px; align-self: center; }
.cta-split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.cta-split-panel { background: var(--primary); color: #14313f; padding: 2.6rem; display: flex; flex-direction: column; justify-content: center; gap: 0.7rem; text-align: left; }
.cta-split-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(20,49,63,0.6); }
.cta-split-panel h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin: 0; color: #14313f; }
.cta-split-panel p { color: rgba(20,49,63,0.75); font-size: 0.92rem; margin: 0; }
.cta-split-panel .cta-btn-row { justify-content: flex-start; margin-top: 0.4rem; }
.cta-split-panel .btn-primary { background: #14313f; color: #fff; }
.cta-split-panel .btn-primary:hover { background: #0f2733; }
.cta-split-panel .btn-outline { background: transparent; color: #14313f; border-color: rgba(20,49,63,0.35); }
.cta-split-panel .btn-outline:hover { border-color: #14313f; background: rgba(20,49,63,0.08); }

/* Footer */
.site-footer { background: #14161a; color: #b8b9bf; padding: 3.5rem 0 1.8rem; font-size: 0.86rem; border-top: 2px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.2rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.92rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid #2a2c31; padding-top: 1.5rem; font-size: 0.78rem; color: #7a7b82; line-height: 1.8; }

/* Floating buttons */
.floating-wrap { position: fixed; right: 1.2rem; bottom: 1.2rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; z-index: 90; }
.floating-btn { display: flex; align-items: center; gap: 0.5rem; height: 52px; border-radius: var(--btn-radius); font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-md); overflow: hidden; white-space: nowrap; }
.floating-btn.call { width: 52px; background: var(--primary); color: #14313f; transition: width .35s ease; }
.floating-btn.call:hover { width: 158px; }
.floating-btn.call .icon { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.floating-btn.call .label { opacity: 0; transition: opacity .2s ease; padding-right: 1.1rem; }
.floating-btn.call:hover .label { opacity: 1; }
.floating-btn.sms { width: 44px; height: 44px; background: #fff; color: var(--text); border: 1px solid var(--border); justify-content: center; }
.floating-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* BEFORE/AFTER (상세 페이지) */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-label { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 9999px; margin-bottom: 1rem; }
.ba-label.before { background: rgba(28,28,30,0.85); color: #fff; }
.ba-label.after { background: var(--primary); color: #14313f; }
.ba-photos { display: grid; gap: 0.7rem; margin-bottom: 1rem; }
.ba-photos img { border-radius: var(--card-radius); aspect-ratio: 4/3; object-fit: cover; }
.ba-col p { color: var(--text-muted); font-size: 0.92rem; }

/* 상세 히어로 */
.detail-hero { position: relative; padding: 11rem 0 4rem; background-size: cover; background-position: center; color: #fff; }
.detail-hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.detail-hero .container { position: relative; z-index: 2; }
.detail-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); text-shadow: 0 2px 12px rgba(0,0,0,0.4); margin-bottom: 0.6rem; }
.detail-hero .sub { font-size: 0.95rem; opacity: 0.9; }
.back-link { display: inline-block; margin-bottom: 1.2rem; font-size: 0.85rem; opacity: 0.85; }

.info-bar { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; margin-top: -3rem; position: relative; z-index: 3; background: #fff; }
@media (max-width: 720px) { .info-bar { grid-template-columns: repeat(2, 1fr); } }
.info-bar div { padding: 1.3rem 1rem; text-align: center; border-right: 1px solid var(--border); }
.info-bar div:last-child { border-right: none; }
.info-bar .label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-bar .value { font-weight: 700; font-size: 0.95rem; }

.quote-block { border-left: 3px solid var(--primary); padding: 1.2rem 1.5rem; background: var(--bg-soft); border-radius: 0 var(--card-radius) var(--card-radius) 0; font-size: 0.96rem; }
.quote-block .sig { margin-top: 1rem; font-weight: 700; font-size: 0.85rem; color: var(--text-muted); }

.summary-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.summary-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; }
.summary-list svg { width: 18px; height: 18px; color: var(--primary-dark); flex-shrink: 0; margin-top: 2px; }

.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* NSEO 페이지 */
.nseo-hero { padding: 9.5rem 0 4rem; background: var(--bg-soft); text-align: center; }
.nseo-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.nseo-hero p { color: var(--text-muted); max-width: 620px; margin: 0 auto 1.8rem; }

.checklist { list-style: none; padding: 0; display: grid; gap: 0.5rem; margin: 1rem 0; }
.checklist li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.9rem; }
.checklist svg { width: 16px; height: 16px; color: var(--primary-dark); flex-shrink: 0; margin-top: 3px; }

.related-links { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.related-links a { border: 1px solid var(--border); padding: 0.6rem 1.2rem; border-radius: var(--btn-radius); font-size: 0.85rem; font-weight: 600; }
.related-links a:hover { border-color: var(--primary); color: var(--primary-dark); }

/* 상담 페이지 */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 780px) { .step-grid { grid-template-columns: 1fr; } }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-card { border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.guide-card img { aspect-ratio: 4/3; object-fit: cover; }
.guide-card .cap { padding: 1rem; font-size: 0.88rem; color: var(--text-muted); }

/* 지역별 세부페이지 */
.nseo-local-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; margin: 1.2rem 0; }
.nseo-local-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--card-radius); display: block; }

.compare-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.92rem; }
.compare-table th, .compare-table td { border: 1px solid var(--border); padding: 0.8rem 1rem; text-align: left; }
.compare-table th { background: var(--bg-soft); font-weight: 700; }
.compare-table td:first-child { font-weight: 700; white-space: nowrap; }

/* 유틸 */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.bg-soft { background: var(--bg-soft); }
