:root{--build-id:"4cde6144-2728-4de4-9191-b6c036fd8e2f";}
@charset "UTF-8";

/* ==========================================
   F6: Android Global 폰트 스택
   ========================================== */
:root {
  /* C21: 오렌지 색상 팔레트 */
  --primary: #d97706;
  --bg: #fffbeb;
  --text: #78350f;
  --accent: #92400e;
  --heading: var(--text);
  --link: var(--text);

  /* S03: 여백/간격 */
  --section-padding: 6rem;
  --container-width: 1400px;
  --gap: 4rem;

  /* H11: 헤딩 크기 */
  --h1-size: 2.875rem;
  --h2-size: 2.3rem;
  --h3-size: 1.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, system-ui, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: var(--bg);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.006em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

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

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

/* ==========================================
   N11: 상단 스크롤 + 중앙 로고 + 좌우 메뉴 대칭
   ========================================== */
header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-left a,
.nav-right a {
  font-weight: 500;
  transition: color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--primary);
}

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

.menu-checkbox {
  display: none;
}

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

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .logo {
    position: static;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-checkbox:checked ~ .mobile-menu {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    font-weight: 500;
  }

  .mobile-menu a[aria-current="page"] {
    background: #fef3c7;
    color: var(--primary);
    font-weight: 700;
  }
}

/* ==========================================
   Container & Sections
   ========================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-padding) 0;
}

.alt-bg {
  background: #fef3c7;
}

/* ==========================================
   Hero Section (L26: 미니멀리스트)
   ========================================== */
.hero {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: 5rem 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.hero-content {
  flex: 1;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

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

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-visual svg {
    width: 300px;
    height: 300px;
  }
}

/* ==========================================
   B11: 소프트 라운드 버튼
   ========================================== */
.cta-button,
.cta-button-secondary {
  display: inline-block;
  border-radius: 0.375rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  transition: all 0.2s;
  text-align: center;
}

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

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

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

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

/* ==========================================
   Two Column Layout
   ========================================== */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 2rem;
}

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

.col-item {
  text-align: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

/* ==========================================
   K11: 카드 스타일 (배경 + border-top)
   ========================================== */
.content-card,
.value-card,
.benefit-card,
.situation-card,
.process-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 500;
}

.card-icon,
.icon-large {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--primary);
  font-size: 1.25rem;
}

/* ==========================================
   Timeline
   ========================================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
}

.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 3px solid var(--primary);
}

/* ==========================================
   Grid Layouts
   ========================================== */
.benefit-grid,
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.visual-item p {
  margin-top: 1rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .benefit-grid,
  .tip-grid,
  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefit-grid,
  .tip-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }
}

.card-number,
.tip-icon,
.step-number {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ==========================================
   Page Hero
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  text-align: center;
  padding: 4rem 0;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section,
.closing-section,
.highlight-section,
.future-section,
.closing-message {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-box,
.closing-box,
.highlight-box,
.future-box,
.message-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2,
.closing-section h2,
.highlight-section h2,
.future-section h2,
.closing-message h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p,
.closing-section p,
.highlight-section p,
.future-section p,
.closing-message p {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==========================================
   Methods & Tips Specific
   ========================================== */
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-top: 3px solid var(--primary);
  text-align: center;
}

.cooking-timeline {
  max-width: 700px;
  margin: 2rem auto;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.timeline-text {
  flex: 1;
}

.topping-list {
  max-width: 800px;
  margin: 2rem auto;
}

.topping-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.topping-marker {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.5rem;
}

.topping-content {
  flex: 1;
}

.storage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.storage-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

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

.qa-list {
  max-width: 800px;
  margin: 2rem auto;
}

.qa-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
}

.question,
.answer {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.q-mark,
.a-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.answer {
  margin-bottom: 0;
}

/* ==========================================
   History Specific
   ========================================== */
.history-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.history-year {
  margin-bottom: 4rem;
  position: relative;
  padding-left: 6rem;
}

.year-marker {
  position: absolute;
  left: 0;
  top: 0;
  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;
}

.year-events {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
}

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

@media (max-width: 768px) {
  .history-year {
    padding-left: 0;
    padding-top: 4rem;
  }

  .year-marker {
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
  }
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.milestone-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-top: 3px solid var(--primary);
  text-align: center;
}

.milestone-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

/* ==========================================
   Contact Specific
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  border-top: 3px solid var(--primary);
  text-align: center;
}

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

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.contact-desc {
  color: #666;
}

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

.info-box,
.visit-info,
.faq-simple {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.hours-list {
  margin-top: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
}

.simple-qa {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.simple-qa:last-child {
  border-bottom: none;
}

.simple-qa p {
  margin-bottom: 0.5rem;
}

/* ==========================================
   Footer
   ========================================== */
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

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

.footer-nav a {
  font-weight: 500;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

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

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

  .footer-legal {
    text-align: center;
  }
}

/* ==========================================
   Doc Container (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: underline;
}