:root{--build-id:"6fbb86ca-b305-43fa-a4cd-36a6b21e959a";}
/* 르에후11 수분크림 - 정적 웹사이트 스타일 */

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

/* ===== 색상 팔레트 (C18) ===== */
:root {
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: #7c2d12;
  --link: #7c2d12;
}

/* ===== 폰트 (F6) ===== */
body {
  font-family: Roboto, system-ui, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* ===== 헤딩 (H04) ===== */
h1 {
  font-size: clamp(1.90rem, 2.4vw + 1rem, 2.90rem);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.43rem, 1.8vw + 0.75rem, 2.18rem);
  font-weight: 650;
  line-height: 1.27;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.14rem, 1.44vw + 0.6rem, 1.74rem);
  font-weight: 550;
  line-height: 1.32;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* ===== 여백 시스템 (S05) ===== */
section {
  padding: 7rem 0;
}

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

.gap {
  gap: 5rem;
}

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

a:hover {
  opacity: 0.7;
}

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

/* ===== 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;
}

/* ===== 헤더 (N14 - 상단 고정 + 좌측 로고 + 우측 메뉴 언더라인) ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 237, 213, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(234, 88, 12, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

nav a {
  position: relative;
  padding-bottom: 0.25rem;
  font-weight: 500;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a[aria-current="page"]::after {
  width: 100%;
}

/* 모바일 메뉴 */
.menu-checkbox {
  display: none;
}

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
  }

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

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

/* ===== 버튼 (B03) ===== */
.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ===== 카드 (K13) ===== */
.card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* ===== 레이아웃 (L27 - 임팩트 히어로 + 4열 + 케이스 + 버튼그룹CTA) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  opacity: 0.9;
}

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

/* 4열 그리드 */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* 3열 그리드 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

/* 2열 그리드 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

/* ===== 푸터 ===== */
footer {
  background: rgba(124, 45, 18, 0.05);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(234, 88, 12, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(234, 88, 12, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

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

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

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

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

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

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ===== FAQ 스타일 ===== */
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text);
  line-height: 1.7;
}

/* ===== Privacy/Terms 문서 스타일 ===== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

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

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

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

  .container {
    padding: 0 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: 4rem;
  }

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

  .btn {
    padding: 1rem 2rem;
  }
}

/* ===== SVG 스타일 ===== */
svg {
  max-width: 100%;
  height: auto;
}

/* ===== 접근성 ===== */
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}