:root {
  --accent: #4F787C;
  --accent-soft: #E4EEF0;
  --hero-tint: #F3F7F7;
  --ink: #141A1A;
  --sub: #55686A;
  --line: #DEE6E6;
  --bg-1: #EEF4F4;
  --bg-2: #E4EEEF;
  --bg-3: #F2F5F5;
  --bg-4: #F6F9F9;
  --bg-5: #F6FAFA;
  --bg-6: #EEF4F4;
  --bg-7: #FBFDFD;
  --bg-8: #F2F5F5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--ink);
  background: #FFFFFF;
  padding-bottom: 72px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-weight: 700; margin: 0 0 16px; line-height: 1.32; }
p { line-height: 1.75; color: var(--sub); margin: 0 0 16px; }

/* ---------- topbar: joseon-center (header_variant=1) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: #FFFFFF; border-bottom: 1px solid #000;
}
.topbar__grid {
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
@media (min-width: 900px) {
  .topbar__grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
}
.logo { display: flex; align-items: center; gap: 10px; justify-self: center; }
.logo-icon { width: 32px; height: 32px; color: var(--accent); flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-size: 13px; font-weight: 600; color: var(--sub); letter-spacing: 0.5px; }
.logo-keyword { font-size: 19px; font-weight: 700; color: var(--ink); }

.nav {
  display: none; align-items: center; gap: 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: -0.035em; text-transform: uppercase;
}
@media (min-width: 900px) { .nav { display: flex; } }
.nav--left { justify-self: start; }
.nav--right { justify-self: end; }
.nav a { color: var(--ink); }
.nav .navdrop { position: relative; }
.nav .navdrop > a::after { content: " ▾"; font-size: 12px; }
.navdrop-menu {
  position: absolute; top: 100%; left: 0; min-width: 190px;
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 8px 8px; display: none; box-shadow: 0 16px 32px rgba(0,0,0,0.10);
  z-index: 201;
}
.navdrop:hover .navdrop-menu, .navdrop:focus-within .navdrop-menu { display: block; }
.navdrop-menu a {
  display: block; padding: 9px 12px; border-radius: 6px; font-size: 14px; font-weight: 600;
  letter-spacing: -0.035em; text-transform: uppercase;
}
.navdrop-menu a:hover { background: var(--bg-4); }
.nav a.nav-cta {
  padding: 10px 20px; border-radius: 999px; background: var(--accent); color: #FFF;
  font-weight: 600; font-size: 14.5px;
}

/* ---------- mobile hamburger + drawer ---------- */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 0 auto; }
.mobile-nav {
  display: none; flex-direction: column; background: #FFFFFF; border-top: 1px solid var(--line);
  padding: 8px 24px 20px;
}
.mobile-nav.is-open { display: flex; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav a { padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-cta { color: var(--accent) !important; font-weight: 700; }

/* ---------- hero: ggg-split (hero_id=16, user-specified) ---------- */
.hero-ggg { background: #fff; padding: 40px 60px 0; }
.hero-ggg-split {
  display: flex; flex-direction: column; align-items: stretch; position: relative;
  border-top: 1px solid #000; border-bottom: 1px solid #000;
}
@media (min-width: 1025px) { .hero-ggg-split { flex-direction: row; } }
.hero-ggg-split::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: #000;
  display: none;
}
@media (min-width: 1025px) { .hero-ggg-split::after { display: block; } }
.hero-ggg-media, .hero-ggg-copy { width: 100%; flex: none; position: relative; }
@media (min-width: 1025px) { .hero-ggg-media, .hero-ggg-copy { width: 50%; flex: 0 0 50%; } }
.hero-ggg-media img {
  width: 100%; aspect-ratio: 900 / 954; height: auto; object-fit: cover; display: block;
}
.hero-ggg-copy {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px 20px 40px; box-sizing: border-box; gap: 40px;
}
@media (min-width: 1025px) { .hero-ggg-copy { padding: 62px 60px 58px; } }
.hero-ggg h1 { margin: 0; font-size: 32px; font-weight: 400; line-height: 1.33; color: #111; }
@media (min-width: 1025px) { .hero-ggg h1 { font-size: 48px; } }
.hero-ggg-body p { margin: 0; font-size: 16px; font-weight: 400; line-height: 1.75; color: #111; max-width: 336px; }
.hero-ggg-body p + p { margin-top: 30px; }

/* ---------- generic section ---------- */
.section { padding: 96px 0; }
@media (max-width: 600px) { .section { padding: 64px 0; } }
.section-label {
  font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--accent); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.section-title { font-size: 30px; margin-bottom: 20px; }
.section-lead { font-size: 16px; max-width: 640px; }

/* ---------- about ---------- */
.about-body { display: grid; gap: 18px; max-width: 760px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-fill, .btn-line {
  display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
}
.btn-fill { background: var(--accent); color: #FFF; }
.btn-line { border: 1.5px solid var(--ink); color: var(--ink); }

/* ---------- lineup comparison table ---------- */
.lineup-table { width: 100%; max-width: 640px; border-collapse: collapse; margin-top: 28px; font-size: 14.5px; }
.lineup-table caption { text-align: left; font-size: 13px; color: var(--sub); margin-bottom: 10px; }
.lineup-table th, .lineup-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.lineup-table th { color: var(--accent); font-weight: 700; font-size: 13px; }
.lineup-table td { color: var(--ink); }

/* ---------- service ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 36px; }
@media (min-width: 900px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service-item .card-icon,
.service-item svg { display: block; width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; flex-shrink: 0; overflow: hidden; }
.service-item h3 { font-size: 18px; margin-bottom: 8px; }
.service-item p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- cases (design_id=1: 3-col, white card, hover scale) ---------- */
.case-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
@media (min-width: 700px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .case-grid { grid-template-columns: repeat(3, 1fr); } }
.case-grid.case-grid--pair { max-width: 640px; margin-left: auto; margin-right: auto; }
@media (min-width: 1000px) { .case-grid.case-grid--pair { grid-template-columns: repeat(2, 1fr); } }
.case-card {
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.case-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,0.12); transform: scale(1.015); }
.case-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-6); }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.case-card:hover .case-thumb img { transform: scale(1.05); }
.case-body { padding: 20px 22px 24px; }
.case-tag { font-size: 12.5px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.case-body h3 { font-size: 17px; margin-bottom: 8px; }
.case-body p { font-size: 14px; margin-bottom: 0; }
.case-more { text-align: center; margin-top: 40px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination-num, .pagination-arrow {
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14.5px; font-weight: 600; color: var(--ink); border: 1px solid transparent;
}
.pagination-num { border-color: var(--line); background: #FFF; }
.pagination-num:hover { border-color: var(--accent); color: var(--accent); }
.pagination-num.is-current { background: var(--accent); border-color: var(--accent); color: #FFF; }
.pagination-arrow { color: var(--sub); }
.pagination-arrow:hover { color: var(--accent); }

/* ---------- process (semantic <table> laid out as a grid via display:contents) ---------- */
.process-list, .process-table {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line);
  margin-top: 36px; width: 100%; border-collapse: collapse;
}
@media (min-width: 800px) { .process-list, .process-table { grid-template-columns: repeat(4, 1fr); } }
.process-table tbody, .process-table tr { display: contents; }
.process-item, .process-table td {
  padding: 28px 20px 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  vertical-align: top; text-align: left;
}
@media (min-width: 800px) { .process-item, .process-table td { border-bottom: none; } }
.process-item:first-child, .process-table td:first-child { padding-left: 0; }
.process-item:nth-child(2n), .process-table td:nth-child(2n) { border-right: none; }
@media (min-width: 800px) {
  .process-item:nth-child(2n), .process-table td:nth-child(2n) { border-right: 1px solid var(--line); }
  .process-item:last-child, .process-table td:last-child { border-right: none; }
}
.pnum { color: var(--accent); font-weight: 700; font-size: 13px; display: block; margin-bottom: 10px; }
.process-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.process-item p { font-size: 13.5px; margin-bottom: 0; }

/* ---------- region ---------- */
.region-groups { margin-top: 36px; display: grid; gap: 28px; }
.region-group h3 { font-size: 15px; color: var(--sub); font-weight: 600; margin-bottom: 12px; }
.region-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.region-links a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; background: #FFF; }
.region-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- faq ---------- */
.faq-list { margin-top: 32px; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; background: #FFF; }
.faq-item h3 { font-size: 15.5px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; margin-bottom: 0; }

/* ---------- space-type category grid (section_variant=3 catalog-label) ---------- */
.space-cat__head { border-top: 1px solid var(--line); padding-top: 28px; margin-bottom: 8px; }
.space-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
@media (min-width: 800px) { .space-cat-grid { grid-template-columns: repeat(4, 1fr); } }
.space-cat-card { display: block; }
.space-cat-thumb { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; background: var(--bg-6); margin-bottom: 12px; }
.space-cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.space-cat-card:hover .space-cat-thumb img { transform: scale(1.04); }
.space-cat-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--ink); text-align: center; margin: 0;
}

/* ---------- closing ---------- */
.closing { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; overflow: hidden; }
@media (max-width: 600px) { .closing { height: 480px; } }
.closing img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.closing::after { content: ""; position: absolute; inset: 0; background: rgba(19,19,19,0.55); z-index: 1; }
.closing--solid { background: linear-gradient(160deg, #2C4244, #16211F); }
.closing--solid::after { display: none; }
.closing-inner { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.closing-head {
  font-size: 26px; font-weight: 700; margin-bottom: 14px; color: #FFFFFF;
  white-space: nowrap; text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
@media (min-width: 700px) { .closing-head { font-size: 32px; } }
@media (max-width: 699px) { .closing-head { white-space: normal; font-size: 22px; } }
.closing-quote { font-size: 15px; color: #D7E6E6; opacity: 0.92; margin-bottom: 28px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.closing-cta {
  display: inline-block; padding: 15px 34px; background: transparent; color: #FFF;
  border: 1px solid #FFF; border-radius: 0; font-weight: 600;
}

/* ---------- footer ---------- */
footer { background: #FFFFFF; color: #000; border-top: 1px solid var(--line); padding: 56px 0 100px; }
@media (min-width: 768px) { footer { padding-bottom: 56px; } }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr; } }
.footer-brand { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.footer-info { font-size: 13.5px; color: var(--sub); line-height: 1.9; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: #7C8A8B; }

/* ---------- page hero (tint panel — hubs / regions / contact) ---------- */
.page-hero { padding: 56px 20px; }
.page-hero__inner {
  max-width: 1180px; margin: 0 auto; background: var(--hero-tint); border-radius: 22px;
  padding: 44px 36px;
}
.page-hero .eyebrow { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 10px; display: block; }
.page-hero h1 { font-size: 28px; margin-bottom: 10px; }
@media (min-width: 800px) { .page-hero h1 { font-size: 34px; } }
.page-hero p { max-width: 60ch; margin-bottom: 0; }

/* ---------- page hero: photo overlay (설치사례 목록/상세 전용) ---------- */
.page-hero--photo {
  position: relative; z-index: 0; overflow: hidden; padding: 0;
  min-height: 38vh; display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero--photo.page-hero--detail { min-height: 420px; }
@media (min-width: 800px) { .page-hero--photo.page-hero--detail { min-height: 480px; } }
.page-hero--photo .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero--photo::after {
  content: ""; position: absolute; inset: 0; background: rgba(19,19,19,0.5);
  pointer-events: none; z-index: 0;
}
.page-hero--photo .copy { position: relative; z-index: 1; color: #FFF; pointer-events: none; padding: 40px 24px; }
.page-hero--photo .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: #FFF; opacity: .85; display: block; margin-bottom: 10px; }
.page-hero--photo h1 { color: #FFF; font-size: 30px; font-weight: 800; margin: 0; }
@media (min-width: 800px) { .page-hero--photo h1 { font-size: 38px; } }

/* ---------- case / region detail body ---------- */
.detail-body { padding: 80px 0; }
.detail-photo { max-width: 620px; margin: 0 auto 28px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,0.12); background: var(--bg-5); }
.detail-photo img { width: 100%; height: auto; object-fit: contain; max-height: 620px; margin: 0 auto; }
.detail-label { text-align: center; font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.detail-h2 { text-align: center; font-size: 20px; margin-bottom: 24px; }
.detail-text { max-width: 680px; margin: 0 auto; font-size: 15.5px; }
.case-detail-text { max-width: 640px; margin: 0 auto; text-align: left; }
.case-detail-text p { font-size: 16px; line-height: 1.85; color: #55686A; margin: 0 0 18px; }
.case-detail-text p:last-child { margin-bottom: 0; }
.detail-back { text-align: center; margin: 40px 0 0; }

/* ---------- mobile bottom bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr;
  height: 60px; background: var(--accent); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a { display: flex; align-items: center; justify-content: center; color: #FFF; font-weight: 600; font-size: 15px; }
.mobile-bar a:first-child { background: rgba(255,255,255,0.14); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* prose */
.prose p { font-size: 15.5px; }
