:root{--build-id:"0e1be8cb-ed24-40f6-ac61-84839cecd0ee";}
/* 르이마미 요가매트 - lightshine.site */
/* 패턴: L12, C07, T16, B18, N02, K03, S08, H03, F5, CS13 */

:root {
  --primary: #2563eb;
  --bg: #f0f9ff;
  --text: #0c4a6e;
  --accent: #0ea5e9;
  --heading: var(--text);
  --link: var(--text);
}

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

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

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

/* 헤딩 스타일 - H03 clamp 반응형 */
h1 {
  font-size: clamp(2.10rem, 2.8vw + 1rem, 3.10rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--heading);
}

h2 {
  font-size: clamp(1.575rem, 2.1vw + 0.75rem, 2.325rem);
  font-weight: 750;
  line-height: 1.23;
  letter-spacing: -0.012em;
  color: var(--heading);
}

h3 {
  font-size: clamp(1.26rem, 1.68vw + 0.6rem, 1.86rem);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--heading);
}

/* 네비게이션 - N02: 중앙 로고 + 양쪽 메뉴 분할 */
header {
  background: rgba(240, 249, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

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

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

.menu-checkbox {
  display: none;
}

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

nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

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

nav li {
  margin: 0.5rem 0;
}

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.75rem 0;
  transition: color 0.2s;
}

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

/* 버튼 스타일 - B18: 미니멀 언더라인 */
.btn {
  border-bottom: 2px solid var(--primary);
  background: transparent;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn:hover {
  border-bottom-width: 3px;
  padding-bottom: 0.4rem;
}

/* 섹션 여백 - S08 */
section {
  padding: 3rem 0;
}

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

/* 히어로 섹션 - L12: 이미지 배경 히어로 */
.hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  padding: 5rem 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.icon-item {
  text-align: center;
  padding: 1.5rem;
}

.icon-item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.icon-item h3 {
  margin-bottom: 0.75rem;
}

/* 카드 스타일 - K03 */
.card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  background: #fff;
  margin-bottom: 1.5rem;
}

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

.card p {
  margin-bottom: 0.75rem;
}

/* 케이스 스터디 섹션 */
.case-study {
  background: #fff;
  padding: 3rem 0;
}

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

/* FAQ 스타일 */
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

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

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

/* 리뷰 카드 */
.review-card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  background: #fff;
  margin-bottom: 1.5rem;
}

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.review-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-rating {
  color: #ffa500;
  font-size: 0.875rem;
}

/* 연락처 정보 */
.contact-info {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-top: 2rem;
}

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

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* 푸터 */
footer {
  background: #fff;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  padding: 2rem 0;
  margin-top: 3rem;
}

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

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

.footer-links a {
  color: var(--link);
  text-decoration: none;
  font-size: 0.875rem;
}

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

/* Privacy/Terms 페이지 */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  margin-bottom: 1.5rem;
}

/* 데스크탑 네비게이션 */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  nav {
    position: static;
    max-height: none;
    background: transparent;
    border: none;
  }

  nav ul {
    display: flex;
    gap: 2rem;
    padding: 0;
  }

  nav li {
    margin: 0;
  }

  nav a {
    padding: 0;
  }

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

  .header-container {
    justify-content: center;
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}