:root{--build-id:"39b40154-0eca-4566-836d-a0de5588e74d";}
/* 트오브75 수분크림 - 정적 HTML 사이트 */

/* ========== 색상 시스템 (C18) ========== */
:root {
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);
}

/* ========== 폰트 시스템 (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: var(--bg);
  margin: 0;
  padding: 0;
}

/* ========== 헤딩 시스템 (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: 0 0 1.5rem 0;
}

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: 0 0 1.25rem 0;
}

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: 0 0 1rem 0;
}

/* ========== 레이아웃 (L28 - 스토리텔링 히어로 → 3열 → 후기 → 멀티CTA) ========== */
* {
  box-sizing: border-box;
}

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

section {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.5rem;
  }
}

/* ========== 접근성 ========== */
.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 var(--primary);
  outline-offset: 2px;
}

/* ========== 네비게이션 (N14 - 상단 고정 + 좌측 로고 + 우측 메뉴 언더라인 + 햄버거) ========== */
header {
  background: rgba(255, 237, 213, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  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);
  text-decoration: none;
}

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

nav a {
  color: var(--text);
  text-decoration: none;
  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);
}

.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);
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
  }
}

/* ========== 버튼 (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);
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

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

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

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

/* ========== 그리드 시스템 ========== */
.grid {
  display: grid;
  gap: 5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========== 히어로 섹션 ========== */
.hero {
  text-align: center;
  padding: 8rem 0 7rem;
}

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

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

/* ========== 섹션 헤더 ========== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.85;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* ========== 아이콘 ========== */
.icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

/* ========== 푸터 ========== */
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 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
}

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

.footer-info {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: 1rem;
}

/* ========== 문서 페이지 ========== */
.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.8;
}

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

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

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

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

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== FAQ 스타일 ========== */
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.75rem;
  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.0625rem;
}

.faq-answer {
  color: var(--text);
  opacity: 0.9;
}

/* ========== 연락처 정보 ========== */
.contact-info {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  margin-bottom: 1.75rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-value {
  color: var(--text);
  font-size: 1.0625rem;
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}