@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Noto+Serif+KR:wght@300;700&display=swap');

:root {
  --ink: #111111;
  --ink-light: #1A1A1A;
  --ink-muted: rgba(17, 17, 17, 0.6);
  --cream: #F9F8F6;
  --accent: #FF2E2E;
  --accent-muted: #E01A1A;
  --border: rgba(17, 17, 17, 0.08);
  --white: #FFFFFF;
  --transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ─── FLOATING NAV ─── */
nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  min-width: 380px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
  opacity: 0.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 1; }
.nav-cta { color: var(--accent) !important; opacity: 1 !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--ink));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 10vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 700;
  margin-left: 0.4em;
}

.hero-footer {
  position: absolute;
  bottom: 80px;
  left: 8%;
  right: 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
}

.hero-desc {
  font-size: 16px;
  max-width: 400px;
  color: rgba(255,255,255,0.4);
}

.hero-scroll {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* ─── PROFILE ─── */
.profile-section {
  padding: 240px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.profile-photo-container { padding-left: 8%; }

.profile-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1.2s;
}

.profile-photo-wrap:hover .profile-photo { transform: scale(1.05); }

.profile-text { padding: 0 12% 0 10%; }

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 100px);
  line-height: 0.9;
  margin-bottom: 40px;
}

.profile-bio {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  line-height: 2;
  color: var(--ink-light);
}

/* ─── PHILOSOPHY ─── */
.statement-section {
  padding: 200px 8%;
  background: var(--ink);
  color: var(--white);
  border-radius: 80px 80px 0 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.statement-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 60px;
  display: block;
}

.statement-question-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.25;
  margin-bottom: 80px;
}

.statement-question-text em {
  font-style: italic;
  color: var(--accent);
}

/* ─── VIDEO REEL (Large & Sharp) ─── */
.statement-video-wrap {
  width: 100%;
  max-width: 1200px; /* 대화면 대응 */
  margin: 100px auto;
  border-radius: 0; /* 직각 모서리 */
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.5);
}

.video-reel {
  position: relative;
  width: 100%;
  background: #000;
}

.reel-video {
  width: 100%;
  height: auto;
  object-fit: cover; /* 시원하게 채움 */
  display: block;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 240px 8%;
  background: var(--white);
}

.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 300px 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
}

.service-item:hover { padding-left: 24px; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--accent);
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 56px);
}

.service-arrow { text-align: right; opacity: 0.2; transition: 0.4s; }
.service-item:hover .service-arrow { opacity: 1; transform: translateX(12px); }

/* ─── MANIFESTO ─── */
.manifesto-section {
  padding: 240px 8%;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.manifesto-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.3;
}

/* ─── PROCESS (STIKY) ─── */
.about-section { padding: 240px 8%; background: var(--white); }

.process-sticky-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 120px;
  align-items: flex-start;
}

.process-left { position: sticky; top: 160px; }

.process-left-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  margin: 32px 0 64px;
}

.process-tracker { position: relative; padding-left: 10px; }

.tracker-line {
  position: absolute;
  left: 29px;
  top: 0;
  width: 1px;
  background: var(--accent);
  height: 0%;
  transition: height 0.6s;
}

.tracker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  opacity: 0.2;
  transition: 0.4s;
}

.tracker-item.active { opacity: 1; }

.tracker-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.tracker-item.active .tracker-dot {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.process-step-block { min-height: 70vh; opacity: 0.1; transition: 0.8s; }
.process-step-block.in-view { opacity: 1; transform: translateY(0); }

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

.process-step-desc {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-light);
}

/* ─── CTA ─── */
.cta-section { padding: 240px 8%; text-align: center; background: var(--cream); }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 64px;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 24px 64px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  /* 프로세스 섹션 모바일 전용 레이아웃 */
  .process-sticky-wrap { display: block; }
  .process-left { position: relative; top: 0; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
  .process-left-title { font-size: 40px; margin-bottom: 24px; }
  .process-tracker { display: none; } /* 모바일에서 불필요한 트래커 제거 */
  
  .process-right { padding-top: 48px; }
  .process-step-block { 
    min-height: auto; 
    padding-bottom: 80px; 
    opacity: 1; 
    transform: none; 
  }
  .process-step-title { font-size: 28px; margin-bottom: 16px; }
  .process-step-desc { font-size: 16px; }
  
  /* 서비스 리스트 모바일 최적화 */
  /* ... (Existing mobile service styles maintained) ... */
  .service-item { 
    grid-template-columns: 1fr; 
    gap: 12px;
    padding: 60px 0;
  }
  .service-name { font-size: 32px; }
  .service-desc { 
    display: block; 
    max-width: 100%; 
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
  }
  .service-arrow { display: none; }
  
  nav { min-width: 90%; padding: 10px 20px; }
  .nav-links { display: none; }
  
  .hero-title { font-size: 80px; }
  .profile-section { grid-template-columns: 1fr; gap: 60px; }
}
