/* 기본 세팅 */
:root {
  --lp-bg: #ffffff;
  --lp-bg-alt: #faf7f4;
  --lp-text: #222222;
  --lp-text-muted: #666666;
  --lp-accent: #ff7a3c;
  --lp-accent-soft: rgba(255, 122, 60, 0.08);
  --lp-border-soft: #e6e0d8;
  --lp-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --lp-radius-lg: 24px;
  --lp-radius-xl: 32px;
  --lp-transition-fast: 0.18s ease-out;
  --lp-container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--lp-bg);
  color: var(--lp-text);
}

.lp-root {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #fff7f0, #ffffff);
}

/* 공통 레이아웃 */

.lp-container {
  width: 100%;
  max-width: var(--lp-container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* 헤더 */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-weight: 700;
  font-size: 14px;
}

.lp-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-nav-link {
  font-size: 14px;
  text-decoration: none;
  color: var(--lp-text-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color var(--lp-transition-fast), color var(--lp-transition-fast),
    transform var(--lp-transition-fast);
}

.lp-nav-link:hover {
  background-color: rgba(148, 163, 184, 0.12);
  color: var(--lp-text);
  transform: translateY(-1px);
}

.lp-nav-cta {
  background-color: #0f172a;
  color: #f9fafb;
  padding-inline: 14px;
  font-weight: 500;
}

.lp-nav-cta:hover {
  background-color: #020617;
}

/* 모바일 메뉴 버튼 (데스크탑에서는 숨김) */

.lp-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

/* 히어로 */

.lp-hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 40px 0 72px;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-hero-title {
  font-size: clamp(32px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.04em;
}

.lp-hero-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-text-muted);
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--lp-transition-fast), color var(--lp-transition-fast),
    box-shadow var(--lp-transition-fast), transform var(--lp-transition-fast),
    border-color var(--lp-transition-fast);
}

.lp-btn-primary {
  background-color: var(--lp-accent);
  color: #ffffff;
  box-shadow: var(--lp-shadow-soft);
}

.lp-btn-primary:hover {
  background-color: #ff691f;
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.45);
}

.lp-btn-secondary {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--lp-text);
}

.lp-btn-secondary:hover {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #f9fafb;
}

.lp-btn-full {
  width: 100%;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-dot {
  opacity: 0.5;
}

/* 히어로 비주얼 카드 */

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

.lp-hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--lp-radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(20px);
}

.lp-hero-image-placeholder {
  position: relative;
  height: 220px;
  background: radial-gradient(circle at top left, #fed7aa, #fb923c);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
}

.lp-hero-image-placeholder span {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 6px 10px;
  border-radius: 999px;
}

.lp-hero-card-body {
  padding: 18px 18px 20px;
}

.lp-hero-card-title {
  margin: 0;
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-hero-card-number {
  margin: 6px 0 4px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-hero-card-caption {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
}

/* 공통 섹션 */

.lp-section {
  padding: 56px 0;
}

.lp-section-alt {
  background-color: var(--lp-bg-alt);
}

.lp-section-title {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.lp-section-subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* 특징 카드 */

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-feature-card {
  background-color: #ffffff;
  border-radius: var(--lp-radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--lp-border-soft);
}

.lp-feature-title {
  margin: 0 0 8px;
  font-size: 15px;
}

.lp-feature-text {
  margin: 0;
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* 가맹 절차 리스트 */

.lp-steps {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 14px;
}

.lp-step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lp-step-index {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: #0f172a;
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.lp-step-title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
}

.lp-step-text {
  margin: 0;
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* 문의 섹션 */

.lp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.lp-contact-form {
  background-color: #ffffff;
  border-radius: var(--lp-radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--lp-border-soft);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
}

.lp-form-field span {
  font-weight: 500;
}

.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  padding: 9px 11px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--lp-transition-fast), box-shadow var(--lp-transition-fast),
    background-color var(--lp-transition-fast);
}

.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2);
  background-color: #fff7ed;
}

/* 푸터 */

.lp-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 18px 0 22px;
  background: #0f172a;
  color: #9ca3af;
  margin-top: 20px;
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 12px;
}

.lp-footer-brand {
  margin: 0;
}

.lp-footer-meta {
  margin: 0;
}

/* 반응형 */

.lp-only-mobile {
  display: none;
}

.lp-only-desktop {
  display: inline;
}

@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero {
    padding-top: 28px;
  }

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

  .lp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .lp-header-inner {
    height: 60px;
  }

  .lp-nav {
    display: none;
  }

  .lp-nav-toggle {
    display: block;
  }

  .lp-hero {
    padding: 24px 0 40px;
  }

  .lp-hero-card {
    max-width: none;
  }

  .lp-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-section {
    padding: 40px 0;
  }

  .lp-section-title {
    font-size: 20px;
  }

  .lp-only-mobile {
    display: inline;
  }

  .lp-only-desktop {
    display: none;
  }
}
/* 히어로 섹션 배경 이미지 */
.lp-hero {
  background-image: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1600&q=80");
  /* 음식/브랜드와 어울리는 따뜻한 주방/바 식탁 느낌 이미지 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* 배경 위 어두운 / 밝은 오버레이 */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55); /* 필요하면 0.35~0.65로 조정 */
  backdrop-filter: blur(2px);
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1; /* 오버레이보다 위에 표시 */
}
