/* ═══════════════════════════════════════════════════
   오로오라 (oroora) — Toss-inspired × 한국적 동양미
   oro-ora.com
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;700;900&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* 보화 카드 × Toss 컬러 팔레트 */
  --bg-primary:     #0a0e17;
  --bg-secondary:   #111827;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --bg-card-hover:  rgba(255, 255, 255, 0.07);
  --border-subtle:  rgba(255, 255, 255, 0.06);
  --border-hover:   rgba(255, 255, 255, 0.12);

  --text-primary:   #f0f0f0;
  --text-secondary: #8b95a1;
  --text-tertiary:  #6b7684;

  --accent:         #4db8c7;
  --accent-light:   #7dd3e0;
  --gold:           #c8a960;
  --gold-light:     #dfc07a;

  /* 서체 */
  --font-display: 'Noto Serif KR', serif;
  --font-body:    'Noto Sans KR', sans-serif;

  /* 여백 */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* 트랜지션 */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--accent-light);
}

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

/* ── 레이아웃 ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

/* ── 네비게이션 (Toss style 60px fixed) ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s var(--ease);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ── 히어로 섹션 (풀스크린, Toss 스타일 대형 텍스트) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

/* 은은한 배경 그라데이션 */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(77, 184, 199, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(200, 169, 96, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto var(--space-sm);
}

.hero-brand-en {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: var(--space-sm);
}

/* 스크롤 인디케이터 */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── 제품 이미지 섹션 ── */
.product-showcase {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.product-image-wrapper {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.product-image-wrapper:hover img {
  transform: scale(1.02);
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.product-name-en {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.product-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ── 브랜드 철학 섹션 ── */
.philosophy {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

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

.philosophy-card {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}

.philosophy-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── 제품 상세 섹션 ── */
.product-details {
  padding: var(--space-2xl) 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.detail-item {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}

.detail-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.detail-item .label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.detail-item .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.detail-item .desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── 푸터 ── */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-logo {
  height: 1.4rem;
  width: auto;
  max-width: 150px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ── 개인정보 처리방침 페이지 ── */
.privacy-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
  min-height: 100vh;
}

.privacy-page h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
  letter-spacing: -0.02em;
}

.privacy-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-subtle);
}

.privacy-page p,
.privacy-page li {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.privacy-page ul {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.privacy-page strong {
  color: var(--text-primary);
  font-weight: 500;
}

.privacy-page .effective-date {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.privacy-page a {
  color: var(--accent);
}

/* ── 스크롤 애니메이션 ── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* 딜레이 클래스 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── 반응형 ── */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

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

  .product-image-wrapper {
    border-radius: 12px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: var(--space-lg) 0;
  }

  .product-showcase,
  .philosophy,
  .product-details {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .product-name {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .philosophy-card {
    padding: var(--space-md);
  }

  .detail-item {
    padding: var(--space-md);
  }
}

/* ── 스크롤바 스타일링 ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── 선택 하이라이트 ── */
::selection {
  background: rgba(77, 184, 199, 0.3);
  color: var(--text-primary);
}
