/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888888;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --accent: #c8a96e;
  --font-en: 'Inter', 'Bebas Neue', sans-serif;
  --font-ko: 'Noto Sans KR', sans-serif;
  --header-h: 72px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ko);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

address {
  font-style: normal;
}

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 100px 0;
}

.bg-light { background: var(--light-gray); }
.bg-dark  { background: var(--dark); }

.label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.label.light { color: var(--accent); }

.section-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-more {
  text-align: center;
  margin-top: 48px;
}

.text-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.text-link:hover { opacity: 0.5; }

.outline-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid var(--dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.outline-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.white-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.white-btn:hover { opacity: 0.85; }

.outline-white-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.outline-white-btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===========================
   HEADER
=========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
#header.scrolled {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* 다크 히어로 위 헤더: 투명일 때 흰 텍스트 */
.has-dark-hero #header:not(.scrolled) .gnb-link,
.has-dark-hero #header:not(.scrolled) .social-link { color: rgba(255,255,255,0.9); }
.has-dark-hero #header:not(.scrolled) .gnb-link:hover { color: var(--accent); }
.has-dark-hero #header:not(.scrolled) .hamburger span { background: #fff; }
/* 다크 히어로: 로고 이미지 밝게 */
.has-dark-hero #header:not(.scrolled) .site-logo { filter: brightness(0) invert(1); }

/* 스크롤 후: 원래 색 복원 */
#header.scrolled .gnb-link   { color: var(--dark); }
#header.scrolled .social-link { color: var(--dark); }
#header.scrolled .hamburger span { background: var(--dark); }
#header.scrolled .site-logo  { filter: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* 왼쪽 그룹: 로고 + 소셜 */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* 로고 이미지 */
.logo-img-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}

/* GNB — 오른쪽 정렬 */
.gnb { display: flex; align-items: center; }

.gnb-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.gnb-item {
  position: relative;
}

.gnb-link {
  display: block;
  padding: 0 28px;
  height: var(--header-h);
  line-height: var(--header-h);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  white-space: nowrap;
}
.gnb-link:hover { color: var(--accent); }
.gnb-link.active-nav { color: var(--accent); }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 2px solid var(--dark);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.gnb-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 13px 22px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: all var(--transition);
  white-space: nowrap;
}
.sub-menu li a:hover {
  background: var(--light-gray);
  color: var(--accent);
}

/* Header Social (로고 옆) */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--dark);
  transition: color var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   MOBILE NAV
=========================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--white);
  z-index: 1200;
  padding: 80px 32px 40px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { right: 0; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark);
}

.mobile-gnb { display: flex; flex-direction: column; gap: 0; }

.mobile-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mobile-item > a,
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
}

.arrow { font-size: 18px; line-height: 1; transition: transform var(--transition); }
.mobile-toggle.open .arrow { transform: rotate(45deg); }

.mobile-sub {
  display: none;
  padding: 0 0 12px 16px;
}
.mobile-sub.open { display: block; }

.mobile-sub li a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.mobile-sub li a:hover { color: var(--dark); }

/* ===========================
   HERO — VIDEO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0a0a;
}

/* 비디오 래퍼 */
.hero-video-wrap {
  position: absolute;
  inset: 0;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 영상 없을 때 폴백 배경 */
.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  /* 영상 업로드 후 display:none 추가하거나 제거 */
}

/* 영상이 있으면 폴백 숨김 */
#heroVideo:not([src=""]) + .hero-fallback,
#heroVideo[src] + .hero-fallback { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

/* 로고 워터마크 */
.hero-brand-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Bebas Neue', var(--font-en);
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero-brand-mark .logo-m { color: rgba(200,169,110,0.1); }

/* 스크롤 인디케이터 */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  order: -1;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9;  transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   INTRO / ABOUT
=========================== */
.intro {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
}

/* 우측 배경 이미지 */
.intro-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}

/* 이미지 → 흰색으로 페이드 (좌측) */
.intro-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, #fff 0%, #fff 25%, rgba(255,255,255,0) 65%);
}

/* 콘텐츠 */
.intro-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 620px;
}

.intro-text-block {
  max-width: 520px;
}
.intro-text-block .label { margin-bottom: 20px; display: block; }

.intro-heading {
  font-family: 'Bebas Neue', var(--font-en);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 28px;
}

.intro-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 32px;
  word-break: keep-all;
}

/* 통계 행 */
.intro-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 36px;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 40px 0 0;
}
.intro-stat:first-child { padding-left: 0; }

.intro-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.1);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ===========================
   INTRO / ABOUT
=========================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-title { margin-bottom: 20px; }
.intro-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.stat-num .plus {
  font-size: 0.6em;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ===========================
   MODEL SECTION
=========================== */
.tab-btns {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: inline-flex;
  margin-top: 24px;
}

.tab-btn {
  padding: 10px 32px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: all var(--transition);
  position: relative;
}
.tab-btn + .tab-btn { border-left: 1.5px solid rgba(0,0,0,0.15); }
.tab-btn.active,
.tab-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.model-tab { display: none; }
.model-tab.active { display: block; }

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.model-card {
  cursor: pointer;
}

.model-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #eee;
}

.model-img-wrap img {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.model-card:hover .model-img-wrap img {
  transform: scale(1.04);
}

.model-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
}

.model-id {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.model-name {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Placeholder for missing images */
.model-img-wrap::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  z-index: 0;
}
.model-img-wrap img { position: relative; z-index: 1; }

/* ===========================
   INSTAGRAM SECTION
=========================== */
.instagram-sec { background: #fff; }

/* 헤더 영역 */
.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.ig-header-left { display: flex; flex-direction: column; }
.ig-header .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0;
}
.ig-logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--dark);
}

/* 팔로우 버튼 */
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1.5px solid var(--dark);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--dark);
  text-decoration: none;
  transition: background .22s, color .22s;
  white-space: nowrap;
}
.ig-follow-btn svg { width: 17px; height: 17px; }
.ig-follow-btn:hover {
  background: var(--dark);
  color: #fff;
}
.ig-follow-btn:hover svg { stroke: #fff; }

/* 그리드 */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

/* 개별 피드 아이템 */
.ig-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #e8e4de;
  cursor: pointer;
  text-decoration: none;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.ig-item:hover img { transform: scale(1.06); }

/* 오버레이 */
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .28s ease;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay svg { width: 30px; height: 30px; }
.ig-overlay-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 8px;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* 이미지 없는 셀 */
.ig-no-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  display: flex; align-items: center; justify-content: center;
}
.ig-no-thumb svg { width: 36px; height: 36px; opacity: .4; }

/* 로딩 스켈레톤 */
.ig-placeholder-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #ece8e2 0%, #f5f2ee 50%, #ece8e2 100%);
  background-size: 200%;
  animation: igShimmer 1.4s ease-in-out infinite;
}
@keyframes igShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 더 보기 링크 */
.ig-view-more {
  text-align: center;
  margin-top: 28px;
}

/* 반응형 */
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .ig-placeholder-row { grid-template-columns: repeat(4, 1fr); }
  .ig-placeholder-row .ig-skeleton:nth-child(n+5) { display: none; }
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .ig-placeholder-row { grid-template-columns: repeat(3, 1fr); }
  .ig-placeholder-row .ig-skeleton:nth-child(n+4) { display: none; }
  .ig-header { flex-direction: column; align-items: flex-start; }
  .ig-header .section-title { font-size: 1.2rem; }
}

/* 기존 light-text / feature-list 유지 (다른 페이지에서 사용 중일 수 있음) */
.light-text {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.feature-list { list-style: none; margin-bottom: 40px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 14px; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-list li::before {
  content: ''; display: block; width: 20px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}

/* ===========================
   WORKS SECTION
=========================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card.large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.work-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #eee;
}

.work-card.large .work-img-wrap { min-height: 100%; aspect-ratio: auto; }
.work-card:not(.large) .work-img-wrap { aspect-ratio: 4/3; }

.work-img-wrap img { transition: transform 0.5s ease; }
.work-card:hover .work-img-wrap img { transform: scale(1.05); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }

.work-brand {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}

.work-type {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
}

/* Work card image placeholder */
.work-img-wrap::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ddd, #c5c5c5);
}
.work-img-wrap img { position: relative; }

/* ===========================
   CTA SECTION — 배경 이미지
=========================== */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

/* 배경 이미지 */
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.cta:hover .cta-bg { transform: scale(1.0); }

/* 다크 오버레이 */
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 15, 0.82) 0%,
    rgba(10, 16, 28, 0.70) 100%
  );
}

.cta .container { position: relative; z-index: 2; }

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-title { margin-bottom: 20px; }
.cta-inner .light-text { margin-bottom: 40px; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   NEWS SECTION
=========================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  transition: transform var(--transition);
}
.news-card:hover { transform: translateY(-4px); }

.news-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd;
  position: relative;
}
.news-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e5e5e5, #ccc);
}
.news-img-wrap img { position: relative; transition: transform 0.5s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.04); }

.news-body {
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

.news-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===========================
   FOOTER
=========================== */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  font-family: 'Bebas Neue', var(--font-en);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-m {
  color: var(--accent);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--white);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-nav h4 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--white); }

.footer-info h4 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-info address p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.family-sites {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.family-sites span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.family-sites a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.family-sites a:hover { color: var(--white); }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }

  .header-inner { padding: 0 28px; }
  .gnb-link { padding: 0 18px; font-size: 13px; }
  .site-logo { height: 52px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-info { grid-column: 1 / -1; }

  /* intro responsive */
  .intro-bg-img { width: 48%; }
  .intro-bg-gradient { width: 68%; }
  .model-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .gnb { display: none; }
  .header-social { display: none; }  /* 모바일: 소셜 숨김 */
  .header-inner { padding: 0 20px; }
  .site-logo { height: 44px; }
  .hamburger { display: flex; }

  /* 다크 히어로 페이지에서 헤더 영역에 항상 어두운 그라디언트를 깔아
     hero 영상이 안 떠도 햄버거/로고가 항상 보이도록 보장 */
  .has-dark-hero #header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  /* hero 모바일 */
  .hero-brand-mark { font-size: clamp(3.5rem, 18vw, 7rem); }
  .hero-scroll-indicator { display: none; }

  /* intro 모바일 — 배경 이미지 숨기고 단순화 */
  .intro-bg-img { width: 100%; opacity: 0.12; }
  .intro-bg-gradient {
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.95) 60%);
  }
  .intro-inner { padding-top: 72px; padding-bottom: 60px; min-height: auto; }
  .intro-text-block { max-width: 100%; }
  .intro-heading { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .intro-desc br { display: none; }
  .intro-stats-row { gap: 0; flex-wrap: wrap; }
  .intro-stat { padding: 0 24px 0 0; }
  .intro-stat-divider { margin: 0 24px 0 0; }

  .model-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .work-card.large .work-img-wrap { aspect-ratio: 16/9; }

  .footer-top { padding: 56px 0 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-brand p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social { justify-content: center; }
  .footer-info { grid-column: 1 / -1; }

  .footer-bottom { padding: 20px 0; }
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .family-sites {
    justify-content: center;
    gap: 14px;
    row-gap: 6px;
  }

  .cta { padding: 80px 0; }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  /* 두 버튼 폭 동일하게 — 밸런스 맞춤 */
  .cta-btns .white-btn,
  .cta-btns .outline-white-btn {
    width: 100%;
    max-width: 280px;
    min-width: 220px;
    padding: 16px 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .cta-inner .light-text { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .model-grid { gap: 10px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card.large .work-img-wrap { aspect-ratio: 3/4; }

  /* footer 480 — 2x2 nav 유지, 폰트/여백 타이트하게 */
  .footer-top { padding: 48px 0 32px; }
  .footer-grid { gap: 28px 16px; }
  .footer-nav h4,
  .footer-info h4 { margin-bottom: 14px; font-size: 11px; }
  .footer-nav ul { gap: 8px; }
  .footer-nav ul li a { font-size: 12px; }
  .footer-info address p { font-size: 12px; line-height: 1.8; }
  .copyright { font-size: 10px; }
  .family-sites span,
  .family-sites a { font-size: 11px; }
}
