:root{--build-id:"853b5191-9d53-4562-b10a-4f6419f1312e";}
/* 라로데로78 - 젓가락 전문 사이트 */
/* 변수: L06, C23, T06, B11, N03, K11, S11, H11, F2, CS11 */

/* 색상 변수 - C23 */
:root {
  --primary: #ec4899;
  --bg: #fdf2f8;
  --text: #831843;
  --accent: #f472b6;
  --heading: var(--text);
  --link: var(--text);
}

/* 폰트 - F2 (Apple Wide) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

/* N03 네비게이션: 상단 스크롤 + 우측 로고 + 좌측 메뉴 */
header {
  background: rgba(253, 242, 248, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

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

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

.menu-checkbox {
  display: none;
}

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

header nav {
  order: 1;
}

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

header nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

/* S11 여백 시스템 */
section {
  padding: 5.75rem 0;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-gap {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

/* H11 헤딩 */
h1 {
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
}

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

h3 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* K11 카드: 흰배경 + 둥근모서리 + 상단 테두리 */
.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
}

/* B11 버튼 */
.btn {
  display: inline-block;
  border-radius: 0.375rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

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

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

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

/* L06 레이아웃: 미니멀 히어로 */
.hero {
  text-align: center;
  padding: 4rem 0;
}

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

.hero p {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* 5열 아이콘 그리드 */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

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

.icon-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.icon-item p {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.8;
}

/* 1열 텍스트 섹션 */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 1.25rem;
}

/* 그리드 레이아웃 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

/* 리스트 스타일 */
.list {
  list-style: none;
  padding: 0;
}

.list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.list li:last-child {
  border-bottom: none;
}

/* 연락처 섹션 */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
}

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

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid rgba(236, 72, 153, 0.1);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

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

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

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

.footer-content p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* SVG 스타일 */
svg {
  max-width: 100%;
  height: auto;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

  .menu-toggle {
    order: 2;
  }

  header nav {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  header nav li {
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
  }

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

  section {
    padding: 3.5rem 0;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* 문서 페이지 스타일 */
.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;
}