:root{--build-id:"34350530-eaee-404b-9435-9aa46b045209";}
/* 노페모로28 립스틱 사이트 - 스타일시트 */

/* ========== 리셋 및 기본 설정 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== CSS 변수 (C20: 레드 계열) ========== */
:root {
  --primary: #dc2626;
  --bg: #fee2e2;
  --text: #991b1b;
  --accent: #ef4444;
  --heading: var(--text);
  --link: var(--text);
  --white: #ffffff;
  --gray-light: #f9fafb;
  --gray-border: #e5e7eb;
}

/* ========== 폰트 (F3: Windows Core) ========== */
body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--white);
}

/* ========== 헤딩 (H10) ========== */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* ========== 링크 ========== */
a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* ========== 접근성: Skip Link ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========== 키보드 포커스 ========== */
a:focus-visible,
input:focus-visible,
label:focus-visible,
button:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========== 헤더 (N05: 상단 투명 + 좌측 로고 + 우측 메뉴+CTA) ========== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--gray-border);
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
}

/* ========== 모바일 네비게이션 ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* ========== 메인 컨테이너 (S05) ========== */
main {
  min-height: 60vh;
}

section {
  padding: 7rem 0;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== 버튼 (B10) ========== */
.btn {
  display: inline-block;
  border-radius: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========== 카드 (K10) ========== */
.card {
  background: var(--gray-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-top: 0;
}

/* ========== 그리드 레이아웃 ========== */
.grid {
  display: grid;
  gap: 5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== 히어로 섹션 (L15: 컴팩트 히어로) ========== */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== 갤러리 그리드 ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: var(--gray-light);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item svg {
  width: 100%;
  height: 200px;
}

.gallery-content {
  padding: 1.5rem;
}

/* ========== 가격표 ========== */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.15);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  position: relative;
}

.pricing-card.featured::before {
  content: "인기";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ========== 리스트 스타일 ========== */
ul.feature-list {
  list-style: none;
  padding: 0;
}

ul.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

ul.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ========== 스티키 CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========== 푸터 ========== */
footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ========== 문서 컨테이너 (Privacy/Terms) ========== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========== 반응형 ========== */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    gap: 3rem;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========== 유틸리티 클래스 ========== */
.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}