:root{--build-id:"4a2b81d4-9819-45a0-a7e7-b87d7dd6c8d8";}
/* 기본 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS 변수 - C17 오렌지 팔레트 */
:root {
  --primary: #ea580c;
  --bg: #fff7ed;
  --text: #431407;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);
}

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

/* H09 헤딩 스타일 - clamp 반응형 */
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--heading);
}

h2 {
  font-size: clamp(1.5rem, 3.75vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--heading);
}

h3 {
  font-size: clamp(1.25rem, 3.125vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--heading);
}

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

/* 키보드 포커스 스타일 */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* N09 네비게이션 - 상단 투명 + 좌측 로고 + 중앙 검색 + 우측 메뉴 */
header {
  background: rgba(255, 247, 237, 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: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.search-box {
  flex: 1;
  max-width: 400px;
  display: none;
}

.search-box input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  background: white;
  color: var(--text);
  font-size: 0.875rem;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
  padding: 0.5rem;
}

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--primary);
}

nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

/* S05 섹션 여백 */
section {
  padding: 7rem 0;
}

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

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

/* L15 레이아웃 - 컴팩트 히어로 */
.hero {
  text-align: center;
  padding: 4rem 0;
}

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

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

/* B09 버튼 스타일 */
.btn {
  display: inline-block;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  background: var(--primary);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

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

/* K09 카드 스타일 - 그라데이션 배경 */
.card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s;
}

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

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

.card p {
  color: var(--text);
  opacity: 0.85;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* CS09 요약형 스타일 */
.summary-box {
  background: white;
  border: 3px solid var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
}

.summary-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

.summary-list li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

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

/* 스티키 CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

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

/* FAQ 스타일 */
.faq-item {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

/* 연락처 정보 */
.contact-info {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

/* SVG 스타일 */
.icon-svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: block;
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .search-box {
    display: none !important;
  }

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

  nav li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
  }

  nav a {
    display: block;
    padding: 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .content-gap {
    gap: 3rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

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

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .search-box {
    display: block;
  }
}