/* ==========================================================
   세웅공조닥트 — 공통 스타일
   ========================================================== */
:root {
  --navy-900: #0b1f3a;
  --navy-800: #102a4c;
  --navy-700: #16375f;
  --navy-600: #1e4a7d;
  --navy-100: #e8eef6;
  --steel-50: #f6f8fa;
  --steel-100: #eef1f4;
  --steel-200: #dde2e8;
  --steel-400: #9aa4b1;
  --steel-600: #5b6573;
  --ink: #1b2330;
  --accent: #c8102e; /* 전화 강조용 — 절제해서 사용 */
  --radius: 6px;
  --container: 1200px;
  --header-h: 76px;
  --shadow: 0 1px 2px rgba(11, 31, 58, .06), 0 4px 16px rgba(11, 31, 58, .06);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible { outline: 3px solid var(--navy-600); outline-offset: 2px; }

/* ---------- 상단 정보바 ---------- */
.topbar {
  background: var(--navy-900);
  color: #c9d3e0;
  font-size: 14px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px; gap: 16px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .sep { opacity: .35; margin: 0 10px; }

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--steel-200);
  backdrop-filter: saturate(160%) blur(6px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--steel-600);
}
.brand-name b { color: var(--navy-700); font-weight: 800; }
.brand-sub { font-size: 12.5px; color: var(--steel-600); letter-spacing: .02em; margin-top: 3px; }

.gnb ul { display: flex; gap: 4px; }
.gnb a {
  display: block; padding: 10px 18px;
  font-size: 17px; font-weight: 600; color: var(--ink);
  border-radius: var(--radius);
  position: relative;
}
.gnb a:hover { color: var(--navy-600); background: var(--steel-50); }
.gnb a[aria-current="page"] { color: var(--navy-700); }
.gnb a[aria-current="page"]::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 2px;
  height: 2px; background: var(--navy-700);
}

.header-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-700); color: #fff;
  padding: 11px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 17px; letter-spacing: .01em;
}
.header-call:hover { background: var(--navy-800); }
.header-call svg { width: 18px; height: 18px; }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--steel-200); border-radius: var(--radius);
  width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer;
  color: var(--ink);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- 메인 비주얼 ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../assets/gallery/g04.jpg");
  background-size: cover; background-position: center;
  opacity: .22;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-900) 30%, rgba(11, 31, 58, .75) 100%);
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
  padding-top: 88px; padding-bottom: 88px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 15px; font-weight: 600; color: #b9c8dc;
  border-left: 3px solid #7fa3cf; padding-left: 12px; margin-bottom: 20px;
}
.hero h1 {
  font-size: 50px; font-weight: 800; line-height: 1.25; letter-spacing: -0.03em;
}
.hero-lead {
  margin-top: 22px; font-size: 19px; color: #d5deea; max-width: 34em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 0 26px;
  font-size: 18px; font-weight: 700; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: #fff; color: var(--navy-800); }
.btn-primary:hover { background: var(--navy-100); }
.btn-outline { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-800); }
.btn-line { border-color: var(--steel-200); color: var(--ink); background: #fff; }
.btn-line:hover { border-color: var(--navy-600); color: var(--navy-700); }

.hero-photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px; gap: 12px;
}
.hero-photos img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero-photos img:first-child { grid-row: span 2; }

/* ---------- 신뢰 지표 띠 ---------- */
.trust {
  background: #fff; border-bottom: 1px solid var(--steel-200);
}
.trust ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust li {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 20px;
  border-left: 1px solid var(--steel-200);
}
.trust li:last-child { border-right: 1px solid var(--steel-200); }
.trust .ico {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
}
.trust .ico svg { width: 22px; height: 22px; }
.trust strong { display: block; font-size: 17px; }
.trust span { font-size: 14.5px; color: var(--steel-600); }

/* ---------- 섹션 공통 ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--steel-50); }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-label {
  font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--navy-600);
  text-transform: uppercase; margin-bottom: 10px;
}
.section-title { font-size: 34px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.35; }
.section-desc { margin-top: 14px; color: var(--steel-600); font-size: 17.5px; }
.section-head.split {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
}
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--navy-700); white-space: nowrap;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ---------- 시공 분야 ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.service-card:hover { border-color: var(--navy-600); box-shadow: var(--shadow); }
.service-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.service-card .body { padding: 20px 22px 24px; }
.service-card .num { font-size: 13px; font-weight: 700; color: var(--navy-600); letter-spacing: .08em; }
.service-card h3 { font-size: 19px; font-weight: 700; margin-top: 4px; }
.service-card p { font-size: 15.5px; color: var(--steel-600); margin-top: 8px; line-height: 1.6; }

/* ---------- 약속 / 소개 ---------- */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.intro-photo { position: relative; }
.intro-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.intro-photo .badge {
  position: absolute; left: -1px; bottom: -1px;
  background: var(--navy-800); color: #fff;
  padding: 18px 24px; border-radius: 0 var(--radius) 0 var(--radius);
  font-weight: 700; font-size: 17px; line-height: 1.5;
}
.intro-photo .badge small { display: block; font-weight: 500; color: #b9c8dc; font-size: 14px; }
.check-list { margin-top: 28px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--navy-600); margin-top: 3px; }

/* ---------- 갤러리 ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); background: var(--steel-100);
  cursor: zoom-in; border: 0; padding: 0; width: 100%;
}
.gallery-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px; text-align: left;
  font-size: 14.5px; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(11, 31, 58, .75));
}

/* 라이트박스 */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8, 16, 30, .92);
  display: none; align-items: center; justify-content: center; padding: 60px 72px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 1000px; width: 100%; text-align: center; }
.lightbox img { max-height: 78vh; margin: 0 auto; border-radius: 4px; }
.lightbox figcaption { color: #cfd8e3; margin-top: 14px; font-size: 16px; }
.lb-btn {
  position: absolute; background: rgba(255, 255, 255, .1); color: #fff;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lb-btn:hover { background: rgba(255, 255, 255, .2); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- 상담 안내 CTA ---------- */
.cta {
  background: var(--navy-800); color: #fff;
}
.cta .container {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-top: 56px; padding-bottom: 56px;
}
.cta h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.cta p { color: #c9d3e0; margin-top: 6px; }
.cta-phones { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-phone {
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; color: var(--navy-900);
  padding: 12px 24px; border-radius: var(--radius); min-width: 220px;
}
.cta-phone:hover { background: var(--navy-100); }
.cta-phone small { font-size: 13.5px; color: var(--steel-600); font-weight: 600; }
.cta-phone strong { font-size: 24px; font-weight: 800; letter-spacing: .01em; }

/* ---------- 오시는 길 / 정보 표 ---------- */
.info-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: stretch; }
.map-box {
  border: 1px solid var(--steel-200); border-radius: var(--radius); overflow: hidden;
  min-height: 420px; background: var(--steel-100);
}
.map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.info-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--navy-800); }
.info-table th, .info-table td {
  text-align: left; padding: 18px 16px; border-bottom: 1px solid var(--steel-200); vertical-align: top;
}
.info-table th { width: 110px; background: var(--steel-50); font-weight: 700; font-size: 16px; color: var(--navy-800); }
.info-table td { font-size: 17px; }
.info-table td a { font-weight: 700; color: var(--navy-700); }
.map-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.map-links .btn { min-height: 48px; font-size: 16px; padding: 0 18px; flex: 1; }

/* ---------- 서브 페이지 ---------- */
.page-hero {
  position: relative; background: var(--navy-900); color: #fff; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--page-bg, url("../assets/gallery/g01.jpg")) center / cover no-repeat;
  opacity: .25;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 58, .95) 25%, rgba(11, 31, 58, .6));
}
.page-hero .container { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; }
.page-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; }
.page-hero p { color: #c9d3e0; margin-top: 8px; font-size: 17px; }

.breadcrumb {
  background: #fff; border-bottom: 1px solid var(--steel-200); font-size: 14.5px; color: var(--steel-600);
}
.breadcrumb .container { display: flex; gap: 8px; align-items: center; height: 52px; }
.breadcrumb a:hover { color: var(--navy-700); }
.breadcrumb .cur { color: var(--ink); font-weight: 600; }

.greeting {
  display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start;
}
.greeting-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.greeting-body h2 {
  font-size: 30px; font-weight: 800; line-height: 1.45; letter-spacing: -0.025em; color: var(--navy-800);
}
.greeting-body .lead { margin-top: 28px; }
.greeting-body p + p { margin-top: 18px; }
.greeting-body p { font-size: 17.5px; color: #333c49; }
.sign {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--steel-200);
  display: flex; align-items: baseline; gap: 14px; justify-content: flex-end;
}
.sign span { color: var(--steel-600); font-size: 16px; }
.sign strong { font-size: 24px; font-weight: 800; color: var(--navy-800); letter-spacing: -0.02em; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius);
  padding: 30px 26px; border-top: 3px solid var(--navy-700);
}
.value-card .ico {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-card .ico svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 19px; font-weight: 700; }
.value-card p { font-size: 15.5px; color: var(--steel-600); margin-top: 8px; line-height: 1.6; }

.service-list { display: grid; gap: 20px; }
.service-row {
  display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius); overflow: hidden;
}
.service-row img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.service-row .body { padding: 28px 36px 28px 0; }
.service-row .num { font-size: 14px; font-weight: 700; color: var(--navy-600); letter-spacing: .08em; }
.service-row h3 { font-size: 23px; font-weight: 800; margin-top: 4px; letter-spacing: -0.02em; }
.service-row p { color: #3d4654; margin-top: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tags li {
  font-size: 14px; font-weight: 600; color: var(--navy-700);
  background: var(--navy-100); padding: 5px 12px; border-radius: 999px;
}

.promise-box {
  border: 1px solid var(--steel-200); border-left: 4px solid var(--navy-700);
  background: #fff; border-radius: var(--radius); padding: 32px 36px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.promise-box .big { font-size: 26px; font-weight: 800; color: var(--navy-800); letter-spacing: -0.02em; line-height: 1.35; }
.promise-box p { color: #3d4654; }

/* 게시판 */
.board { width: 100%; border-collapse: collapse; border-top: 2px solid var(--navy-800); }
.board th {
  background: var(--steel-50); font-weight: 700; font-size: 16px; padding: 16px 12px;
  border-bottom: 1px solid var(--steel-200); color: var(--navy-800);
}
.board td { padding: 18px 12px; border-bottom: 1px solid var(--steel-200); text-align: center; font-size: 16.5px; }
.board td.title { text-align: left; }
.board .col-no { width: 90px; }
.board .col-hit { width: 90px; }
.board .col-date { width: 140px; }
.board-empty td { padding: 72px 12px; color: var(--steel-600); }

/* ---------- 푸터 ---------- */
.site-footer { background: #0a1628; color: #9aa7b8; font-size: 15px; }
.site-footer .container { padding-top: 52px; padding-bottom: 40px; }
.footer-top {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-footer .brand-name { color: #c1cad6; font-size: 24px; }
.site-footer .brand-name b { color: #fff; }
.footer-info { margin-top: 16px; line-height: 1.9; }
.footer-info .sep { opacity: .3; margin: 0 10px; }
.footer-info a { color: #dfe5ee; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #c1cad6; font-weight: 600; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px;
}
.footer-bottom a:hover { color: #fff; }

/* 모바일 하단 고정 전화바 */
.mobile-callbar { display: none; }

/* ==========================================================
   반응형
   ========================================================== */
@media (max-width: 1080px) {
  .hero h1 { font-size: 42px; }
  .service-grid, .gallery-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .trust li { border: 1px solid var(--steel-200); border-width: 0 0 1px 0; }
  .trust li:nth-child(odd) { border-right-width: 1px; }
  .trust li:last-child { border-right-width: 0; }
  .greeting { grid-template-columns: 280px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-call { display: none; }
  .gnb {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--steel-200);
    box-shadow: 0 12px 24px rgba(11, 31, 58, .1);
    display: none;
  }
  .gnb.open { display: block; }
  .gnb ul { flex-direction: column; gap: 0; padding: 8px 16px 16px; }
  .gnb a { padding: 16px 8px; font-size: 18px; border-bottom: 1px solid var(--steel-100); border-radius: 0; }
  .gnb a[aria-current="page"]::after { display: none; }
  .gnb a[aria-current="page"] { background: var(--steel-50); }

  .hero .container { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 56px; }
  .hero-photos { grid-template-rows: 130px 130px; }
  .intro, .info-layout { grid-template-columns: 1fr; gap: 36px; }
  .greeting { grid-template-columns: 1fr; }
  .greeting-photo img { aspect-ratio: 16 / 9; }
  .service-row { grid-template-columns: 1fr; gap: 0; }
  .service-row img { min-height: 0; aspect-ratio: 16 / 9; }
  .service-row .body { padding: 24px; }
  .promise-box { grid-template-columns: 1fr; gap: 12px; }
  .cta .container { flex-direction: column; align-items: flex-start; }
  .section { padding: 72px 0; }
  .section-title { font-size: 28px; }

  .mobile-callbar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--steel-200);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
    box-shadow: 0 -6px 18px rgba(11, 31, 58, .08);
  }
  .mobile-callbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    height: 52px; border-radius: var(--radius); font-weight: 700; font-size: 17px;
  }
  .mobile-callbar a svg { width: 19px; height: 19px; }
  .mobile-callbar .office { background: var(--navy-700); color: #fff; }
  .mobile-callbar .mobile { background: #fff; color: var(--navy-800); border: 1px solid var(--navy-700); }
  body { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .container { padding: 0 16px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 11.5px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-photos { display: none; }
  .trust li { padding: 18px 12px; gap: 10px; }
  .trust .ico { width: 38px; height: 38px; }
  .trust strong { font-size: 15.5px; }
  .trust span { font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .value-grid { grid-template-columns: 1fr; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 25px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero .container { padding-top: 44px; padding-bottom: 44px; }
  .greeting-body h2 { font-size: 24px; }
  .cta h2 { font-size: 23px; }
  .cta-phone { flex: 1 1 100%; }
  .info-table th { width: 84px; padding: 14px 10px; }
  .info-table td { padding: 14px 10px; }
  .board .col-hit, .board td:nth-child(3) { display: none; }
  .board .col-no { width: 56px; }
  .board .col-date { width: 100px; }
  .board td, .board th { font-size: 15px; }
  .lightbox { padding: 60px 8px; }
  .lb-prev, .lb-next { top: auto; bottom: 16px; transform: none; }
  .lb-prev { left: calc(50% - 64px); }
  .lb-next { right: calc(50% - 64px); }
  .footer-info .sep { display: none; }
  .footer-info span { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================
   메인 비주얼 — 기존 사이트 첫 화면 구성을 따름
   ========================================================== */
.main-visual {
  background: linear-gradient(90deg, var(--steel-100) 0%, #fff 55%);
  border-bottom: 1px solid var(--steel-200);
}
.mv-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center;
  padding-top: 56px; padding-bottom: 56px;
}
.mv-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius);
}
.mv-brand { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 8px 18px; }
.mv-brand h1 {
  font-size: 60px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: var(--steel-600);
}
.mv-brand h1 b { color: var(--navy-700); }
.mv-tag {
  font-size: 22px; font-weight: 700; color: var(--ink); padding-bottom: 6px;
  border-bottom: 2px solid var(--steel-200);
}
.mv-tag em { font-style: normal; color: var(--accent); }
.mv-bar {
  margin-top: 26px; background: #4a4f57; color: #fff;
  padding: 12px 18px; border-radius: 4px;
  font-size: 16px; font-weight: 600; line-height: 1.6;
}
.mv-bar span { opacity: .5; margin: 0 8px; }
.mv-head {
  margin-top: 28px; font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.35; color: var(--ink);
}
.mv-head em { font-style: normal; color: var(--navy-600); }
.mv-head strong { color: var(--accent); }
.mv-desc { margin-top: 12px; color: var(--steel-600); font-size: 16.5px; }
.mv-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
}
.mv-tiles li {
  background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius);
  padding: 6px; text-align: center; box-shadow: var(--shadow);
}
.mv-tiles img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; }
.mv-tiles span { display: block; padding: 10px 4px 6px; font-weight: 700; font-size: 16px; color: var(--navy-800); }

/* 전화 띠 */
.phone-strip { background: var(--navy-800); color: #fff; }
.phone-strip .container {
  display: flex; align-items: center; justify-content: center; gap: 12px 44px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 18px;
}
.ps-item { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; }
.ps-item strong { font-weight: 800; letter-spacing: .01em; }
.ps-item svg { width: 22px; height: 22px; opacity: .85; }
.ps-name { font-weight: 700; color: #c9d3e0; font-size: 20px; }
a.ps-item:hover strong { text-decoration: underline; text-underline-offset: 4px; }

/* 업체 정보 박스 */
.info-section { padding: 64px 0; }
.info-box {
  display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius);
  padding: 36px 44px;
}
.ib-brand { margin: 0; text-align: center; }
.ib-brand img { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto; }
.ib-brand figcaption { margin-top: 12px; font-size: 20px; font-weight: 800; color: var(--navy-800); }
.ib-list { margin: 0; display: grid; gap: 18px; }
.ib-list div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; }
.ib-list dt { font-weight: 700; color: var(--navy-700); }
.ib-list dd { margin: 0; font-size: 18px; }
.ib-list dd a { font-weight: 800; font-size: 20px; }
.ib-buttons { display: grid; gap: 12px; min-width: 200px; }
.ib-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; border-radius: var(--radius); font-weight: 700; font-size: 18px;
}
.ib-btn svg { width: 20px; height: 20px; }
.ib-btn.call { background: var(--navy-700); color: #fff; }
.ib-btn.call:hover { background: var(--navy-800); }
.ib-btn.blog { background: #03c75a; color: #fff; }
.ib-btn.blog:hover { background: #02b351; }

@media (max-width: 1080px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-photo { display: none; }
  .info-box { grid-template-columns: 1fr; text-align: left; gap: 28px; }
  .ib-brand { display: flex; align-items: center; gap: 16px; text-align: left; }
  .ib-brand img { width: 72px; height: 72px; margin: 0; }
  .ib-brand figcaption { margin-top: 0; }
  .ib-buttons { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mv-grid { padding-top: 36px; padding-bottom: 36px; }
  .mv-brand h1 { font-size: 42px; }
  .mv-tag { font-size: 18px; }
  .mv-bar { font-size: 14.5px; }
  .mv-head { font-size: 23px; }
  .mv-desc { font-size: 15.5px; }
  .mv-desc br.pc { display: none; }
  .mv-tiles { grid-template-columns: repeat(2, 1fr); }
  .ps-item { font-size: 19px; }
  .phone-strip .container { gap: 8px 24px; }
  .info-box { padding: 26px 20px; }
  .ib-list div { grid-template-columns: 72px 1fr; }
  .ib-buttons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery-item .cap { font-size: 12.5px; padding: 20px 8px 8px; }
}
