/* ============================================================
   STYLE.CSS — Kim Min Young · AI Marketing Expert
   Design principle: Readability 100% + Fashion Tone 30%
   Grid: 12-column, max-width 1200px
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Colors */
  --black:       #000000;
  --white:       #FFFFFF;
  --off-white:   #F8F8F5;
  --gray-50:     #FAFAF8;
  --gray-100:    #F2F2EF;
  --gray-200:    #E5E5E0;
  --gray-300:    #CCCCCC;
  --gray-400:    #999999;
  --gray-500:    #666666;
  --gray-700:    #333333;
  --yellow:      #FFD600;
  --yellow-dark: #E6C200;
  --purple:      #5B3FFF;
  --purple-light:#7B62FF;
  --dark-bg:     #0A0A0A;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-cormorant: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;

  /* Layout */
  --max-width:   1200px;
  --container-pad: clamp(20px, 4vw, 60px);
  --section-gap: clamp(80px, 10vw, 120px);
  --grid-gap:    24px;

  /* Animation */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --duration:    0.6s;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------
   3. CUSTOM CURSOR
   ---------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.15s var(--ease-out), height 0.15s var(--ease-out), border-color 0.2s;
}

.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--purple);
}

.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--purple);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ----------------------------------------------------------
   4. SCROLL PROGRESS
   ---------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  z-index: 9997;
  transition: width 0.1s;
}

/* ----------------------------------------------------------
   5. LAYOUT — Container & Grid
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ----------------------------------------------------------
   6. SECTION COMMON
   ---------------------------------------------------------- */
section {
  padding: var(--section-gap) 0;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  text-transform: uppercase;
  white-space: nowrap;
}

.section-label-row--light .section-label {
  color: var(--gray-400);
}

.section-rule {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.section-rule--light {
  background: rgba(255,255,255,0.15);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 48px;
}

.section-heading em {
  font-style: italic;
  color: var(--purple);
}

.section-heading--light {
  color: var(--white);
}

.section-heading--light em {
  color: var(--yellow);
}

/* Fade-in on scroll */
.fade-in-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── Nav Logo — Vogue Editorial Brand Signature ── */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  padding: 2px 0;
  border-left: 2px solid var(--black);
  padding-left: 12px;
  transition: border-color 0.25s;
}
.nav-logo:hover {
  border-color: var(--accent);
}

/* 한글 이름 — Playfair Display, Serif, Bold, 크게 */
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* 영문 병기 — Inter, 극소, 넓은 자간 */
.logo-en {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gray-400, #aaa);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

/* 직함 — Inter, Bold, 넓은 자간, 프리미엄 라벨 */
.logo-title {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.nav-link.nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 8px 18px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-link.nav-cta:hover {
  background: var(--yellow-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 48px var(--container-pad);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-link {
  display: block;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--yellow);
}

/* ----------------------------------------------------------
   8. HERO — Bazaar Cover Style (Left 6col text / Right 6col image)
   ---------------------------------------------------------- */

/* Outer section: no top padding — cover goes edge-to-edge vertically */
.s-hero {
  padding-top: 68px; /* nav height only */
  padding-bottom: 0;
  background: var(--white);
  overflow: hidden;
}

/* Two-column cover grid */
.hero-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  overflow: visible; /* 텍스트 겹침 허용 */
}

/* ── LEFT column ── */
.hero-cover-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 3vw, 48px) clamp(48px, 7vw, 96px) 0;
  position: relative;
  z-index: 2;
  overflow: visible; /* YOUR BRAND 텍스트가 오른쪽 이미지 위로 겹칠 수 있도록 */
}

/* Vol label */
.hero-vol {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 32px;
}

.h-line {
  display: block;
  font-style: normal;
}

/* "AI WILL" & "CHOOSE" — deep black bold serif */
.h-line--black {
  color: var(--black);
  font-weight: 900;
  font-style: normal;
}

/* "YOUR BRAND" — purple italic, one line, overlaps image */
.h-line--purple {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.02em;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  /* 오른쪽으로 뻗어 이미지 컬럼에 자연스럽게 겹침 */
  width: max-content;
}

/* Byline block */
.hero-byline {
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.hero-name {
  font-family: var(--font-cormorant);
  font-size: 1.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.hero-name em {
  font-style: italic; /* Cormorant italic — 우아한 필기 느낌 */
}

.hero-title-line {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-career {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* KPI strip (4 items) */
.hero-kpi-strip {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.hk-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 20px;
}

.hk-num {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.hk-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  text-transform: uppercase;
  white-space: nowrap;
}

.hk-sep {
  width: 1px;
  background: var(--gray-200);
  margin: 0 20px 0 0;
  align-self: stretch;
  flex-shrink: 0;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── RIGHT column: circle-cropped profile (Bazaar style) ── */
.hero-cover-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 왼쪽 정렬 */
  padding-left: 0;             /* 이미지를 컬럼 왼쪽으로 당기기 */
  overflow: visible;           /* circle can bleed slightly left */
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ── Circle crop container (Bazaar cover feel) ── */
.hero-circle-wrap {
  position: relative;
  width: clamp(320px, 42vw, 540px);
  height: clamp(320px, 42vw, 540px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  /* 왼쪽으로 살짝 이동 — 컬럼 경계를 살짝 넘어 좌측 텍스트와 접점 생성 */
  margin-left: clamp(-40px, -4vw, -20px);
  background: transparent;
  /* 옅은 옐로 테두리로 바자 커버 액센트 */
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.35);
}

.hero-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%; /* 상체+얼굴 중심 */
  display: block;
  background: transparent;
}

/* ── Shared Button Styles ── */
.btn-primary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* ── Hero Ticker ── */
.hero-ticker {
  overflow: hidden;
  background: var(--black);
  padding: 13px 0;
  width: 100%;
  max-width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 18px;
}

.ticker-track .tick-dot {
  color: var(--yellow);
  padding: 0 2px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   9. PROFILE — Fashion Editorial
   ---------------------------------------------------------- */
.s-profile {
  background: var(--off-white);
}

/* ── 2-column grid ── */
.profile-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;   /* 이미지를 살짝 좁게 — 텍스트에 공간 */
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

/* ── LEFT: Portrait ── */
.profile-figure {
  position: sticky;
  top: calc(68px + 32px);           /* nav 아래 고정 — 스크롤 시 텍스트가 흘러도 사진 유지 */
}

.profile-img {
  width: 100%;
  aspect-ratio: 3 / 4;              /* 상반신 중심 세로형 */
  object-fit: cover;
  object-position: center 15%;     /* 얼굴·상반신 중심 크롭 */
  display: block;
}

.profile-fig-cap {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* ── RIGHT: Editorial content ── */
.profile-bio-col {
  padding-top: 4px;
}

/* ── ROW 1: Full-width Pull Quote ── */
.profile-quote-row {
  margin-bottom: 48px;
}

.profile-full-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  word-break: keep-all;
}

.profile-full-quote em {
  font-style: italic;
  color: var(--purple);
}

/* Accent rule — yellow line */
.profile-accent-rule {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 0;
}
  letter-spacing: -0.005em;
}

/* 3. BODY — 2개 문단 */
.profile-body {
  display: flex;
  flex-direction: column;
  gap: 22px;                        /* 문단 간 여백 확대 */
  margin-bottom: 48px;
}

.profile-body p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.85;                /* 넉넉한 줄 간격 */
  color: var(--gray-700);
}

/* 4. CAREER */
.career-list-heading {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.career-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.career-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;                  /* 간격 확대 12px → 18px */
  border-bottom: 1px solid var(--gray-200);
}

.career-co {
  font-family: var(--font-sans);
  font-size: 0.9375rem;             /* 조금 더 크게 */
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.career-role {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-500);
  text-align: right;
  flex: 1;
}

.career-item.current .career-co {
  color: var(--purple);
  font-weight: 700;
}

.career-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 12px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   10. EXPERTISE
   ---------------------------------------------------------- */
.s-expertise {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.ex-card {
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.ex-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.ex-card--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.ex-card--dark:hover {
  border-color: var(--yellow);
}

.ex-num {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-400);
}

.ex-card--dark .ex-num {
  color: var(--gray-500);
}

.ex-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.ex-card--dark .ex-title {
  color: var(--white);
}

.ex-subtitle {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: -8px;
}

.ex-card--dark .ex-subtitle {
  color: var(--gray-500);
}

.ex-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--gray-700);
  flex: 1;
  word-break: keep-all;
}

.ex-card--dark .ex-desc {
  color: rgba(255,255,255,0.7);
}

.ex-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ex-tags li {
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
}

.ex-card--dark .ex-tags li {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

/* ----------------------------------------------------------
   11. QUOTE BLOCK
   ---------------------------------------------------------- */
.s-quote {
  background: var(--dark-bg);
  padding: clamp(80px, 10vw, 120px) 0;
}

.quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad);
}

.quote-accent-line {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.quote-main {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 40px;
}

.quote-br {
  display: none;
}

@media (max-width: 640px) {
  .quote-br { display: block; }
}

.quote-cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* ----------------------------------------------------------
   12. CASE STUDIES  (v3 — 6 equal image cards)
   ---------------------------------------------------------- */
.s-cases {
  background: var(--off-white, #F8F8F5);
}

.cases-header {
  margin-bottom: 56px;
}

.cases-intro {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: -24px;
}

/* ── 6-CARD EQUAL GRID ── */
.cases-equal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;                        /* magazine bleed feel */
}

/* ── SINGLE CARD ── */
.ceq-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  cursor: default;
}

/* image wrapper — fixed 4:5 portrait ratio for all cards */
.ceq-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ceq-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* hover zoom */
.ceq-card:hover .ceq-img {
  transform: scale(1.06);
}

/* dark gradient overlay — always present, deepens on hover */
.ceq-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.72) 100%
  );
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.ceq-card:hover .ceq-img-wrap::after {
  opacity: 1.3;                    /* clamp browser-side */
}

/* ── LABEL STRIP ── */
.ceq-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.ceq-num {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding-bottom: 2px;             /* baseline-align with title */
  flex-shrink: 0;
}

.ceq-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  /* subtle text shadow for legibility over any image */
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* hover: title slides up slightly */
.ceq-label {
  transition: transform 0.35s ease;
}
.ceq-card:hover .ceq-label {
  transform: translateY(-4px);
}

/* shared util (kept from prev version) */
.case-category {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--purple);
  text-transform: uppercase;
}
.result-highlight {
  color: var(--purple);
  font-weight: 600;
}

/* ----------------------------------------------------------
   12b. RESPONSIVE — cases-equal-grid
   ---------------------------------------------------------- */
/* 1024px: keep 3-col */
@media (max-width: 1024px) {
  .cases-equal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ceq-title {
    font-size: 0.9375rem;
  }
}

/* 768px: 2-col */
@media (max-width: 768px) {
  .cases-equal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceq-img-wrap {
    aspect-ratio: 3 / 4;
  }
}

/* 480px: 1-col */
@media (max-width: 480px) {
  .cases-equal-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .ceq-img-wrap {
    aspect-ratio: 4 / 3;          /* landscape on mobile = less scroll */
  }
  .ceq-title {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------
   13. INSIGHTS
   ---------------------------------------------------------- */
.s-insights {
  background: var(--white);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}

.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Featured Article */
.insight-featured {
  background: var(--off-white);
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid var(--yellow);
}

.if-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.if-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 16px;
}

.if-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.if-title a:hover {
  color: var(--purple);
}

.if-summary {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 720px;
  margin-bottom: 20px;
}

.if-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--purple);
  border-left: 3px solid var(--purple);
  padding-left: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Insight Platform Badges */
.insight-platform {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-dbr      { background: #003087; color: #fff; }
.platform-brunch   { background: #00C73C; color: #fff; }
.platform-blog     { background: #03C75A; color: #fff; }
.platform-linkedin { background: #0A66C2; color: #fff; }
.platform-news     { background: var(--gray-700); color: #fff; }

.insight-date {
  font-size: 0.6875rem;
  color: var(--gray-400);
  font-weight: 400;
}

.insight-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.insight-link:hover {
  color: var(--purple);
  border-color: var(--purple);
}

/* Article Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.insight-card {
  padding: 24px 24px 20px;
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s, border-top-color 0.2s;
}

.insight-card:hover {
  border-color: var(--gray-300);
  border-top-color: var(--purple);
  transform: translateY(-2px);
}

.insight-card[style*="display: none"] {
  display: none !important;
}

.ic-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ic-outlet {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.ic-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--black);
  flex: 1;
}

.ic-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.ic-title a:hover {
  color: var(--purple);
}

.ic-summary {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--gray-500);
  flex: 1;
  /* 3줄 말줄임 */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 카드 하단 링크 배치 */
.insight-card .insight-link {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  border-bottom: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   14. PRESS
   ---------------------------------------------------------- */
.s-press {
  background: var(--gray-50);
}

.press-layout {
  display: block;
  max-width: 860px;
}

/* ── 좌측 컬럼: 이미지 + 리스트 스택 ── */
.press-featured-img-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.press-figure {
  position: static;
  margin-bottom: 0;
}

/* ── 포토 스트립: 3장 가로 배치 ── */
.press-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 40px;
  align-items: stretch;
}

.press-photo-item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.press-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

/* 1번: Q-terview 인터뷰 사진 (정사각형에 가까운 비율) */
.press-photo-item--fn {
  aspect-ratio: 3 / 4;
}
.press-photo-item--fn .press-strip-img {
  object-position: center top;
}
.press-photo-item--fn:hover .press-strip-img {
  transform: scale(1.04);
}

/* 2번: 파이낸셜뉴스 포럼 강연 사진 (가로형) */
.press-photo-item--bloter {
  aspect-ratio: 3 / 4;
}
.press-photo-item--bloter .press-strip-img {
  object-position: center 20%;
}
.press-photo-item--bloter:hover .press-strip-img {
  transform: scale(1.04);
}

/* 3번: GrowStack 2024 세로형 사진 */
.press-photo-item--gs {
  aspect-ratio: 3 / 4;
}
.press-photo-item--gs .press-strip-img {
  object-position: center top;
}
.press-photo-item--gs:hover .press-strip-img {
  transform: scale(1.04);
}

/* GrowStack: 가로형 실제 사진 */
.press-photo-item--gs {
  aspect-ratio: 3 / 4;
}
.press-photo-item--gs .press-strip-img {
  object-position: center center;
}

.press-photo-item:hover .press-strip-img {
  transform: scale(1.04);
}

/* ── 우측 컬럼: 이미지 카드 3개 ── */
.press-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(68px + 32px);
}

/* 이미지 카드 */
.press-img-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.press-img-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pic-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
}

.pic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.press-img-card:hover .pic-img {
  transform: scale(1.05);
}

.pic-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pic-outlet {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}

.pic-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pic-link-label {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.press-feat-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.press-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.press-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.press-outlet {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--purple);
  text-transform: uppercase;
}

.press-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
}

.press-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.press-title a:hover {
  color: var(--purple);
}

.press-summary {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.press-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
  align-self: flex-start;
}

.press-link:hover {
  color: var(--purple);
}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
   14-b. FAQ SECTION
   ---------------------------------------------------------- */
.s-faq {
  background: var(--white);
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--gray-100);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}

.faq-q {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.faq-q::before {
  content: "Q. ";
  color: var(--accent);
  font-weight: 800;
}

.faq-a {
  font-size: clamp(.875rem, 1.8vw, .9375rem);
  color: var(--gray-600, #555);
  line-height: 1.8;
  max-width: 780px;
}

@media (max-width: 768px) {
  .faq-item { padding: 22px 0; }
  .faq-q { font-size: .9375rem; }
  .faq-a { font-size: .875rem; }
}

/* ==========================================================
   FAQ — Vogue Magazine Style (Dark / Contact 섹션 내부)
   ========================================================== */

/* 섹션 래퍼 */
.contact-faq {
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-faq .section-heading {
  color: var(--white);
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* 리스트 컨테이너 — 구분선 제거, 순수 spacing 구조 */
.faq-list--dark {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: none;
}

/* 각 FAQ 항목 — 좌측 포인트 라인 + 넉넉한 여백 */
.faq-item--dark {
  position: relative;
  padding: clamp(36px, 5vw, 56px) 0 clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  border-bottom: none;
}

/* 좌측 골드 포인트 라인 */
.faq-item--dark::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(36px, 5vw, 56px);
  bottom: clamp(36px, 5vw, 56px);
  width: 2px;
  background: var(--accent);
  opacity: 0.6;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.faq-item--dark:hover::before {
  opacity: 1;
  width: 3px;
}

/* 항목 사이 미세 구분선 */
.faq-item--dark + .faq-item--dark {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* 질문 — Playfair Display Serif, 타이틀 형태 */
.faq-q--dark {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.625rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: clamp(16px, 2vw, 24px);
}

/* "Q." 프리픽스 완전 제거 — dark 변형에서 override */
.faq-item--dark .faq-q--dark::before {
  display: none;
  content: none;
}

/* 답변 래퍼 */
.faq-a--dark {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 강조 문장 — 골드 컬러, 약간 큰 사이즈 */
.faq-a--dark .faq-highlight {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* 본문 단락 — Inter Sans, 서브듀드 컬러 */
.faq-a--dark p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin: 0;
}

/* 이메일 링크 */
.faq-mailto {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.faq-mailto:hover {
  color: #fff;
}

/* 반응형 */
@media (max-width: 768px) {
  .faq-item--dark {
    padding-left: 20px;
  }
  .faq-q--dark {
    font-size: 1.125rem;
  }
  .faq-a--dark .faq-highlight {
    font-size: 0.9375rem;
  }
  .faq-a--dark p {
    font-size: 0.875rem;
  }
}

/* ----------------------------------------------------------
   15. CONTACT
   ---------------------------------------------------------- */
.s-contact {
  background: #0A0A0A;
  padding: var(--section-gap) 0;
}

.s-contact .section-label {
  color: rgba(255,255,255,0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.contact-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

.cs-icon {
  color: var(--yellow);
  font-weight: 700;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.contact-email:hover {
  opacity: 0.8;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-social a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-social a:hover {
  color: var(--white);
}

.contact-social span {
  color: rgba(255,255,255,0.2);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.07);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-msg--success {
  background: #f0faf4;
  border: 1px solid #4caf7d;
  color: #1e6e42;
}

.form-msg--error {
  background: #fff5f5;
  border: 1px solid #e57373;
  color: #b71c1c;
}

/* ----------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .hero-cover {
    padding: 0 clamp(16px, 3vw, 40px);
  }

  .hk-num {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* cases-equal-grid: 반응형은 자체 블록에서 처리 */

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --grid-gap: 20px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero — stack to single column on mobile */
  .hero-cover {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 var(--container-pad);
  }

  .hero-cover-left {
    padding: 40px 0 32px;
    order: 1;
  }

  .hero-cover-right {
    order: 0;
    height: auto;
    min-height: 0;
    justify-content: center;
    padding: 40px 0 0;
  }

  .hero-img-wrap {
    min-height: 0;
    height: auto;
    justify-content: center;
  }

  .hero-circle-wrap {
    width: clamp(220px, 70vw, 320px);
    height: clamp(220px, 70vw, 320px);
    margin-left: 0; /* 모바일은 중앙 */
  }

  .hero-kpi-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hk-sep {
    display: none;
  }

  .hk-item {
    padding-right: 16px;
  }

  /* Profile */
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-figure {
    position: static;              /* 모바일에서 sticky 해제 */
  }

  .profile-img {
    max-width: 100%;
    aspect-ratio: 3 / 4;
    object-position: center 15%;
  }

  .profile-full-quote {
    font-size: clamp(1.0625rem, 4.5vw, 1.375rem);
  }

  /* Expertise */
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Insights */
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-featured {
    padding: 28px;
  }

  /* Press */
  .press-layout {
    grid-template-columns: 1fr;
  }

  /* Press — responsive */
  .press-photo-strip {
    gap: 6px;
    margin-bottom: 28px;
  }

  .press-strip-img {
    aspect-ratio: 4 / 5;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    order: -1;
  }

  .footer-right {
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --section-gap: 60px;
    --grid-gap: 16px;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .section-heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-kpi-strip {
    flex-wrap: wrap;
    gap: 6px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* cases-equal-grid 480px → 1col (자체 블록에서 처리) */

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .case-results {
    flex-wrap: wrap;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.6875rem;
  }

  .hero-aside {
    padding: 0;
  }

  .career-item {
    flex-wrap: wrap;
    gap: 4px;
  }

  .career-role {
    width: 100%;
  }
}

/* ============================================================
   ACCESSIBILITY & PRINT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in-section {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    animation: none;
  }
}

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

::selection {
  background: var(--yellow);
  color: var(--black);
}
