:root{--build-id:"2b38fe09-6459-48a6-9bf3-c4c3a3f7622c";}
/* 스오쿠후수73 - 비누 전문 사이트 */
/* 패턴: L27, C18, T16, B03, N14, K13, S05, H03, F6, CS19 */

:root {
  /* C18: 오렌지 팔레트 */
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* F6: Android Global 폰트 스택 */
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: var(--bg);
}

/* H03: 반응형 헤딩 */
h1 {
  font-size: clamp(2.10rem, 2.8vw + 1rem, 3.10rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.58rem, 2.1vw + 0.75rem, 2.33rem);
  font-weight: 750;
  line-height: 1.23;
  letter-spacing: -0.012em;
  color: var(--heading);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: clamp(1.26rem, 1.68vw + 0.6rem, 1.86rem);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  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 {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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: 700;
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav li {
    border-bottom: 1px solid #f0f0f0;
  }

  nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: none;
  }
}

/* S05: 여백 시스템 */
main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* L27: 임팩트 히어로 → 4열 → 케이스 → 버튼그룹CTA */
.hero {
  text-align: center;
  padding: 8rem 0 7rem;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
}

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

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text);
  opacity: 0.9;
}

/* B03: 라운드 버튼 + 그림자 */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.4);
  opacity: 1;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.button-secondary:hover {
  background: var(--primary);
  color: #fff;
  opacity: 1;
}

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

/* K13: 그림자 오프셋 카드 */
.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(234, 88, 12, 0.15);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(234, 88, 12, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* 리스트 스타일 */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 0 rgba(234, 88, 12, 0.1);
}

.feature-list li::before {
  content: "✓";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* SVG 스타일 */
.svg-container {
  text-align: center;
  margin: 2rem 0;
}

.svg-container svg {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  background: #fff;
  border-top: 2px solid var(--primary);
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* 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 {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

  .section-content {
    gap: 3rem;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

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

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

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .button-secondary {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  main {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

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

  .card {
    padding: 1.5rem;
  }
}