@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&display=swap');

/* ── TOKENS ── */
:root {
  --black:       #111111;
  --white:       #ffffff;
  --gray:        #f7f7f7;
  --gray2:       #ebebeb;
  --mid:         #888888;
  --green:       #7dff00;
  --nav-h:       58px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --content-max: 1234px;
}

/* ── SELECTION ── */
::selection { background: var(--green); color: var(--black); }
::-moz-selection { background: var(--green); color: var(--black); }

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── SCROLL PROGRESS ── */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%; background: var(--green); z-index: 9999;
  transition: width 0.1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--content-max);
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { margin-left: auto; }
.nav-logo img { height: 28px; display: block; }
.nav-links {
  display: flex; gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--black); opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-cta {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 20px;
  background: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 100px;
  color: var(--black);
  margin-left: 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  animation: nav-cta-pulse 3s ease-in-out infinite;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: -60%;
  width: 40%; height: 100%;
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%) skewX(-20deg);
  animation: nav-cta-shine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(125,255,0,0.55); }
  50%       { box-shadow: 0 0 0 6px rgba(125,255,0,0); }
}
@keyframes nav-cta-shine {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  50%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
.nav-cta:hover {
  background: var(--black);
  color: var(--green);
  border-color: var(--black);
  transform: scale(1.04);
  animation: none;
}
.nav-cta:hover::before { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  max-height: 960px;
  overflow: hidden;
  background: #111;
}
/* 슬라이드쇼 */
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
/* 네비게이션 도트 */
.hero-dots {
  position: absolute;
  bottom: clamp(20px, 2.5vh, 32px);
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.25);
}
/* 화살표 */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }
.hero-arrow--prev { left: clamp(16px, 3vw, 48px); }
.hero-arrow--next { right: clamp(16px, 3vw, 48px); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}
/* 1234px 중앙 정렬 inner wrapper */
.hero-inner {
  position: absolute; inset: 0;
  max-width: var(--content-max);
  margin: 0 auto;
  pointer-events: none;
}
.hero-inner > * { pointer-events: auto; }
.hero-content {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  left: clamp(32px, 4vw, 60px);
  color: var(--white);
}
.hero-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: clamp(12px, 1.5vh, 20px);
}
.hero-title {
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.03em; text-transform: uppercase;
  margin-bottom: clamp(16px, 2vh, 24px);
}
.hero-title em {
  color: var(--green); font-style: normal;
  display: block;
}
.hero-sub {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 400; opacity: 0.7;
}

/* ── CATALOG (Product sections) ── */
.catalog { }

.catalog-row {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: clamp(480px, 55vh, 640px);
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
}
.catalog-row.reverse { direction: rtl; }
.catalog-row.reverse > * { direction: ltr; }

/* Visual side */
.catalog-visual {
  position: relative;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 60%, #f5f6f8 100%);
  display: flex; flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.catalog-main-img-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: inherit;
}
.catalog-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.catalog-visual:hover .catalog-main-img { transform: scale(1.03); }

/* Catalog image arrows */
.catalog-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10;
}
.catalog-arrow svg { width: 18px; height: 18px; }
.catalog-arrow-prev { left: 10px; }
.catalog-arrow-next { right: 10px; }
.catalog-main-img-wrap:hover .catalog-arrow { opacity: 1; }
.catalog-arrow:hover { background: rgba(255,255,255,0.95); }
.catalog-thumbs {
  display: flex; gap: 6px;
  padding: 8px 10px 12px;
  background: var(--white);
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gray2) transparent;
}
.catalog-thumbs::-webkit-scrollbar { height: 3px; }
.catalog-thumbs::-webkit-scrollbar-track { background: transparent; }
.catalog-thumbs::-webkit-scrollbar-thumb { background: var(--gray2); border-radius: 2px; }
.catalog-thumb {
  width: 64px; height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  background: var(--gray);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  border: 1.5px solid transparent;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
}
.catalog-thumb:hover { opacity: 1; background: var(--white); border-color: var(--gray2); }
.catalog-thumb.active { opacity: 1; background: var(--white); border-color: var(--black); }

/* Info side */
.catalog-info {
  padding: clamp(36px, 4vw, 64px) clamp(32px, 4.5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
.catalog-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--mid);
  margin-bottom: 10px;
}
.catalog-name {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.03em; text-transform: uppercase;
  margin-bottom: 14px;
}
.catalog-type {
  font-size: 13px; font-weight: 500;
  color: var(--mid); letter-spacing: 0.04em;
  margin-bottom: clamp(18px, 2.5vh, 28px);
  padding-bottom: clamp(18px, 2.5vh, 28px);
  border-bottom: 1px solid var(--gray2);
}
.catalog-desc {
  font-size: clamp(13px, 1.2vw, 15px); line-height: 1.7;
  color: #444; margin-bottom: clamp(20px, 2.5vh, 32px);
}
.catalog-skus {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: clamp(22px, 3vh, 36px);
}
.catalog-sku-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: #444;
}
.sku-swatch {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.sku-code {
  font-size: 11px; color: var(--mid);
  font-family: 'SF Mono', 'Fira Code', monospace;
  margin-left: auto;
}
.catalog-badge {
  display: inline-flex;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-top: 12px; margin-bottom: 20px; align-self: flex-start;
}
.badge-veiled  { background: rgba(0,184,122,0.12); color: #00b87a; }
.badge-panther { background: rgba(59,130,246,0.12); color: #3b82f6; }
.badge-parson  { background: rgba(124,58,237,0.12); color: #7c3aed; }

.catalog-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black);
  padding: 14px 28px; border: 1.5px solid var(--black);
  border-radius: 100px; align-self: flex-start;
  transition: background 0.2s, color 0.2s, gap 0.2s;
}
.catalog-link:hover { background: var(--black); color: var(--white); gap: 16px; }
.catalog-link svg { width: 14px; height: 14px; }

/* ── SECTION HEADER ── */
.section-header {
  padding: clamp(48px, 6vh, 80px) clamp(32px, 4vw, 80px) clamp(36px, 5vh, 56px);
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--gray2);
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
}
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 12px;
}
.section-title-lg {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1;
}
.section-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.section-link:hover { gap: 14px; }

/* ── CATALOG bottom spacing ── */
.catalog { padding-bottom: clamp(60px, 9vh, 120px); }
.page-hero--bg + .catalog { padding-top: clamp(60px, 9vh, 120px); }
.catalog-row + .catalog-row { margin-top: clamp(60px, 8vh, 100px); }

/* ── 홈: 배너→문구, 문구→products 여백 ── */
.hero + .section-statement {
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: clamp(100px, 14vh, 160px);
}
.section-statement + .section-header {
  padding-top: clamp(140px, 20vh, 220px);
}

/* brand-values 아래 첫 brand-story 위 여백 */
.brand-values + .brand-story {
  margin-top: clamp(180px, 26vh, 300px);
  border-bottom: none;
}

/* 두 번째 brand-story(MODEL NAMING) 하단 라인 제거 */
.brand-story + .brand-story {
  border-bottom: none;
}

/* ============================================================
   SHOWCASE (home product grid)
   ============================================================ */
.showcase {
  max-width: var(--content-max);
  margin: 0 auto clamp(120px, 16vh, 200px);
}
.sc-veiled + .showcase-row { margin-top: 320px; }
.showcase-row + .showcase-row { margin-top: 320px; }
.showcase-row {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: clamp(420px, 52vh, 580px);
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  transition: opacity 0.2s;
}
.showcase-row:last-child { }
.showcase-row--reverse { grid-template-columns: 38% 62%; }
.showcase-row--reverse .showcase-img { order: 2; }
.showcase-row--reverse .showcase-info { order: 1; }

.showcase-img {
  position: relative;
  overflow: hidden;
  background: var(--gray);
}
.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
  display: block;
}
.showcase-row:hover .showcase-img img { transform: scale(1.05); }

.showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
  background: var(--white);
  gap: 0;
}
.showcase-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mid);
  margin: 0 0 14px;
}
.showcase-name {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
}
.showcase-info .catalog-badge { margin: 0 0 32px; }
.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap 0.2s;
}
.showcase-cta svg { width: 13px; height: 13px; }
.showcase-row:hover .showcase-cta { gap: 14px; }

/* PRODUCT BLOCK (공통 레이아웃) */
.sc-pb { margin-bottom: 0; }
.sc-veiled + .showcase-row,
.sc-pb + .sc-pb { margin-top: 260px; }

.sc-pb-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

/* 타이틀: 좌 상단 */
.sc-pb-title {
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 24px;
}
.sc-pb-title .showcase-num { margin: 0 0 10px; }
.sc-pb-title .showcase-name { margin: 0; }

/* 착용컷: 좌 하단 — 세로 길게 */
.sc-pb-left {
  grid-column: 1;
  grid-row: 2;
  height: clamp(520px, 66vh, 720px);
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.sc-pb-left img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.75s var(--ease);
  display: block;
}
.sc-pb-left:hover img { transform: scale(1.05); }

/* 상세컷: 우측 전체 (row1~2) */
.sc-pb-product {
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 60%, #f5f6f8 100%);
  border-radius: 16px;
}
.sc-pb-product img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}
.sc-pb-product:hover img { transform: scale(1.04); }

/* 가로 와이드 이미지 (제품 블록 하단) */
.sc-pb-wide {
  width: 100%;
  height: clamp(600px, 76vh, 880px);
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 72px);
  border-radius: 16px;
}
.sc-pb-wide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 1.2s var(--ease);
}
.sc-pb-wide:hover img { transform: scale(1.04); }

/* brand-story 바로 다음 brand-strip 위 여백 */
.brand-story + .brand-strip {
  margin-top: clamp(120px, 18vh, 200px);
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--black); color: var(--white);
}
.brand-strip .c-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) clamp(32px, 4vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.bs-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.bs-title {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
}
.bs-title em { color: var(--green); font-style: normal; }
.bs-body {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.bs-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); background: var(--green);
  padding: 14px 28px; border-radius: 100px;
  transition: background 0.2s, gap 0.2s;
}
.bs-link:hover { background: #9fff33; gap: 16px; }

/* ── STATEMENT SECTION ── */
.section-statement {
  padding: clamp(60px, 8vh, 100px) clamp(32px, 5vw, 80px);
  max-width: clamp(640px, 70vw, 900px);
  margin: 0 auto;
  text-align: center;
}
.stmt-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 20px;
}
.stmt-title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: clamp(18px, 2.5vh, 28px);
}
.stmt-title em { color: var(--green); font-style: normal; }
.stmt-body {
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.8; color: #555;
}

/* ── PRODUCTS PAGE HERO ── */
/* 배경 이미지 버전 (brand) */
.page-hero--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: clamp(260px, 35vh, 420px);
  align-items: flex-end;
}
.page-hero.page-hero--bg { border-bottom: none; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 70%);
  pointer-events: none;
}
.page-hero--bg .ph-left { position: relative; z-index: 1; }
.page-hero--bg .ph-title { color: var(--white); }
.page-hero--bg .ph-sub   { color: rgba(255,255,255,0.65); }

.page-hero {
  padding: clamp(48px, 7vh, 90px) clamp(32px, 4vw, 80px);
  border-bottom: 1px solid var(--gray2);
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
}
.ph-left {}
.ph-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 14px;
}
.ph-title {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900; line-height: 0.88; letter-spacing: -0.04em;
  text-transform: uppercase;
}
.ph-sub {
  font-size: clamp(12px, 1vw, 14px); color: var(--mid);
  margin-top: clamp(14px, 2vh, 24px);
  letter-spacing: 0.04em;
}
.ph-right {
  text-align: right;
}
.ph-stat {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid);
}

/* ── BRAND PAGE label 컬러 (#7dff00) ── */
#brand-page .section-label {
  color: var(--green);
}

/* ── BRAND PAGE: ORIGIN section 위아래 여백 ── */
#brand-page .section-statement {
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

/* ── BRAND PAGE ── */
.brand-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 50vh, 560px);
  border-bottom: 1px solid var(--gray2);
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
}
.bh-img { overflow: hidden; background: var(--gray); }
.bh-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
/* 2장 세로 분할 */
.bh-img--duo { display: grid; grid-template-rows: 1fr 1fr; }
.bh-img--duo img { object-position: center center; }
.bh-content {
  padding: clamp(48px, 6vh, 80px) clamp(32px, 4vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black); color: var(--white);
}
.bh-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.bh-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.bh-title em { color: var(--green); font-style: normal; }
.bh-body {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65);
}

.brand-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
}
.bv-item {
  padding: 60px 48px;
  border-right: 1px solid var(--gray2);
}
.bv-item:last-child { border-right: none; }
.bv-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--mid); margin-bottom: 16px;
}
.bv-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 500; font-style: italic;
  letter-spacing: 0.01em; margin-bottom: 16px;
}
.bv-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; line-height: 1.75; color: #555;
}

/* ── BRAND STORY image hover overlay ── */
.bs-img--hover {
  position: relative;
}
.bs-img--hover .bs-img-main,
.bs-img--hover .bs-img-over {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: opacity 0.5s var(--ease);
}
.bs-img--hover .bs-img-main { opacity: 1; }
.bs-img--hover .bs-img-over { opacity: 0; }
.bs-img--hover:hover .bs-img-main { opacity: 0.25; }
.bs-img--hover:hover .bs-img-over { opacity: 1; }

.brand-story {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray2);
  max-width: var(--content-max);
  margin-left: auto; margin-right: auto;
  height: 500px;
  overflow: hidden;
}
.bs-img { background: var(--gray); overflow: hidden; height: 100%; }
.bs-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bs-text {
  padding: 48px 60px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.bs-text .section-label { margin-bottom: 16px; }
.bs-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 24px;
}
.bs-text p { font-size: 15px; line-height: 1.8; color: #555; }

/* ── DARK STRIP ── */
.dark-strip {
  background: var(--black); color: var(--white);
  border-top: 1px solid #222;
}
.dark-strip .c-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
}
.dark-strip p {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto 8px;
}
.dark-strip strong { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.5);
  border-top: 1px solid #222;
}
footer .c-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
footer .footer-cols {
  display: flex; gap: 60px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-brand p { font-size: 12px; line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}
.footer-bottom .c-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */

/* 1440px — 큰 노트북 / 외부 모니터 */
@media (max-width: 1440px) {
  .catalog-name { font-size: clamp(36px, 4.5vw, 72px); }
  .hero-title   { font-size: clamp(44px, 7vw, 96px); }
}

/* 1280px — 일반 노트북 */
@media (max-width: 1280px) {
  .catalog-row  { min-height: clamp(440px, 52vh, 580px); }
  .catalog-name { font-size: clamp(34px, 4vw, 64px); }
  .catalog-badge { margin-bottom: 28px; }
  .bv-item { padding: 48px 36px; }
  .bv-name { font-size: 20px; }
  .brand-story .bs-img img { padding: 0; }
}

/* 1024px — 태블릿 가로 / 소형 노트북 */
@media (max-width: 1024px) {
  .catalog-row { grid-template-columns: 50% 50%; }
  .catalog-name { font-size: clamp(30px, 3.5vw, 52px); }
  .catalog-desc { font-size: 13px; }
  .hero-title   { font-size: clamp(40px, 6.5vw, 80px); }
  .brand-hero   { min-height: clamp(360px, 44vh, 480px); }
  .bh-title     { font-size: clamp(22px, 3vw, 40px); }
  footer .c-wrap { padding: 48px 32px; gap: 28px; }
  .footer-bottom .c-wrap { padding: 16px 32px; }
}

/* ── 햄버거 메뉴 ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  margin-left: 12px;
  padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 드롭다운 */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
  z-index: 999;
  flex-direction: column;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray2);
  color: var(--black);
  transition: background 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { background: var(--gray); }

/* 900px — 태블릿 세로 */
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta    { display: inline-flex; font-size: 11px; padding: 7px 14px; margin-left: auto; }

  .catalog-row,
  .catalog-row.reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .catalog-info  { padding: 40px 28px; min-width: 0; }
  .catalog-name  { font-size: clamp(40px, 8vw, 64px); }

  .showcase { padding: 0 28px; }
  .sc-pb-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sc-pb-title { order: 1; }
  .sc-pb-product {
    order: 2;
    border-radius: 12px;
    height: auto;
  }
  .sc-pb-product img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
  .sc-pb-left {
    order: 3;
    height: clamp(280px, 50vh, 400px);
    border-radius: 12px;
  }
  .sc-pb-wide { height: clamp(240px, 40vh, 360px); border-radius: 12px; }
  .sc-veiled + .showcase-row,
  .sc-pb + .sc-pb { margin-top: 100px; }

  .section-header { padding: 48px 28px 36px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .brand-strip .c-wrap { grid-template-columns: 1fr; padding: 56px 28px; gap: 32px; }
  .brand-hero     { grid-template-columns: 1fr; }
  .brand-story    { grid-template-columns: 1fr; height: auto; direction: ltr; }
  .brand-story .bs-img { height: clamp(260px, 40vh, 360px); }
  .brand-story .bs-img--hover { position: relative; }
  .brand-values   { grid-template-columns: 1fr; }
  .bv-item        { border-right: none; border-bottom: 1px solid var(--gray2); padding: 40px 28px; }
  .page-hero      { padding: 48px 28px; flex-direction: column; gap: 20px; }
  .bh-content     { padding: 40px 28px; }
  footer .c-wrap  { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-bottom .c-wrap { padding: 14px 28px; flex-direction: column; gap: 8px; text-align: center; }
  .section-statement { padding: 56px 28px; max-width: 100%; }
  .bs-text        { padding: 40px 28px; }
  .dark-strip .c-wrap { padding: 48px 28px; }
  .hero-title     { font-size: clamp(40px, 10vw, 80px); }
}

/* 768px — 태블릿: 슬라이드별 인물 위치 최적화 */
@media (max-width: 768px) {
  .hero-slide:nth-child(1) { background-position: 42% center; }  /* 카멜레온 */
  .hero-slide:nth-child(2) { background-position: 62% center; }  /* 해변 인물 */
  .hero-slide:nth-child(3) { background-position: 57% center; }  /* 러너 */
}

/* 480px — 모바일 */
@media (max-width: 480px) {
  :root { --nav-h: 52px; }
  .nav-inner  { padding: 0 16px; }
  .nav-cta    { font-size: 10px; padding: 6px 10px; }

  /* 1. 로고 심볼만 표시 */
  .nav-logo img {
    content: url('../assets/logo-dark.png');
    height: 28px;
  }

  /* 2. 메인 배너: 슬라이드별 인물 위치 정밀 조정 */
  .hero { min-height: 480px; max-height: 700px; }
  .hero-slide:nth-child(1) { background-position: 40% center; }  /* 카멜레온 */
  .hero-slide:nth-child(2) { background-position: 64% center; }  /* 해변 인물 */
  .hero-slide:nth-child(3) { background-position: 55% center; }  /* 러너 */
  .hero-content { right: clamp(32px, 4vw, 60px); }
  .hero-title   { font-size: clamp(44px, 13vw, 64px); }
  .hero-sub     { font-size: 12px; }

  .catalog-info  { padding: 32px 20px; min-width: 0; }
  .catalog-name  { font-size: clamp(36px, 10vw, 52px); }
  .catalog-thumbs .catalog-thumb { width: 52px; height: 40px; padding: 4px; }
  .catalog-row + .catalog-row { margin-top: 40px; }
  .catalog-row   { overflow: hidden; }

  /* 3. section-header: View All 텍스트 숨기고 → 우측 배치 */
  .section-header {
    padding: 40px 20px 28px;
    flex-direction: row;
    align-items: center;
  }
  .section-title-lg { font-size: clamp(24px, 7vw, 36px); }
  .link-text { display: none; }
  .section-link { display: none; }

  /* 브랜드·프로덕트 배너 모바일 중앙 정렬 */
  .page-hero.page-hero--bg {
    min-height: 56vw;
    align-items: center;
    justify-content: center;
    background-position: center center;
  }
  .page-hero--bg .ph-left {
    text-align: left;
    width: 100%;
  }
  .page-hero--bg .ph-title {
    font-size: clamp(28px, 8vw, 44px);
  }
  .page-hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  }

  .showcase { padding: 0 20px; }
  .sc-pb-left { height: clamp(240px, 44vh, 340px); }
  .sc-pb-wide { height: clamp(200px, 36vh, 300px); margin-top: 10px; }
  .sc-veiled + .showcase-row,
  .sc-pb + .sc-pb { margin-top: 72px; }
  .showcase-name { font-size: clamp(32px, 9vw, 48px); }

  .brand-strip .c-wrap { padding: 48px 20px; }
  .bh-content,
  .bs-text,
  .page-hero     { padding: 36px 20px; }
  footer .c-wrap { padding: 36px 20px; }
  .footer-bottom .c-wrap { padding: 14px 20px; }
  .section-statement { padding: 48px 20px; }
  .stmt-title { font-size: clamp(32px, 9vw, 44px); }
  #brand-page .stmt-title { font-size: clamp(20px, 5.5vw, 28px); }
  .dark-strip .c-wrap { padding: 40px 20px; }
  .bv-item       { padding: 32px 20px; }
  .brand-story .bs-img img { padding: 0; }
  .brand-story + .brand-story { margin-top: 48px; }
}

/* ════════════════════════════════════════
   MILITARY TRUST SECTION (IDENTITY)
   ════════════════════════════════════════ */
.mil-trust {
  background: #080808;
  color: var(--white);
  border-top: 1px solid #1a1a1a;
}
.mil-trust-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(72px,10vh,128px) clamp(32px,4vw,80px);
}
.mil-trust-header {
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: clamp(40px,6vh,64px);
  margin-bottom: clamp(40px,6vh,64px);
}
.mil-trust-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.mil-trust-title {
  font-size: clamp(30px,4.5vw,60px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  max-width: 720px;
}
.mil-trust-title em { color: var(--green); font-style: normal; }
.mil-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px,3vw,48px);
  border-bottom: 1px solid var(--gray2);
  padding-bottom: clamp(48px,7vh,80px);
  margin-top: clamp(40px,6vh,64px);
  margin-bottom: clamp(40px,6vh,64px);
  text-align: left;
}
.mil-cred-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.25);
  margin-bottom: 14px;
}
.mil-cred-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}
.mil-cred-desc {
  font-size: 14px; line-height: 1.85;
  color: rgba(0,0,0,0.55);
}
.mil-trust-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,4vw,64px);
  text-align: left;
}
.mil-trust-body p {
  font-size: 15px; line-height: 1.85;
  color: rgba(0,0,0,0.6);
}
.tech-statement {
  max-width: clamp(720px,80vw,1100px);
}
@media (max-width: 900px) {
  .mil-trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .mil-trust-body { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .mil-trust-inner { padding: 48px 20px; }
}
