:root{--build-id:"093604cd-024d-492a-913c-9544010a3257";}
/* ========================================
   토오루나55 삼겹살 전문 - CSS
   변수 조합: L04, C14, T12, B08, N11, K08, S07, H08, F6, CS08
   ======================================== */

/* === 1. 리셋 및 기본 설정 === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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: #166534;
  background-color: #dcfce7;
}

/* === 2. 색상 변수 (C14) === */
:root {
  --primary: #16a34a;
  --bg: #dcfce7;
  --text: #166534;
  --accent: #22c55e;
  --heading: #166534;
  --link: #166534;
}

/* === 3. 접근성: 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;
}

/* === 4. 키보드 포커스 스타일 === */
a:focus-visible,
input:focus-visible,
label:focus-visible,
summary:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* === 5. 헤더 및 네비게이션 (N11) === */
header {
  background: #f0fdf4;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--text);
  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: block;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f0fdf4;
  border-top: 1px solid var(--primary);
}

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

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

.mobile-nav li {
  margin-bottom: 0.75rem;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

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

/* 데스크탑 네비게이션 */
@media (min-width: 1024px) {
  .nav-left,
  .nav-right {
    display: block;
  }

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

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

/* === 6. 섹션 및 컨테이너 (S07) === */
section {
  padding: 5.5rem 0;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === 7. 타이포그래피 (H08) === */
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.15rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2.21rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* === 9. 카드 (K08) === */
.checklist-card,
.method-card,
.benefit-card,
.process-card,
.tip-card,
.review-card,
.gallery-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: white;
}

/* === 10. Hero 섹션 === */
.hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 4rem 0;
  text-align: center;
}

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

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

.hero-video {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

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

.check-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

/* === 12. 아이콘 그리드 === */
.icon-grid {
  display: grid;
  gap: 3.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

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

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

/* === 13. 갤러리 그리드 === */
.gallery-grid {
  display: grid;
  gap: 3.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-card {
  text-align: center;
}

.gallery-card svg {
  margin-bottom: 1rem;
}

/* === 14. 아코디언 === */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: white;
}

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

.accordion-item summary::after {
  content: "▼";
  font-size: 0.875rem;
  transition: transform 0.3s;
}

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

.accordion-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

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

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: white;
  margin-bottom: 2rem;
}

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

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

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

/* === 17. 콘텐츠 섹션 === */
.content-section {
  background: white;
}

/* === 18. 팁 그리드 === */
.tips-grid,
.methods-grid,
.benefits-grid,
.process-grid {
  display: grid;
  gap: 3.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.tip-number,
.process-number {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.method-tips li {
  padding: 0.25rem 0;
  color: var(--text);
}

/* === 19. 후기 섹션 === */
.review-grid {
  display: grid;
  gap: 3.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-author {
  font-weight: 700;
  color: var(--heading);
}

.review-rating {
  color: #fcd34d;
  font-size: 1.125rem;
}

.review-text {
  color: var(--text);
  line-height: 1.7;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* === 21. 비교 테이블 === */
.comparison-table {
  margin-top: 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.comparison-cell {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.highlight {
  background: #f0fdf4;
  font-weight: 600;
  color: var(--primary);
}

/* === 22. 프로세스 섹션 === */
.commitment-list {
  margin-top: 2rem;
}

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

.commitment-icon {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* === 23. 문의 섹션 === */
.contact-grid {
  display: grid;
  gap: 3.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

/* === 24. Footer === */
footer {
  background: #f0fdf4;
  border-top: 2px solid var(--primary);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  color: var(--text);
  font-size: 0.875rem;
}

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

.doc-container a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.doc-container a:hover {
  text-decoration: underline;
}

/* === 26. 반응형 조정 === */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .comparison-cell:last-child {
    border-bottom: none;
  }
}