:root{--build-id:"c7a57aca-7843-4597-bbff-a4cebdf19f72";}
/* 타라네라27 - 변수 조합 76번 (L16, C24, T01, B12, N07, K12, S07, H12, F4, CS12) */

/* =========================
   색상 변수 (C24)
========================= */
:root {
  --primary: #db2777;
  --bg: #fce7f3;
  --text: #9f1239;
  --accent: #ec4899;
  --heading: var(--text);
  --link: var(--text);
}

/* =========================
   기본 리셋 및 폰트 (F4)
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* =========================
   헤딩 스타일 (H12)
========================= */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 3.75vw, 3.1875rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

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

/* =========================
   컨테이너 및 섹션 여백 (S07)
========================= */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
}

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

/* =========================
   네비게이션 (N07)
========================= */
header {
  background: rgba(252, 231, 243, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 39, 119, 0.1);
}

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

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

.logo:hover,
.logo:focus {
  color: var(--accent);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a:hover,
nav a:focus {
  color: var(--primary);
}

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

nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* 모바일 네비게이션 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(219, 39, 119, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav li {
    border-bottom: 1px solid rgba(219, 39, 119, 0.05);
  }

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

/* =========================
   히어로 섹션 (L16: 패럴랙스)
========================= */
.hero {
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.05) 0%, rgba(236, 72, 153, 0.1) 100%);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-desc {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-icon {
  width: 120px;
  height: 120px;
  margin: 2rem auto 0;
  color: var(--primary);
}

/* =========================
   지그재그 섹션 (L16)
========================= */
.features-zigzag {
  background: #fff;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item.reverse {
  direction: rtl;
}

.feature-item.reverse > * {
  direction: ltr;
}

.feature-content h2 {
  margin-bottom: 1rem;
}

.feature-content p {
  line-height: 1.7;
}

.feature-visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  color: var(--primary);
}

@media (max-width: 768px) {
  .feature-item,
  .feature-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-visual {
    order: -1;
  }
}

/* =========================
   숫자 통계 섹션 (L16)
========================= */
.stats {
  background: var(--bg);
}

.stats h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.stat-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* =========================
   이유 카드 그리드
========================= */
.why-choose {
  background: #fff;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.reason-card {
  text-align: center;
  padding: 2rem;
  background: #f3f4f6;
  border-radius: 0;
}

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

.reason-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.reason-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* =========================
   CTA 풀폭 (L16)
========================= */
.cta-full {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  padding: 5.5rem 0;
}

.cta-full h2,
.cta-full p {
  color: #fff;
}

.cta-full p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* =========================
   버튼 스타일 (B12)
========================= */
.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

/* =========================
   페이지 헤더
========================= */
.page-header {
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.05) 0%, rgba(236, 72, 153, 0.1) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-intro {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.content-block {
  margin-bottom: 2.5rem;
}

.content-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.visual-divider {
  text-align: center;
  margin: 3rem 0;
}

.visual-divider svg {
  width: 100%;
  max-width: 400px;
  height: 100px;
  color: var(--primary);
}

.highlight-box {
  background: var(--bg);
  padding: 2rem;
  border-radius: 0;
  margin: 3rem 0;
}

.highlight-box h3 {
  margin-bottom: 1.5rem;
}

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

.value-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.quote-box {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 0;
  margin: 3rem 0;
  border-left: 4px solid var(--primary);
}

.quote-box blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
}

/* =========================
   혜택 카드 (K12)
========================= */
.benefit-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.benefit-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.benefit-content p {
  line-height: 1.7;
}

/* =========================
   타임라인
========================= */
.timeline-section {
  margin-top: 4rem;
}

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

.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: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-content {
  padding-left: 3rem;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.timeline-content p {
  line-height: 1.7;
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
}

.faq-question {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.faq-answer p {
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--bg);
  border-radius: 0;
}

.faq-cta h2 {
  margin-bottom: 1rem;
}

.faq-cta p {
  margin-bottom: 2rem;
}

/* =========================
   연락처
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  margin-bottom: 3rem;
}

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

.contact-info h2,
.contact-message h2 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 0;
}

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

.contact-desc {
  font-size: 0.875rem;
  color: #666;
}

.contact-hours {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0;
}

.contact-hours h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.message-box {
  background: var(--bg);
  padding: 2rem;
  border-radius: 0;
  margin-bottom: 2rem;
}

.message-box p {
  margin-bottom: 1rem;
}

.link-button {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.link-button:hover,
.link-button:focus {
  color: var(--accent);
}

.contact-tips {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0;
  margin-bottom: 2rem;
}

.contact-tips h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.contact-tips li::before {
  content: "• ";
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

.contact-note {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 0;
}

.contact-note h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.visit-info {
  text-align: center;
  padding: 3rem;
  background: #f3f4f6;
  border-radius: 0;
}

.visit-info h2 {
  margin-bottom: 1rem;
}

/* =========================
   CTA 섹션
========================= */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* =========================
   푸터
========================= */
footer {
  background: #fff;
  border-top: 1px solid rgba(219, 39, 119, 0.1);
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: #666;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--primary);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--primary);
}

.footer-copy {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 39, 119, 0.1);
}

.footer-copy p {
  font-size: 0.875rem;
  color: #666;
}

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

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

.doc-container a:hover,
.doc-container a:focus {
  color: var(--accent);
}

/* =========================
   접근성: 포커스 스타일
========================= */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}