:root{--build-id:"e5ab7e1f-2218-41d2-82c5-84592c20c8b4";}
/* 변수 조합: L15, C18, T04, B10, N13, K10, S05, H10, F7, CS10 */

/* F7: Spoqa Han Sans Neo + 명조 시스템 폰트 */
@import url("https://cdn.jsdelivr.net/gh/spoqa/spoqa-han-sans@latest/css/SpoqaHanSansNeo.css");

:root {
  /* C18: 오렌지 계열 */
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);

  /* S05: 7rem section, 1500px container, 5rem gap */
  --section-padding: 7rem 0;
  --container-width: 1500px;
  --gap: 5rem;

  /* H10: 3.5rem, 800 weight, uppercase */
  --h1-size: 3.5rem;
  --h1-weight: 800;
  --h1-line: 1.15;
  --h1-spacing: 0.02em;

  --h2-size: 2.1rem;
  --h2-weight: 700;
  --h2-line: 1.25;

  --h3-size: 1.5rem;
  --h3-weight: 600;
  --h3-line: 1.4;
}

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

body {
  font-family: "Spoqa Han Sans Neo", -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: "Nanum Myeongjo", serif;
  color: var(--heading);
  font-weight: 700;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line);
  letter-spacing: var(--h1-spacing);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line);
  margin-bottom: 1rem;
}

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

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  top: 10px;
}

/* N13: 상단 투명 + 좌측 메뉴 + 중앙 로고 + 우측 CTA */
header {
  background: rgba(255, 237, 213, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(124, 45, 18, 0.1);
}

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

.nav-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.logo {
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

/* B10: 0.75rem radius, 1.125rem 2.25rem padding, 700 weight, 2px border */
.nav-cta {
  border-radius: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: transparent;
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* 모바일 */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .logo {
    position: static;
    transform: none;
    font-size: 1.5rem;
  }

  .nav-left {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* L15: 컴팩트 히어로 */
.hero {
  padding: calc(7rem + 80px) 2rem 4rem;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, var(--h1-size));
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--text);
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  border-radius: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.cta-primary:hover,
.cta-primary:focus {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: var(--primary);
}

.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, var(--h2-size));
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* K10: #F9FAFB bg, 0.5rem radius, 1.5rem padding, border-left 4px solid */
.card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

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

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

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

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

/* 리스트 스타일 */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list .icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading);
}

/* Q&A 스타일 */
.qna-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.qna-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.qna-q {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

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

/* 가격표 스타일 */
.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.price-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  text-align: center;
}

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.price-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(124, 45, 18, 0.1);
}

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

/* 스티키 CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
}

.sticky-cta .cta-primary {
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Footer */
footer {
  background: rgba(124, 45, 18, 0.05);
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
  font-size: 0.9375rem;
}

.footer-contact {
  margin: 2rem 0;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 45, 18, 0.15);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* SVG 아이콘 */
.icon-svg {
  width: 3rem;
  height: 3rem;
  fill: var(--primary);
  margin-bottom: 1rem;
}

/* 접근성 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 포커스 스타일 */
*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* 반응형 */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
    --gap: 3rem;
  }

  .grid-gallery,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: calc(4rem + 80px) 1rem 3rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}