:root{--build-id:"0db66a27-0a6c-468d-bfdd-9fddad672104";}
@charset "UTF-8";

/* ================================
   변수 설정 (C22, F8, H12)
   ================================ */
:root {
  /* C22: 오렌지/골드 톤 */
  --primary: #d97706;
  --bg: #fef3c7;
  --text: #92400e;
  --accent: #f59e0b;
  --heading: var(--text);
  --link: var(--text);

  /* S03: 섹션 여백 및 컨테이너 */
  --section-padding: 6rem 0;
  --container-width: 1400px;
  --gap: 4rem;

  /* 폰트 설정 */
  --font-main: system-ui, "Helvetica Neue", Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: #ffffff;
}

/* ================================
   타이포그래피 (H12)
   ================================ */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
}

/* ================================
   접근성
   ================================ */
.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 {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ================================
   레이아웃 컨테이너
   ================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-padding);
}

.alt-bg {
  background-color: var(--bg);
}

/* ================================
   헤더 및 네비게이션 (N15)
   ================================ */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: var(--bg);
  border: 2px solid var(--primary);
  color: var(--text);
  transition: all 0.3s ease;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav a {
    display: block;
    text-align: center;
  }
}

/* ================================
   버튼 스타일 (B12)
   ================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

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

.btn-secondary:hover {
  background: var(--text);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* ================================
   히어로 섹션 (L26: 미니멀리스트)
   ================================ */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
  padding: 8rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

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

.hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 4rem 0;
  }
}

/* ================================
   2열 레이아웃
   ================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.col-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ================================
   카드 스타일 (K12)
   ================================ */
.grid-features,
.value-grid,
.care-grid,
.practical-grid,
.testimonial-grid,
.size-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card,
.value-item,
.care-item,
.practical-card,
.testimonial-card,
.size-card,
.question-card {
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover,
.value-item:hover,
.care-item:hover,
.practical-card:hover,
.testimonial-card:hover,
.size-card:hover,
.question-card:hover {
  transform: translateY(-5px);
}

.icon,
.value-icon,
.care-icon,
.icon-large {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ================================
   타임라인
   ================================ */
.timeline-wrapper {
  position: relative;
  margin-top: 3rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-marker {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-content {
  flex: 1;
}

/* ================================
   CTA 섹션
   ================================ */
.cta-section {
  background: var(--bg);
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ================================
   페이지 헤더
   ================================ */
.page-header {
  background: var(--bg);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.8;
}

/* ================================
   컨텐츠 섹션
   ================================ */
.content-section {
  padding: var(--section-padding);
}

.content-section h2 {
  margin-bottom: 2rem;
}

/* ================================
   프로세스 리스트
   ================================ */
.process-list,
.steps-list {
  margin-top: 2rem;
}

.process-step,
.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.step-number,
.step-marker {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content,
.step-text {
  flex: 1;
}

/* ================================
   프로미스, 케어, 팁 박스
   ================================ */
.promise-box,
.care-tips,
.tips-box,
.longterm-box {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.promise-text {
  margin-bottom: 1.5rem;
}

.tip-row,
.psych-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.tip-number,
.check-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* ================================
   어피어런스, 사이콜로지컬
   ================================ */
.appearance-list,
.psych-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.appearance-item {
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.psychological-content,
.benefit-content,
.method-content {
  margin-top: 2rem;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 2rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

/* ================================
   롱텀 포인트
   ================================ */
.longterm-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.point-item {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* ================================
   이용후기
   ================================ */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-initial {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.user-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.user-date {
  font-size: 0.875rem;
  opacity: 0.7;
}

.testimonial-content {
  line-height: 1.7;
}

.repeat-customer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quote-card {
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid var(--primary);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
}

/* ================================
   FAQ
   ================================ */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.faq-answer {
  line-height: 1.7;
}

/* ================================
   연락처
   ================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.contact-visual svg {
  width: 100%;
  height: auto;
}

.quick-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hours-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hours-card {
  padding: 2rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  text-align: center;
}

.hours-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.hours-note {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 0.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ================================
   푸터
   ================================ */
footer {
  background: var(--text);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #ffffff;
  opacity: 0.8;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-section p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  opacity: 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 {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}

/* ================================
   반응형 조정
   ================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem 0;
    --gap: 3rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --gap: 2rem;
  }

  .grid-features,
  .value-grid,
  .care-grid,
  .practical-grid,
  .testimonial-grid,
  .size-guide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .process-step,
  .step-item,
  .contact-item {
    flex-direction: column;
    gap: 1rem;
  }
}