:root{--build-id:"bcf118d2-8ba4-4c61-ac70-789bf713708b";}
@charset "UTF-8";

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

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

html {
  scroll-behavior: smooth;
}

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;
  color: var(--text);
  background: var(--bg);
}

/* ========================================
   타이포그래피 (H09)
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
}

a: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;
}

/* ========================================
   헤더 및 네비게이션 (N09)
   ======================================== */
header {
  background: rgba(255, 247, 237, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  flex-shrink: 0;
}

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

nav a {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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-top: 2px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav li {
    border-bottom: 1px solid var(--border);
  }

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

/* ========================================
   컨테이너 및 섹션 (S05)
   ======================================== */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

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

/* ========================================
   히어로 섹션 (L15 - 컴팩트 히어로)
   ======================================== */
.hero-compact {
  text-align: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 100%);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========================================
   버튼 스타일 (B09)
   ======================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

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

/* ========================================
   카드 스타일 (K09)
   ======================================== */
.card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.15);
}

.card-icon {
  margin-bottom: 1rem;
}

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

.card ul {
  list-style: none;
  padding-left: 0;
}

.card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card li:last-child {
  border-bottom: none;
}

/* ========================================
   그리드 레이아웃
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

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

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

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

/* ========================================
   요약 박스 (CS09)
   ======================================== */
.summary-box {
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.summary-box h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.summary-list {
  list-style: none;
  padding: 0;
}

.summary-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}

/* ========================================
   콘텐츠 섹션
   ======================================== */
.intro-section,
.features-section,
.benefits-section,
.content-section {
  background: var(--bg);
}

.content-section:nth-child(even) {
  background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 100%);
}

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

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

/* ========================================
   그리드 갤러리 섹션
   ======================================== */
.grid-gallery {
  background: linear-gradient(180deg, var(--bg) 0%, var(--card-bg) 100%);
}

/* ========================================
   혜택 아이콘
   ======================================== */
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ========================================
   CTA 섹션
   ======================================== */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.cta-section .btn-primary:hover {
  background: var(--card-bg);
  opacity: 1;
}

.cta-section .btn-secondary {
  border-color: #fff;
  color: #fff;
}

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

/* ========================================
   페이지 헤더
   ======================================== */
.page-header {
  text-align: center;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 100%);
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   프로그램 상세
   ======================================== */
.program-details {
  display: grid;
  gap: 5rem;
  margin-top: 2rem;
}

.program-day {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

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

.program-day ul {
  list-style: none;
  padding: 0;
}

.program-day li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.program-day li:last-child {
  border-bottom: none;
}

.advanced-schedule {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.schedule-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.schedule-item strong {
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   팁 페이지
   ======================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 2rem;
}

.tip-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border-top: 3px solid var(--primary);
}

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

.recovery-tips {
  display: grid;
  gap: 5rem;
  margin-top: 2rem;
}

.recovery-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.recovery-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

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

.mistakes-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.mistake-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--accent);
}

.mistake-item h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.mistake-item strong {
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   연락처 페이지
   ======================================== */
.contact-section {
  background: var(--bg);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

.contact-info h2,
.contact-cta h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
}

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

.quick-links {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-link-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.quick-link-card:hover {
  transform: translateX(5px);
}

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

.hours-section {
  background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 100%);
}

/* ========================================
   타임라인
   ======================================== */
.timeline-content {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

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

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

.timeline-content-box {
  flex: 1;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
}

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

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-marker {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   푸터
   ======================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

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

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  color: #fff;
  font-weight: 500;
}

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

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ========================================
   문서 컨테이너 (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;
}

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