:root{--build-id:"f6ea5b6b-1581-4ef5-a9ab-55e69c149128";}
/* ========================================
   누키노라95 - 마파두부 전문 사이트
   변수: L01, C03, T21, B01, N09, K01, S01, H01, F5, CS01
   ======================================== */

/* 색상 변수 - C03 */
:root {
  --primary: #0ea5e9;
  --bg: #f0f9ff;
  --text: #0c4a6e;
  --accent: #38bdf8;
  --heading: #0c4a6e;
  --link: #0c4a6e;
  --white: #ffffff;
  --border: #bae6fd;
  --shadow: rgba(14, 165, 233, 0.1);
}

/* 기본 스타일 - F5, T21 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* 헤딩 스타일 - H01, T21 (Nanum Myeongjo) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nanum Myeongjo", serif;
  color: var(--heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 700;
}

/* 레이아웃 - S01 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* 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, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-family: "Nanum Myeongjo", serif;
}

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

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

nav a:hover,
nav a:focus {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

/* 햄버거 메뉴 */
.menu-checkbox {
  display: none;
}

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

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

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

/* 버튼 스타일 - B01 */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero 섹션 - L01 */
.hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  padding: 6rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text);
  opacity: 0.9;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual svg {
    max-width: 100%;
    height: auto;
  }
}

/* 카드 스타일 - K01 */
.feature-card,
.comparison-card,
.benefit-card,
.value-card,
.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover,
.comparison-card:hover,
.benefit-card:hover,
.value-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 3열 그리드 - L01 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-icon,
.benefit-icon,
.value-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* 섹션 스타일 */
.intro,
.benefits-section,
.comparison,
.extra-content,
.content-section,
.values-section,
.mission-section,
.steps-section,
.tips-section,
.health-benefits,
.mental-benefits,
.lifestyle-benefits,
.contact-section {
  background: var(--white);
}

.intro h2,
.benefits-section h2,
.comparison h2,
.extra-content h2,
.content-section h2,
.values-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* 리스트 스타일 - CS01 */
.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.6;
}

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

.benefits-list strong {
  color: var(--primary);
  font-weight: 700;
}

/* 2열 비교 - L01 */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.comparison-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.comparison-card li {
  padding: 0.5rem 0;
  color: var(--text);
}

/* 시각 요소 */
.visual-accent,
.visual-element {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

/* CTA 섹션 - L01 풀폭 */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: var(--white);
  text-align: center;
}

.cta-final h2,
.cta-final p {
  color: var(--white);
}

.cta-final .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-final .btn-primary:hover {
  background: var(--bg);
  color: var(--primary);
}

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

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.85;
}

/* Value Cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Step Cards */
.step-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step-number {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Tips & Highlights */
.tips-section h3,
.tip-highlight h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.tip-highlight {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  margin-top: 2rem;
}

.tip-highlight ul,
.ingredient-list ul,
.practical-tips ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.tip-highlight li,
.ingredient-list li,
.practical-tips li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.tip-highlight li::before,
.ingredient-list li::before,
.practical-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Contact */
.contact-details {
  margin-top: 2rem;
}

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

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

.contact-text strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* FAQ */
.faq-section {
  margin-top: 4rem;
}

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

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

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

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: "Nanum Myeongjo", serif;
}

.footer-brand p {
  opacity: 0.8;
}

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

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

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

.footer-contact p {
  margin-bottom: 0.5rem;
  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.8;
}

.doc-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 9999px;
  display: inline-block;
  transition: all 0.3s;
}

.doc-container a:hover,
.doc-container a:focus {
  background: var(--primary);
  color: var(--white);
}

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

/* 반응형 */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .features-grid,
  .comparison-grid,
  .value-cards,
  .step-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}