:root{--build-id:"ee49be4a-00fe-4e82-a9c4-6c5b658cc664";}
/* 가누다라45 - 인테리어 정적 사이트 */

/* F8 시스템 폰트 */
:root {
  --font-main: system-ui, "Helvetica Neue", Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;

  /* C40 색상 팔레트 */
  --primary: #292524;
  --bg: #f5f5f4;
  --text: #1c1917;
  --accent: #78716c;
  --heading: var(--text);
  --link: var(--text);

  /* H20 헤딩 반응형 */
  --h1-size: clamp(2.25rem, 5vw, 3.25rem);
  --h2-size: clamp(1.75rem, 4vw, 2.5rem);
  --h3-size: clamp(1.375rem, 3vw, 1.875rem);

  /* S03 여백 시스템 */
  --section-padding: 6rem;
  --container-width: 1400px;
  --gap: 4rem;
}

/* 전역 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: var(--bg);
}

/* H20 헤딩 스타일 */
h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.75;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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

/* N15 네비게이션 - 상단 스크롤 + 좌측 로고 + 우측 메뉴 (버튼형) + 햄버거 */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.menu-checkbox {
  display: none;
}

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

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

nav a {
  /* B20 버튼 스타일 */
  display: inline-block;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  background: var(--bg);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav a {
    display: block;
    text-align: center;
  }
}

/* 컨테이너 */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 섹션 */
section {
  padding: var(--section-padding) 0;
}

section + section {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* L20 모던 히어로 */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, #e7e5e4 100%);
  padding: calc(var(--section-padding) + 2rem) 0;
  text-align: center;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

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

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

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

/* K20 카드 스타일 */
.card {
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  padding: 1.75rem;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

/* 프로세스 맵 */
.process-map {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-content {
  flex: 1;
}

.process-content h3 {
  margin-bottom: 0.75rem;
}

/* CTA 섹션 */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}

/* 이미지/아이콘 컨테이너 */
.icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 1rem;
}

.icon-box svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: var(--primary);
}

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

.list-style li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.list-style li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* 푸터 */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: var(--section-padding);
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-info h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

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

/* 반응형 조정 */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem;
    --gap: 2rem;
  }

  .grid-4,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }
}