@charset "utf-8";
/* ==========================================================================
   MAEIL MARINE — site stylesheet
   정적 사이트용 단일 스타일시트. 빌드 도구 없이 그대로 사용합니다.
   구조: 1 토큰 · 2 리셋 · 3 타이포 · 4 레이아웃 · 5 헤더 · 6 페이지헤더
        7 버튼/칩 · 8 카드/그리드 · 9 타임라인/표 · 10 폼 · 11 푸터 · 12 반응형
   ========================================================================== */

/* ---------- 1. 토큰 ---------- */
:root {
  --navy-deep: #141733;
  --navy: #1c2148;
  --navy-ink: #2a2766;
  --blue: #253dbe;
  --blue-focus: #4158d1;
  --accent: #3d9be9;
  --accent-light: #9ed4ff;
  --pale: #e6f2fc;
  --ink: #12141c;
  --body: #3b3c3f;
  --muted: #6a6f78;
  --line: #e3e6ec;
  --line-soft: #f0f2f6;
  --surface: #f7f9fc;
  --surface-alt: #eef2fb;
  --white: #fff;

  --wrap: 1240px;
  --wrap-narrow: 940px;
  --pad: 24px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-card: 0 4px 12px rgba(20, 23, 51, .07);
  --shadow-lift: 0 6px 16px rgba(20, 23, 51, .08);
  --shadow-drop: 0 18px 40px rgba(20, 23, 51, .14);

  --font-ko: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", system-ui, sans-serif;
  --font-en: "Inter", sans-serif;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ko);
  line-height: 1.75;
  word-break: keep-all;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
}

img { display: block; max-width: 100%; }

a { color: var(--navy-ink); text-decoration: none; }
a:hover { color: var(--blue); }

button { font: inherit; }
input, select, textarea, button { font: inherit; }

table { border-collapse: collapse; width: 100%; }

/* 앵커 이동 시 sticky 헤더에 가리지 않도록 */
[id] { scroll-margin-top: 140px; }

/* ---------- 3. 타이포 ---------- */
.en { font-family: var(--font-en); }

.eyebrow {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--light { color: var(--accent-light); }
.eyebrow--num {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: none;
}

.h-hero {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  max-width: 22ch;
  text-wrap: pretty;
}
.h-sec {
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  text-wrap: pretty;
}
.h-page {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.h-sub { font-size: 1.15rem; }

.lead {
  color: var(--muted);
  font-size: 17px;
  text-wrap: pretty;
}
.body-text { color: var(--body); text-wrap: pretty; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.xsmall { font-size: 12.5px; }
.measure { max-width: 56ch; }
.measure-wide { max-width: 64ch; }

/* ---------- 4. 레이아웃 ---------- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--pad);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.sec { padding: 80px 0; }
.sec--lg { padding: 88px 0; }
.sec--alt { background: var(--surface); }
.sec--navy { background: var(--navy); color: var(--white); }
.sec--navy .h-sec, .sec--navy b { color: var(--white); }

/* 자동 반응형 그리드 — 최소폭은 --min 으로 지정 */
.autogrid {
  display: grid;
  gap: var(--gap, 18px);
  grid-template-columns: repeat(auto-fit, minmax(var(--min, 260px), 1fr));
}
.split {
  display: grid;
  gap: var(--gap, 56px);
  grid-template-columns: repeat(auto-fit, minmax(var(--min, 320px), 1fr));
  align-items: center;
}
.split--start { align-items: start; }
.stack { display: grid; gap: var(--gap, 14px); }
.row { display: flex; flex-wrap: wrap; gap: var(--gap, 8px); }
.row--between {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
}

.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 48px; }

/* ---------- 5. 헤더 ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .6);
  font-size: 12.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 38px;
}
.topbar__tag { font-family: var(--font-en); letter-spacing: .07em; }
.topbar__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar a { color: rgba(255, 255, 255, .72); }
.topbar a:hover { color: var(--white); }
.topbar__tel { font-family: var(--font-en); font-weight: 600; color: rgba(255, 255, 255, .85) !important; }

.hdr {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}
.hdr__logo { flex: 0 0 auto; display: flex; align-items: center; }
.hdr__logo img { height: 42px; width: auto; }
.hdr__logo--en img { height: 38px; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav > li { position: relative; }
.nav__link {
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  color: var(--body);
}
.nav__link:hover { color: var(--navy-ink); }
.nav > li.is-active > .nav__link {
  border-bottom-color: var(--accent);
  color: var(--navy-ink);
}
.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 198px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-drop);
  padding: 8px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease;
}
/* 상위메뉴와 하위메뉴 사이 14px 여백에서 hover 가 끊기지 않도록 투명 브릿지로 연결 */
.nav__sub::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav > li:hover .nav__sub,
.nav > li.is-open .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__sub a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  white-space: nowrap;
}
.nav__sub a:hover { background: #f3f6fb; color: var(--navy-ink); }

.langs {
  display: flex;
  gap: 2px;
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}
.langs a {
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--muted);
}
.langs a.is-on { background: var(--navy-ink); color: var(--white); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger i {
  display: block;
  width: 17px;
  height: 2px;
  background: #222542;
  border-radius: 2px;
}

.mnav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  max-height: 70vh;
  overflow-y: auto;
}
.mnav.is-open { display: block; }
.mnav__inner { padding: 12px var(--pad) 24px; display: grid; gap: 4px; }
.mnav__group { padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.mnav__top {
  display: block;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 700;
  color: #222542;
}
.mnav__subs { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 4px 8px; }
.mnav__subs a {
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: #f3f6fb;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
}

/* ---------- 6. 페이지 헤더 · 서브탭 ---------- */
.phead {
  background: linear-gradient(112deg, var(--navy-deep) 0%, var(--navy) 46%, var(--navy-ink) 100%);
  color: var(--white);
  padding: 64px 0 40px;
}
.phead__crumb {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
}
.phead h1 { margin: 14px 0 0; }
.phead p {
  max-width: 60ch;
  color: rgba(255, 255, 255, .78);
  margin-top: 16px;
  text-wrap: pretty;
}

.subtabs {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 60;
}
.subtabs ul { display: flex; overflow-x: auto; gap: 4px; }
.subtabs a {
  display: block;
  padding: 17px 20px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  color: var(--muted);
}
.subtabs a:hover { color: var(--navy-ink); }
.subtabs a.is-on { border-bottom-color: var(--navy-ink); color: var(--navy-ink); }

/* ---------- 7. 버튼 · 칩 · 노트 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border: 0;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.btn--primary { background: var(--navy-ink); color: var(--white); }
.btn--primary:hover { background: var(--blue); color: var(--white); }
.btn--white { background: var(--white); color: #222542; padding: 16px 30px; }
.btn--white:hover { background: var(--accent-light); color: #222542; }
.btn--ghost {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .38);
  color: var(--white);
  padding: 16px 30px;
  font-weight: 600;
}
.btn--ghost:hover { background: var(--white); color: #222542; }
.btn--outline {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-ink);
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
}
.btn--outline:hover { border-color: var(--navy-ink); }
.btn--soft {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--navy-ink);
  padding: 15px 28px;
}
.btn--soft:hover { border-color: var(--navy-ink); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-ink);
}
.textlink--light { color: var(--accent-light); }
.textlink--light:hover { color: var(--white); }

.chip {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  background: var(--pale);
  color: var(--blue);
}
.chip--line {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--body);
  font-weight: 600;
}
.chip--onnavy {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
  padding: 6px 13px;
}
.chip--solid { background: var(--navy-ink); color: var(--white); }
.chip--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--body);
  font-weight: 600;
  padding: 6px 13px;
}
.chip--foot {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  padding: 5px 11px;
}

.note {
  border-left: 3px solid var(--accent);
  background: var(--pale);
  padding: 16px 22px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
}

/* ---------- 8. 히어로 · 카드 · 통계 ---------- */
.hero {
  position: relative;
  min-height: min(86vh, 740px);
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 23, 51, .93) 0%, rgba(20, 23, 51, .74) 44%, rgba(28, 33, 72, .32) 80%, rgba(61, 155, 233, .12) 100%);
}
.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 88px var(--pad) 52px;
  color: var(--white);
  animation: mmFade .7s cubic-bezier(.22, .61, .36, 1) both;
}
.hero__body h1, .hero__body h2 { margin: 18px 0 22px; }
.hero__body p { font-size: 17px; color: rgba(255, 255, 255, .84); }

@keyframes mmFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.herostats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px 32px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.herostats b {
  display: block;
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.herostats span {
  font-size: 12.5px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .7);
}

.banner {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(20, 23, 51, .95) 0%, rgba(28, 33, 72, .82) 54%, rgba(20, 23, 51, .46) 100%);
}
.banner__body {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 88px var(--pad);
  color: var(--white);
}
.banner__body h2 {
  font-size: clamp(1.6rem, 2.9vw, 2.4rem);
  margin: 16px 0;
  max-width: 26ch;
}
.banner__body p { max-width: 54ch; color: rgba(255, 255, 255, .8); }

/* 사업영역 카드 */
.scard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.scard:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.scard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.scard__body { padding: 22px; }
.scard__body h3 { font-size: 1.1rem; margin: 9px 0 8px; }
.scard__body p { font-size: 14px; color: var(--muted); }

/* 사진 + 캡션 카드 */
.pcard {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.pcard img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.pcard--wide img { aspect-ratio: 16 / 9; }
.pcard figcaption { padding: 18px 20px; }
.pcard figcaption b { display: block; font-size: 15px; margin-bottom: 5px; }
.pcard figcaption span { font-size: 13.5px; color: var(--muted); }

/* 캡션 붙은 사진 */
.shot img { width: 100%; border-radius: 14px; object-fit: cover; }
.shot--sq img { aspect-ratio: 4 / 3; border-radius: 10px; }
.shot--wide img { aspect-ratio: 3 / 2; }
.shot figcaption {
  padding-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.shot--onnavy figcaption { color: rgba(255, 255, 255, .72); }

/* 품목 타일 */
.tile { background: var(--surface); border-radius: var(--r-md); overflow: hidden; }
.tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
}
.tile span { display: block; padding: 14px 16px; font-weight: 700; font-size: 14px; }

/* 인증 카드 */
.cert {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 168px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.cert:hover { border-color: var(--accent-light); box-shadow: var(--shadow-card); }
.cert__org {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
}
.cert b { font-size: 14.5px; line-height: 1.4; align-self: start; }
.cert__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cert__foot span:first-child { font-size: 12.5px; color: var(--muted); }
.cert__badge {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-ink);
  background: var(--surface-alt);
  border-radius: var(--r-pill);
  padding: 4px 9px;
}

/* 통계 블록 */
.stat { padding-top: 20px; border-top: 2px solid var(--navy-ink); }
.stat b {
  display: block;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-ink);
  letter-spacing: -.03em;
  line-height: 1.2;
}
.stat span { font-size: 13.5px; color: var(--muted); }

/* 프로세스 */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(186px, 1fr)); gap: 18px; }
.steps li { padding-top: 20px; border-top: 2px solid rgba(255, 255, 255, .22); }
.steps__n {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent-light);
}
.steps b { display: block; font-size: 15px; margin: 8px 0 6px; }
.steps span { font-size: 13px; color: rgba(255, 255, 255, .62); }

/* SIKA / PPUK 2행 정렬 카드 */
.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 24px;
  row-gap: 0;
  align-items: stretch;
  grid-template-rows: auto auto;
}
.duo__card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.duo__head { padding: 26px 28px; }
.duo__head h3 { font-size: 1.15rem; margin: 10px 0 8px; }
.duo__head p { font-size: 14px; color: var(--muted); }
.duo__media {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 26px 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.duo__media figcaption {
  padding-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
/* subgrid 미지원 브라우저 폴백 */
@supports not (grid-template-rows: subgrid) {
  .duo { grid-template-rows: none; }
  .duo__card { grid-row: auto; grid-template-rows: auto 1fr; }
}

.duo__media img { width: 100%; height: auto; }
.duo__media img.rounded { border-radius: 8px; background: var(--white); }
.duo__logo { height: 32px; width: auto; justify-self: start; }

.minishot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
}
.minishot figcaption {
  padding-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* 흰 카드 안의 품목 이미지 (면세품) */
.capcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.capcard img { width: 100%; height: auto; }
.capcard figcaption {
  padding-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

/* 대표이사 사진 자리 (실제 사진으로 교체) */
.ph-portrait {
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13.5px;
}

/* 강조 박스 */
.promo { background: var(--surface); border-radius: var(--r-lg); padding: 32px 34px; }
.promo h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.promo p { font-size: 14px; color: var(--muted); }

/* 공지 */
.notice { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 36px; }
.notice__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.notice__head h3 { font-size: 1.15rem; }
.notice li { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.notice li a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  color: var(--ink);
}
.notice li a:hover { color: var(--blue); }
.notice li b { font-weight: 600; font-size: 14.5px; }
.notice li time { font-size: 13px; color: var(--muted); font-family: var(--font-en); }

/* ---------- 9. 표 · 타임라인 · 조직도 ---------- */
/* 1px 구분선 목록 */
.rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.rows--cols { grid-template-columns: repeat(auto-fit, minmax(var(--min, 250px), 1fr)); }
.rows > * { background: var(--white); }

.kv {
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  font-size: 14.5px;
}
.kv dt, .kv span:first-child { font-weight: 700; color: var(--navy-ink); }
.kv--tight {
  padding: 12px 16px;
  grid-template-columns: 150px 1fr;
  font-size: 14px;
}

.customer {
  padding: 13px 16px;
  font-family: var(--font-en);
  font-size: 12.5px;
  color: var(--body);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.customer b { color: var(--accent); min-width: 26px; }

/* 타임라인 */
.tl { position: relative; padding-left: 32px; border-left: 2px solid var(--line); }
.tl li { position: relative; padding-bottom: 30px; }
.tl li::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--pale);
}
.tl time {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}
.tl p { font-size: 14.5px; }
.tl--tight { padding-left: 30px; }
.tl--tight li { padding-bottom: 24px; }
.tl--tight li::before { left: -37px; }
.tl--tight time { font-size: 13.5px; }

/* 재고 표 */
.stocktable { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.stocktable table { font-size: 14px; }
.stocktable th {
  text-align: left;
  background: #eef2f8;
  color: #222542;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.stocktable th:first-child { width: 130px; }
.stocktable th:last-child { width: 220px; }
.stocktable td { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); }
.stocktable td:first-child {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.stocktable td:last-child { color: var(--muted); }

/* 협력사 */
.partner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: #222542;
}

/* 조직도 */
.org { display: grid; gap: 14px; justify-items: center; text-align: center; }
.org__top {
  background: var(--navy-ink);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 14px;
}
.org__node {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(20, 23, 51, .08);
}
.org__line { width: 2px; height: 24px; background: var(--line); }
.org__depts { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* 지도 */
.mapframe { width: 100%; height: 400px; border: 0; border-radius: var(--r-lg); }
.portmap {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

/* 이미지 라운드 유틸 */
.img-lg { width: 100%; border-radius: var(--r-lg); object-fit: cover; }
.img-md { width: 100%; border-radius: var(--r-md); object-fit: cover; }
.ar-16-10 { aspect-ratio: 16 / 10; }
.ar-4-3 { aspect-ratio: 4 / 3; }
.ar-3-2 { aspect-ratio: 3 / 2; }
.ar-21-9 { aspect-ratio: 21 / 9; }

/* ---------- 10. 폼 ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field > label { font-size: 14px; font-weight: 600; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field textarea.tall { min-height: 150px; }
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-focus);
  box-shadow: 0 0 0 3px rgba(65, 88, 209, .14);
}
.field select:focus { outline: 0; border-color: var(--blue-focus); }
.field__help { font-size: 12.5px; color: var(--muted); }

.fieldgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min, 240px), 1fr));
  gap: 0 22px;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}
.consent input { margin-top: 5px; }

/* ---------- 11. 푸터 ---------- */
.foot {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 30px;
  font-size: 14px;
}
.foot__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.foot__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.foot__about { margin-top: 16px; max-width: 40ch; color: rgba(255, 255, 255, .58); }
.foot h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-en);
  font-weight: 700;
}
.foot ul { display: grid; gap: 8px; }
.foot a { color: rgba(255, 255, 255, .7); }
.foot a:hover { color: var(--white); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .48);
}

/* ---------- 12. 반응형 ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .langs { margin-left: auto; }
  .burger { display: flex; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  .sec, .sec--lg { padding: 56px 0; }
  .hero__body { padding: 64px var(--pad) 40px; }
  .banner__body { padding: 64px var(--pad); }
  .phead { padding: 44px 0 30px; }
  .notice, .promo { padding: 26px 22px; }
  .duo__head { padding: 22px 20px; }
  .duo__media { padding: 22px 20px; }
  .kv { grid-template-columns: 92px 1fr; font-size: 14px; }
  .kv--tight { grid-template-columns: 110px 1fr; }
  .split { --gap: 36px; }
  .foot__top { gap: 32px; }
  .topbar__links { margin-left: 0; }
  .topbar { display: none; }
}

@media print {
  .topbar, .hdr, .mnav, .subtabs, .burger { display: none !important; }
  body { color: #000; }
}
