:root{--build-id:"df00bb14-23d0-4c1d-98a6-e39470a4b23e";}
/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ef4444;
  --bg: #fef2f2;
  --text: #7f1d1d;
  --accent: #f87171;
  --heading: #7f1d1d;
  --link: #7f1d1d;
  --border: #fee2e2;
  --card-bg: #ffffff;
}

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

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

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

/* Header */
header {
  background: var(--card-bg);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Container */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--heading);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: var(--text);
}

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

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

/* Hero Section */
.hero {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
}

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

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

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

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

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

/* Sections */
section {
  padding: 6.5rem 0;
}

.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--card-bg);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.8;
}

/* Summary Box */
.summary-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.summary-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid var(--border);
}

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

.summary-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.summary-item p {
  color: var(--text);
}

.intro-text {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Benefits */
.benefits-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefits-image svg {
  width: 100%;
  height: auto;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.step-number {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

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

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

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 2rem;
}

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

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

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

/* Mission */
.mission-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

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

.reason {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-icon {
  font-size: 3rem;
}

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

.approach-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

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

/* Summary Section */
.summary-section {
  background: var(--card-bg);
}

.highlight-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.summary-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-list li {
  font-size: 1.125rem;
  font-weight: 500;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
}

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

.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-card p {
  margin-bottom: 1rem;
}

/* Nutrition Facts */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.nutrition-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid var(--border);
}

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

.nutrition-desc {
  font-size: 0.9375rem;
  color: var(--text);
  opacity: 0.8;
}

/* Health Benefits */
.health-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

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

/* Comparison */
.comparison-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* Usage Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

/* Quick Start */
.quick-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1rem;
  padding: 3rem;
  color: white;
}

.quick-box h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

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

.quick-step {
  text-align: center;
}

.step-num {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Method Steps */
.method-step {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--border);
}

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

.step-content p {
  margin-bottom: 1rem;
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-item {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

.requirement-item h4 {
  margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.day {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

/* Mistakes List */
.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mistake-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.mistake-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Top Tips */
.tips-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-box {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.tip-icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

/* Tip Sections */
.tip-section {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 2px solid var(--border);
}

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

.tip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-list li {
  padding-left: 1.5rem;
  position: relative;
}

.tip-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
}

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

.season-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
}

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

/* Storage Content */
.storage-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.storage-method {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

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

/* Problem List */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.problem-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Cooking Grid */
.cooking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cooking-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

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

.contact-desc {
  font-size: 0.9375rem;
  margin-top: 1rem;
  color: var(--text);
  opacity: 0.8;
}

/* Contact Content */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-text h2 {
  margin-bottom: 1.5rem;
}

.contact-text p {
  margin-bottom: 1.5rem;
}

.response-time {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  margin-top: 2rem;
}

.response-time h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.response-time p {
  margin-bottom: 0.5rem;
}

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

/* FAQ Preview */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

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

.footer-brand h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-contact p {
  color: white;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: white;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Doc Container */
.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;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    display: none;
    padding: 1rem 0;
  }

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

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

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

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

  .hero .container,
  .content-grid,
  .benefits-content,
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}