:root{--build-id:"e8a28a36-aa24-4b8f-9fb6-3b4c61e82c25";}
@charset "UTF-8";

/* ==================== 폰트 설정 (F8) ==================== */
body {
  font-family: system-ui, "Helvetica Neue", Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background: #fefefe;
}

/* ==================== 헤딩 설정 (H15) ==================== */
h1 {
  font-size: clamp(2.25rem, 3.5vw + 1rem, 4rem);
  line-height: 1.15;
  margin: 0 0 1.2rem 0;
  font-weight: 700;
  color: #0d0d0d;
}

h2 {
  font-size: clamp(1.75rem, 2.7vw + 0.78rem, 3.11rem);
  line-height: 1.25;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  color: #262626;
}

h3 {
  font-size: clamp(1.38rem, 2.1vw + 0.61rem, 2.42rem);
  line-height: 1.35;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 600;
  color: #333333;
}

/* ==================== 색상 시스템 (C29) ==================== */
:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #06b6d4;
  --bg-main: #fefefe;
  --bg-alt: #f5f5f5;
  --text: #1a1a1a;
  --text-muted: #595959;
  --border: #d4d4d4;
  --accent: #14b8a6;
}

/* ==================== 접근성 ==================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== 네비게이션 (N15) ==================== */
header {
  background: var(--bg-main);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: var(--primary-dark);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

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

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

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

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

  nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  nav a:hover,
  nav a[aria-current="page"] {
    border-left-color: var(--primary);
    background: var(--bg-alt);
  }
}

/* ==================== 레이아웃 (L18) ==================== */
main {
  min-height: calc(100vh - 300px);
}

section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-main) 100%);
  border-bottom: 3px solid var(--primary-light);
}

.header-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* ==================== 섹션 스타일 (S11) ==================== */
.hero-section {
  background: linear-gradient(to bottom, var(--bg-alt), var(--bg-main));
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.hero-icon {
  margin: 2rem auto 0;
  display: block;
}

.intro-section {
  background: var(--bg-main);
}

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

.content-item {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.item-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* ==================== 카드 (K15) ==================== */
.feature-section {
  background: var(--bg-alt);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-main);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
}

.feature-card svg {
  flex-shrink: 0;
  margin-left: auto;
}

/* ==================== 버튼 (B15) ==================== */
.cta-section {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-box h2 {
  color: white;
  margin-top: 0;
}

.cta-box p {
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ==================== 혜택 섹션 ==================== */
.benefit-section {
  background: var(--bg-main);
}

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

.benefit-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 10px;
  border-top: 4px solid var(--accent);
}

/* ==================== 가이드 페이지 ==================== */
.guide-section {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
}

.guide-section:nth-child(even) {
  background: var(--bg-alt);
}

.guide-content {
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

.guide-visual {
  display: block;
  margin: 2rem auto;
}

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

.step-card {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.caution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.caution-item {
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  padding: 1.5rem;
  border-radius: 8px;
}

.caution-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-right: 0.5rem;
}

/* ==================== 방법 페이지 ==================== */
.method-section {
  padding: 3rem 1.5rem;
}

.method-section:nth-child(odd) {
  background: var(--bg-alt);
}

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

.method-card {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.method-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}

.baking-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.baking-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .baking-item {
    flex-direction: column;
    text-align: center;
  }
}

.method-content {
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

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

.special-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 10px;
  border-bottom: 4px solid var(--primary);
}

/* ==================== 팁 페이지 ==================== */
.tips-section {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
}

.tips-section:nth-child(even) {
  background: var(--bg-alt);
}

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

.tip-box {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--accent);
}

.tip-num {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.storage-tips {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.storage-card {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.storage-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

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

.cooking-item {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-light);
}

.life-tips {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.life-box {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.life-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.health-content {
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* ==================== FAQ 페이지 ==================== */
.faq-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-alt);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid var(--primary);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--primary);
}

.faq-item p {
  margin: 1rem 0 0 0;
  line-height: 1.8;
}

/* ==================== 문의 페이지 ==================== */
.contact-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

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

.info-card p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.info-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-message {
  text-align: center;
  background: var(--bg-alt);
  padding: 3rem 2rem;
  border-radius: 12px;
}

.contact-message p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1rem 0;
}

.message-visual {
  margin: 2rem auto 0;
  display: block;
}

/* ==================== 소개 페이지 ==================== */
.content-section {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
}

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

.content-wrapper {
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

.content-wrapper p {
  margin-bottom: 1.5rem;
}

.content-visual {
  display: block;
  margin: 2rem auto;
}

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

.value-item {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* ==================== Footer ==================== */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.footer-brand p {
  margin: 0.3rem 0;
}

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

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

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

.footer-contact {
  margin: 1.5rem 0;
  opacity: 0.9;
}

.footer-contact p {
  margin: 0.3rem 0;
}

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

/* ==================== Doc Container ==================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.doc-container p {
  line-height: 1.8;
  margin: 1rem 0;
}

.doc-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  transition: color 0.3s;
}

.doc-container a:hover {
  color: var(--primary-dark);
}

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

  .page-header {
    padding: 3rem 1rem 1.5rem;
  }

  .hero-section {
    padding: 3rem 1rem 2.5rem;
  }

  .content-grid,
  .feature-list,
  .benefit-grid,
  .method-grid,
  .tips-container,
  .storage-tips,
  .cooking-tips,
  .value-cards,
  .contact-info,
  .special-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-card svg {
    margin: 1rem auto 0;
  }

  .storage-card {
    flex-direction: column;
    text-align: center;
  }

  .storage-icon {
    margin: 1rem 0 0 0;
  }

  .life-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .doc-container {
    padding: 3rem 1rem;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

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