:root{--build-id:"15739276-56eb-4008-8844-8c9c1ef9d4a8";}
/* ==============================================
   도노라나37 스타일시트
   변수: L04, C16, T17, B08, N03, K08, S07, H08, F2, CS08
   ============================================== */

/* CSS 변수 정의 - C16 색상 팔레트 */
:root {
  --primary: #65a30d;
  --bg: #f7fee7;
  --text: #365314;
  --accent: #3f6212;
  --heading: var(--text);
  --link: var(--text);
  --white: #ffffff;
  --border: #9ca3af;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

/* 기본 요소 */
* {
  box-sizing: border-box;
}

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

a:hover {
  opacity: 0.7;
}

a:focus-visible,
input:focus-visible,
label:focus-visible,
summary:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* H08 헤딩 스타일 */
h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin: 0 0 1.5rem 0;
}

h2 {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 1.25rem 0;
}

h3 {
  font-size: 2.21rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1rem 0;
}

ul,
ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

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

/* S07 여백 시스템 */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.5rem 0;
}

/* N03 네비게이션 - 상단 스크롤 + 우측 로고 + 좌측 메뉴 */
header {
  background-color: var(--white);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  order: 2;
}

header nav {
  order: 1;
}

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

header nav a {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
}

header nav a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.menu-checkbox,
.menu-toggle {
  display: none;
}

/* 모바일 메뉴 */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

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

  header nav {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

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

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

/* L04 레이아웃 - 비디오형 히어로 */
.hero-section {
  background-color: var(--white);
}

.hero-content {
  text-align: center;
}

.hero-video-placeholder {
  margin: 0 auto 2rem;
  max-width: 800px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* B08 버튼 스타일 */
.cta-button {
  display: inline-block;
  border-radius: 0;
  padding: 0.875rem 2rem;
  font-weight: 500;
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.cta-button-secondary {
  display: inline-block;
  border-radius: 0;
  padding: 0.875rem 2rem;
  font-weight: 500;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.cta-button-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* CS08 체크리스트형 스타일 */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 2rem;
}

.checklist-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.check-icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 2.5rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* 아코디언 스타일 */
.accordion-container {
  margin-top: 2rem;
}

.accordion-item {
  background-color: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--primary);
}

.accordion-item summary {
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.75;
}

/* 갤러리 스타일 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-top: 2rem;
}

.gallery-item {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
}

.gallery-image {
  width: 100%;
  overflow: hidden;
}

.gallery-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.5rem;
}

.gallery-item p {
  padding: 0 1.5rem 1.5rem;
}

/* K08 카드 스타일 */
.info-card,
.benefit-card,
.tip-card,
.season-card {
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin-top: 2rem;
  background-color: var(--white);
}

.info-card svg {
  display: block;
  margin: 0 auto 1rem;
}

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

.benefit-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.cta-description {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* 페이지 헤더 */
.page-header {
  background-color: var(--white);
  text-align: center;
  padding: 4rem 0 3rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 1rem;
}

/* 콘텐츠 섹션 */
.content-section {
  background-color: var(--white);
}

.content-section:nth-child(even) {
  background-color: var(--bg);
}

/* 체크리스트 박스 */
.checklist-container,
.checklist-box,
.method-checklist,
.replacement-checklist {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--primary);
}

.checklist-container h3,
.checklist-box h3,
.method-checklist h3,
.replacement-checklist h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.value-checklist {
  list-style: none;
  padding: 0;
}

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

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

/* 단계 리스트 */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 2rem;
}

.step-item {
  position: relative;
  padding-left: 4rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* 방법 박스 */
.method-box {
  background-color: var(--white);
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2rem;
}

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

.method-box ul {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.method-box ul li {
  padding: 0.5rem 0;
}

/* 계절 그리드 */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.25rem;
  margin-top: 2rem;
}

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

/* FAQ 스타일 */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-item h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* 연락처 그리드 */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3.25rem;
  margin-top: 2rem;
}

.contact-info,
.contact-message {
  background-color: var(--white);
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.inquiry-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

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

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

/* 정보 박스 */
.info-box,
.highlight-box,
.cta-box {
  background-color: var(--bg);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.cta-box {
  text-align: center;
  background-color: var(--white);
  border: 2px solid var(--primary);
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box .cta-button {
  margin-top: 1.5rem;
}

/* 푸터 */
footer {
  background-color: var(--text);
  color: var(--bg);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-brand strong {
  font-size: 1.5rem;
  color: var(--primary);
}

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

.footer-nav a {
  color: var(--bg);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--bg);
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--bg);
  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;
  line-height: 1.75;
}

/* 반응형 타이포그래피 */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .checklist-grid,
  .gallery-grid,
  .benefit-grid,
  .tip-grid,
  .season-grid,
  .step-list,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}