@charset "utf-8";

/* ============================================================
   안국알앤디(주) — 공통 스타일시트
   Pure CSS. No framework. Mobile-first responsive.
   ============================================================ */

/* Pretendard (CDN) — 서브셋 동적 로딩 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* ---------- 1. 디자인 토큰 ---------- */
/* 안국R&D CI v2 기준 — 경영/신규공장이전 및 2차새출발관련/10_브랜드/CI_로고/CI_사양_v1.md
   심볼: AR-04 CONVERGE / 강조색은 Signal Amber 하나만 사용한다. */
:root {
  /* CI 지정색 */
  --ink:        #14171A;  /* 워드마크·본문 */
  --graphite:   #2A2F35;  /* 보조 면, 배경 블록 */
  --steel:      #6B7681;  /* 메타 정보·캡션·치수선 */
  --amber:      #E8761A;  /* 단 하나의 강조색 (Signal Amber) */
  --amber-deep: #B85405;  /* 밝은 배경 위 텍스트용 */
  --sheet:      #F1F3F4;  /* 냉색 오프화이트 배경 */

  /* 어두운 면 — hero/푸터/강조 섹션 */
  --navy-900: var(--ink);
  --navy-800: var(--graphite);
  --navy-700: #14171A;
  --navy-600: #3A4046;
  --navy-500: var(--graphite);

  /* 강조 */
  --accent:      var(--amber);
  --accent-soft: #FAEEE3;   /* Signal Amber 틴트 (칩·태그 배경) */
  --accent-line: #EBC9AC;   /* Signal Amber 틴트 테두리 */

  /* 어두운 면 위의 글자 단계 */
  --on-dark:      #E7EAEC;
  --on-dark-mute: #A8B0B7;
  --on-dark-dim:  #7C858D;

  /* 중성 램프 — Steel·Sheet 를 기준점으로 한 냉색 계열 */
  --gray-700: #3A4046;
  --gray-600: #4F565D;
  --gray-500: var(--steel);
  --gray-400: #98A1AA;
  --gray-300: #C3CACF;
  --gray-200: #DEE2E5;
  --gray-100: #E9ECEE;
  --gray-50:  var(--sheet);
  --white:    #ffffff;

  /* Layout */
  --container: 1160px;
  --header-h: 68px;
  --radius: 6px;
  --radius-lg: 10px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(20, 23, 26, .06), 0 1px 3px rgba(20, 23, 26, .05);
  --shadow-md: 0 2px 6px rgba(20, 23, 26, .06), 0 8px 24px rgba(20, 23, 26, .07);

  /* Type */
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕",
          system-ui, Roboto, "Helvetica Neue", sans-serif;
  /* Instrument — 품번·치수·사양·측정값 전용 목소리 (CI 5절) */
  --font-mono: "Cascadia Mono", "Cascadia Code", Consolas, "SFMono-Regular",
               "Liberation Mono", Menlo, monospace;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-deep); text-decoration: none; }
a:hover { color: var(--ink); }
button { font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* 모션 최소화 선호 존중 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 3. 레이아웃 유틸 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--gray { background: var(--gray-50); border-block: 1px solid var(--gray-200); }
.section--navy { background: var(--ink); color: var(--white); }

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

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

/* ---------- 4. 타이포 ---------- */
/* 섹션 라벨 — Instrument(모노) 목소리 */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 12px;
}
.section--navy .eyebrow,
.hero .eyebrow { color: var(--amber); }

.h1 { font-size: clamp(28px, 5.2vw, 44px); line-height: 1.28; font-weight: 800; letter-spacing: -.02em; }
.h2 { font-size: clamp(24px, 3.6vw, 32px); line-height: 1.35; font-weight: 700; letter-spacing: -.015em; }
.h3 { font-size: clamp(18px, 2.4vw, 21px); line-height: 1.45; font-weight: 700; letter-spacing: -.01em; }
.h4 { font-size: 17px; line-height: 1.5; font-weight: 700; }

.lead { font-size: clamp(16px, 2vw, 18px); color: var(--gray-600); line-height: 1.8; }
.section--navy .lead { color: var(--on-dark-mute); }

.muted { color: var(--gray-500); }
.small { font-size: 14px; }
.mono { font-family: var(--font-mono); font-size: .92em; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head .h2 + .lead { margin-top: 14px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- 5. 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-size: 15px; font-weight: 600; line-height: 1.2;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
/* 주 CTA — Signal Amber 바탕에 Ink 글자 (대비 6.0:1) */
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-deep); color: #fff; }

.btn--outline { border-color: var(--gray-300); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: var(--sheet); }

.btn--ghost { color: var(--amber-deep); background: transparent; padding-inline: 4px; }
.btn--ghost:hover { color: var(--ink); }

/* 어두운 면 위의 주 CTA */
.btn--onnavy { background: var(--amber); color: var(--ink); }
.btn--onnavy:hover { background: var(--amber-deep); color: #fff; }

/* 어두운 배경 위의 보조 버튼 */
.btn--onnavy-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .34); }
.btn--onnavy-outline:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .62); }

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* 준비중(비활성) 버튼 — PDF 링크 연결 전 상태 */
.btn.is-disabled,
.btn[aria-disabled="true"] {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.arrow::after { content: "→"; font-weight: 400; transition: transform .18s var(--ease); }
.btn:hover .arrow::after, a:hover > .arrow::after { transform: translateX(2px); }

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

/* 락업 — 심볼(AR-04 CONVERGE) + 워드마크.
   CI 6절: 심볼–워드마크 간격 = 심볼 높이의 0.4배 (32px × 0.4 ≈ 13px) */
.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__ko { font-size: 17px; font-weight: 800; letter-spacing: -.035em; }
.brand__en { font-size: 10px; font-weight: 600; letter-spacing: .14em; color: var(--steel); }

.brand-lockup { display: flex; align-items: center; min-width: 0; }

/* 태그라인 — 락업 바깥에 별도 배치 (CI 6절: 태그라인은 워드마크와 분리) */
.brand-tagline {
  display: none;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  color: var(--steel);
  padding-left: 14px;
  margin-left: 2px;
  border-left: 1px solid var(--gray-200);
  white-space: nowrap;
}
@media (min-width: 1240px) { .brand-tagline { display: inline-block; } }

.site-footer .brand-tagline {
  display: block;
  margin: -6px 0 14px; padding: 0;
  border-left: 0; color: var(--steel);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: block; padding: 9px 14px;
  font-size: 15px; font-weight: 600; color: var(--gray-700);
  border-radius: var(--radius);
}
.nav a:hover { color: var(--navy-700); background: var(--gray-100); }
.nav a[aria-current="page"] { color: var(--navy-700); background: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gray-500);
  padding-left: 12px; border-left: 1px solid var(--gray-200);
}
.lang-switch a { color: var(--gray-500); }
.lang-switch a:hover { color: var(--navy-700); }
.lang-switch [aria-current="true"] { color: var(--navy-800); }

/* 모바일에서 숨기는 헤더 CTA */
.hide-sm { display: none; }
@media (min-width: 901px) { .hide-sm { display: inline-flex; } }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gray-300);
  border-radius: var(--radius); color: var(--navy-800);
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 12px; font-size: 16px; border-radius: var(--radius); }
  .lang-switch { padding-left: 0; border-left: 0; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--gray-200); }
}

/* ---------- 7. 히어로 ---------- */
.hero {
  position: relative;
  /* CI: 그라디언트 금지 — 단색 Graphite 판 */
  background: var(--graphite);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* .container 의 좌우 padding 을 지우지 않도록 padding-block 사용 */
.hero__inner { position: relative; z-index: 1; padding-block: clamp(56px, 9vw, 104px) clamp(48px, 8vw, 88px); }
.hero__body { max-width: 780px; }
.hero .h1 { color: #fff; }
.hero__sub { margin-top: 20px; font-size: clamp(16px, 2vw, 18.5px); line-height: 1.8; color: var(--on-dark-mute); max-width: 660px; }
.hero .btn-row { margin-top: 32px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  font-size: 13.5px; font-weight: 600; color: var(--on-dark);
  margin-bottom: 22px;
}
.hero-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); flex: none;
  box-shadow: 0 0 0 3px rgba(232, 118, 26, .25);
}

/* 페이지 헤더 (하위 페이지) */
.page-hero {
  background: var(--graphite);
  color: #fff;
  padding: clamp(44px, 7vw, 72px) 0;
}
.page-hero .h1 { color: #fff; }
.page-hero .lead { color: var(--on-dark-mute); margin-top: 14px; max-width: 720px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--on-dark-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--on-dark-dim); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--steel); }
.breadcrumb li { display: inline; }

/* ---------- 8. 통계 스트립 ---------- */
.stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--white); padding: 24px 20px; }
.stat__num { font-size: clamp(22px, 3.2vw, 28px); font-weight: 800; color: var(--navy-700); letter-spacing: -.02em; line-height: 1.2; }
.stat__label { margin-top: 6px; font-size: 13.5px; color: var(--gray-600); font-weight: 500; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 9. 카드 그리드 ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card:hover { border-color: var(--ink); }
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy-600); background: var(--accent-soft);
  padding: 4px 9px; border-radius: 4px; margin-bottom: 12px;
}
.card__title { font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.card__desc { margin-top: 10px; font-size: 15px; color: var(--gray-600); line-height: 1.72; }
.card__meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.card__foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-100); }

.chip {
  font-size: 12.5px; font-weight: 600; color: var(--gray-700);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 3px 9px; border-radius: 100px;
}

/* 특징(아이콘) 항목 */
.feature { padding: 4px 0; }
.feature__icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--accent-soft); color: var(--navy-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature .h3 { margin-bottom: 8px; }
.feature p { color: var(--gray-600); font-size: 15px; }

.section--navy .feature__icon { background: rgba(255,255,255,.1); color: var(--amber); }
.section--navy .feature p { color: var(--on-dark-mute); }
.section--navy .feature .h3 { color: #fff; }

/* ---------- 10. 이미지 플레이스홀더 ---------- */
.ph {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, var(--gray-50) 0 10px, var(--gray-100) 10px 20px);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-500);
  text-align: center; padding: 16px;
}
.ph--wide { aspect-ratio: 16 / 9; }
.ph--flat { aspect-ratio: 21 / 9; }
.ph--card { border: 0; border-bottom: 1px dashed var(--gray-300); border-radius: 0; }
.ph__icon { width: 26px; height: 26px; opacity: .55; }
.ph__label { font-size: 13px; font-weight: 600; }
.ph__hint { font-size: 11.5px; color: var(--gray-400); }

/* ---------- 11. 스펙 표 ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}
.spec-table { font-size: 14.5px; min-width: 460px; }
.spec-table caption {
  caption-side: top; text-align: left;
  padding: 14px 18px;
  font-weight: 700; font-size: 14px; color: var(--navy-800);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.spec-table th, .spec-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left; vertical-align: top;
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table th {
  font-weight: 600; color: var(--gray-700);
  background: var(--gray-50);
}
.spec-table tbody th {
  width: 38%;
  border-right: 1px solid var(--gray-100);
}
.spec-table thead th {
  background: var(--gray-100);
  color: var(--navy-800);
  border-bottom: 1px solid var(--gray-200);
}
.spec-table td { color: var(--ink); }
.spec-table tbody tr:hover td { background: var(--gray-50); }

/* 값 미확정 표기 — 확정된 값으로 교체할 자리 (소스에서 class="tbd" 로 검색) */
.tbd { color: var(--gray-400); font-size: .95em; }

/* ---------- 12. 제품 상세 블록 ---------- */
.product {
  scroll-margin-top: calc(var(--header-h) + 20px);
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
}
.product:first-of-type { border-top: 0; }
.product__layout { display: grid; gap: 32px; }
@media (min-width: 940px) {
  .product__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 48px; align-items: start; }
}
.product__head { margin-bottom: 20px; }
.product__no {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--accent); letter-spacing: .06em;
}
.product__title { margin-top: 6px; }
.product__en { display: block; margin-top: 4px; font-size: 14px; font-weight: 500; color: var(--gray-500); letter-spacing: .01em; }
.product__desc { margin-top: 16px; color: var(--gray-600); font-size: 15.5px; }

.bullets { margin-top: 20px; display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 24px; font-size: 15px; color: var(--gray-700); }
.bullets li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent);
}

.doc-row {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.doc-row__note { margin-top: 10px; font-size: 13px; color: var(--gray-500); }

/* ---------- 13. 연혁 타임라인 ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 2px; background: var(--gray-200);
}
.timeline li { position: relative; padding-bottom: 26px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -25px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-300);
}
.timeline li.is-key::before { border-color: var(--accent); background: var(--accent); }
.timeline__year {
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 700;
  color: var(--navy-600); letter-spacing: .04em;
}
.timeline__text { margin-top: 2px; font-size: 15.5px; color: var(--gray-700); }
.timeline li.is-key .timeline__text { color: var(--ink); font-weight: 600; }

/* ---------- 14. 정의형 목록 (회사개요/연락처) ---------- */
.deflist {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.deflist > div {
  display: grid; grid-template-columns: 1fr;
  border-bottom: 1px solid var(--gray-100);
}
.deflist > div:last-child { border-bottom: 0; }
.deflist dt {
  padding: 12px 18px 2px;
  font-size: 13.5px; font-weight: 700; color: var(--gray-600);
  background: var(--gray-50);
}
.deflist dd { padding: 6px 18px 14px; margin: 0; font-size: 15px; color: var(--ink); }
@media (min-width: 620px) {
  .deflist > div { grid-template-columns: 190px minmax(0, 1fr); align-items: stretch; }
  .deflist dt { padding: 14px 18px; border-right: 1px solid var(--gray-100); display: flex; align-items: center; }
  .deflist dd { padding: 14px 18px; display: flex; align-items: center; }
}

/* ---------- 15. 문의 ---------- */
.contact-grid { display: grid; gap: 20px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  padding: 26px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.contact-card__icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--accent-soft); color: var(--navy-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label { font-size: 13px; font-weight: 700; color: var(--gray-500); letter-spacing: .04em; text-transform: uppercase; }
.contact-card__value { margin-top: 6px; font-size: 17px; font-weight: 700; color: var(--navy-800); letter-spacing: -.01em; }
.contact-card__value a { color: inherit; }
.contact-card__value a:hover { color: var(--accent); }
.contact-card__sub { margin-top: 8px; font-size: 14px; color: var(--gray-500); }

.note {
  padding: 18px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 14.5px; color: var(--navy-800);
}
.note strong { font-weight: 700; }
.note ul { margin-top: 8px; display: grid; gap: 4px; }
.note li { padding-left: 14px; position: relative; }
.note li::before { content: "·"; position: absolute; left: 4px; }

/* 지도 */
.map-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-box .ph { border: 0; border-radius: 0; }
.map-box__bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 14px; color: var(--gray-700);
}

/* ---------- 15-b. 문의 폼 ---------- */
.form {
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: grid; gap: 18px;
}
.form__row { display: grid; gap: 18px; }
@media (min-width: 600px) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: 7px; }
.field > label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.field .req { color: var(--amber-deep); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 36px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236B7681' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 11px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 118, 26, .22);
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field__hint { font-size: 12.5px; color: var(--gray-500); }

.form__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.form__note { font-size: 12.5px; color: var(--gray-500); max-width: 46ch; }

/* ---------- 16. CTA 밴드 ---------- */
.cta {
  background: var(--graphite);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  display: grid; gap: 24px;
}
@media (min-width: 860px) {
  .cta { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; }
}
.cta .h2 { color: #fff; }
.cta p { margin-top: 10px; color: var(--on-dark-mute); font-size: 16px; }

/* ---------- 17. 푸터 ---------- */
.site-footer {
  margin-top: 0;
  background: var(--navy-900);
  color: var(--on-dark-mute);
  font-size: 14px;
  padding: 48px 0 28px;
}
.site-footer a { color: var(--on-dark-mute); }
.site-footer a:hover { color: #fff; }

.footer-top {
  display: grid; gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (min-width: 820px) {
  .footer-top { grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr)); gap: 40px; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 14px; }
.footer-brand:hover { color: #fff; }
.footer-brand .brand__ko { color: #fff; }
.footer-brand .brand__en { color: var(--steel); }
.footer-desc { color: var(--on-dark-dim); line-height: 1.75; max-width: 420px; }

.footer-col h3 {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: grid; gap: 9px; }

.footer-bottom {
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
  color: var(--steel); font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* ---------- 18. 404 ---------- */
.error-page { padding-block: clamp(60px, 12vw, 120px); text-align: center; }
.error-page__code {
  font-family: var(--font-mono); font-size: clamp(56px, 14vw, 96px);
  font-weight: 800; color: var(--gray-200); line-height: 1;
}
.error-page .h2 { margin-top: 12px; }
.error-page .lead { margin: 14px auto 28px; max-width: 520px; }
.error-page .btn-row { justify-content: center; }

/* ---------- 19. 준비중(영문) 알림 ---------- */
.wip {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.wip__icon { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.wip h2 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.wip p { font-size: 14.5px; color: var(--gray-600); }
