:root{--build-id:"db77633e-2aba-4a50-a869-f4f98683048b";}
/* 파라모나18 모자 웹사이트 - 55번 조합 */
/* L25, C18, T09, B10, N13, K10, S01, H10, F7, CS10 */

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

/* === 기본 스타일 (F7, S01) === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, "Noto Sans KR", "Malgun Gothic", -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* === 접근성 === */
.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;
}

/* === 컨테이너 (S01) === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.gap-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* === 헤더 네비게이션 (N13) === */
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: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  position: absolute;
  right: 1.5rem;
}

header nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  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: 400px;
}

header nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

header nav ul li a:hover,
header nav ul li a[aria-current="page"] {
  background: rgba(234, 88, 12, 0.1);
  color: var(--primary);
}

.nav-cta {
  margin: 0.5rem 1.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--primary);
}

/* === 타이포그래피 (H10) === */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.97rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* === 버튼 (B10) === */
.btn {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  cursor: pointer;
}

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

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

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

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

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

.card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* === 그리드 레이아웃 === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

/* === Hero 섹션 (L25 - 크리에이티브) === */
.hero {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === FAQ 아코디언 === */
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--heading);
}

.faq-question::after {
  content: "▼";
  font-size: 0.875rem;
  transition: transform 0.3s;
}

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

/* === 리스트 스타일 === */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

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

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

/* === 통계/숫자 === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text);
  font-weight: 500;
}

/* === Footer === */
footer {
  background: rgba(124, 45, 18, 0.05);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

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

.footer-section a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
  color: var(--text);
  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.8;
}

/* === 반응형 (768px+) === */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .menu-checkbox {
    display: none;
  }

  header nav {
    position: static;
    max-height: none;
    width: auto;
    background: transparent;
    border: none;
  }

  header nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    position: absolute;
    left: 1.5rem;
  }

  header nav ul li a {
    padding: 0.5rem 1rem;
  }

  .nav-cta {
    position: absolute;
    right: 1.5rem;
    margin: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

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

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

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

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

/* === SVG 스타일 === */
.icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.hero-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 2rem auto;
  display: block;
}

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

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

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

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

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