:root{--build-id:"b64fe116-54f9-4bbc-81f9-97d7573a49d2";}
/* ==========================================
   이로노라56 그릇 웹사이트 스타일시트
   사용 패턴: L13, C12, T20, B06, N01, K06, S01, H06, F1, CS06
   ========================================== */

/* 변수 설정 - C12 (틸 컬러) */
:root {
  --primary: #0d9488;
  --bg: #ccfbf1;
  --text: #115e59;
  --accent: #14b8a6;
  --heading: var(--text);
  --link: var(--text);
  --border: #d1d5db;
  --white: #ffffff;
  --light-gray: #f9fafb;
}

/* 기본 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body 스타일 - F1 (Apple Core 폰트 스택) */
body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* 헤딩 스타일 - H06 (3.75rem, capitalize) */
h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: capitalize;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

/* 링크 스타일 */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

/* Skip to Content */
.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;
}

/* 컨테이너 - S01 (max-width: 1280px) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 헤더 - N01 (상단 고정 + 좌측 로고 + 우측 메뉴) */
header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  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);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  user-select: none;
}

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

nav a {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav li {
    border-bottom: 1px solid var(--border);
  }

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

/* 섹션 여백 - S01 (padding: 5rem 0, gap: 3rem) */
section {
  padding: 5rem 0;
}

/* 히어로 섹션 - L13 (비대칭 히어로) */
.hero-asymmetric {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
  padding: 6rem 0;
}

.hero-content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .hero-content-split {
    grid-template-columns: 1fr;
  }

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

/* 버튼 스타일 - B06 (사각형, 3px 테두리) */
.btn-primary {
  display: inline-block;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border: 3px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transition: all 0.3s;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  opacity: 1;
}

.hero-cta {
  margin-top: 1.5rem;
}

/* 카드 그리드 - L13 (3열 카드) */
.feature-cards {
  background-color: var(--white);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

/* 카드 스타일 - K06 (1px 테두리, 1rem 라운드) */
.card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.card p {
  line-height: 1.7;
}

@media (max-width: 968px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 타임라인 섹션 - L13 (타임라인) */
.timeline-section {
  background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% + 2rem);
  background-color: var(--accent);
  opacity: 0.3;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
  color: var(--heading);
}

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

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .timeline-item:not(:last-child)::after {
    left: 24px;
  }
}

/* CTA 섹션 - L13 (사이드바CTA) */
.cta-section {
  background-color: var(--accent);
  color: var(--white);
}

.cta-sidebar {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-sidebar h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-sidebar p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--white);
}

.cta-sidebar .btn-primary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-sidebar .btn-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--white);
}

/* 추가 콘텐츠 섹션 */
.extra-content {
  background-color: var(--white);
}

.extra-content p {
  line-height: 1.7;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* 페이지 헤더 */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  color: var(--white);
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.95;
}

/* 콘텐츠 섹션 */
.content-section {
  background-color: var(--white);
}

.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* 비주얼 박스 */
.visual-box,
.benefit-highlight,
.method-visual {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}

.visual-box svg,
.benefit-highlight svg,
.method-visual svg {
  max-width: 100%;
  height: auto;
}

/* 후기 아이템 */
.review-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-item h2 {
  margin-top: 0;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

.review-divider {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.review-divider svg {
  max-width: 100%;
  height: auto;
}

/* 연락처 섹션 */
.contact-section {
  background-color: var(--white);
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-detail h3 {
  margin-bottom: 0.5rem;
  color: var(--heading);
}

.contact-detail p {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-desc {
  margin-top: 0.75rem;
  font-weight: 400 !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  line-height: 1.7;
}

.contact-visual {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.contact-visual svg {
  max-width: 100%;
  height: auto;
}

.contact-notice {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg);
  border-radius: 1rem;
  border: 2px solid var(--accent);
}

.contact-notice h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-notice p {
  line-height: 1.7;
  margin-bottom: 0;
}

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

  .contact-icon {
    font-size: 2rem;
  }
}

/* 문서 컨테이너 (privacy, terms) */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 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);
  font-weight: 600;
  text-decoration: underline;
}

/* 푸터 */
footer {
  background-color: var(--text);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

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

.footer-links a {
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 접근성 - 키보드 포커스 */
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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

  .hero-asymmetric {
    padding: 4rem 0;
  }
}