* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  color: #2b2421;
  background: #fffaf7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.lp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(83, 55, 42, 0.08);
}

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

.lp-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #8b5543;
}

.lp-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  color: #5f514b;
}

.lp-header-btn,
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-header-btn {
  background: #2f241f;
  color: #fff;
}

.lp-btn:hover,
.lp-header-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  background: #b97860;
  color: #fff;
  box-shadow: 0 14px 30px rgba(185, 120, 96, 0.28);
}

.lp-btn-light {
  background: #fff;
  color: #8b5543;
  border: 1px solid rgba(139, 85, 67, 0.18);
}

.lp-hero {
  overflow: hidden;
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 187, 171, 0.35), transparent 32%),
    linear-gradient(135deg, #fff7f2 0%, #fffdf9 48%, #f7e4dc 100%);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(185, 120, 96, 0.12);
  color: #9d604c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lp-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.lp-hero p {
  max-width: 620px;
  margin: 0;
  font-size: 19px;
  color: #6d5d55;
}

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

.lp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
  max-width: 560px;
}

.lp-trust div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 85, 67, 0.12);
  border-radius: 22px;
}

.lp-trust strong {
  display: block;
  font-size: 28px;
  color: #9d604c;
}

.lp-trust span {
  font-size: 14px;
  color: #76665f;
}

.lp-hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-product-card {
  position: relative;
  width: min(430px, 100%);
  height: 520px;
  border-radius: 46px;
  background: linear-gradient(160deg, #fff 0%, #f7d9cc 100%);
  border: 1px solid rgba(139, 85, 67, 0.12);
  box-shadow: 0 35px 80px rgba(103, 67, 52, 0.18);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 38px;
}

.lp-product-card::before {
  content: "";
  position: absolute;
  inset: 54px 44px 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lp-product-card p {
  position: absolute;
  bottom: 30px;
  margin: 0;
  font-weight: 800;
  color: #8b5543;
}

.lp-bottle {
  position: absolute;
  border-radius: 28px 28px 16px 16px;
  box-shadow: 0 28px 45px rgba(91, 53, 41, 0.22);
}

.lp-bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  width: 58px;
  height: 48px;
  border-radius: 12px 12px 6px 6px;
  background: #c79a89;
}

.lp-bottle::after {
  content: "LAVIEL";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: rgba(126, 76, 58, 0.75);
}

.lp-bottle-main {
  width: 118px;
  height: 290px;
  bottom: 112px;
  left: 145px;
  background: linear-gradient(180deg, #fff 0%, #efbda8 100%);
}

.lp-bottle-sub {
  width: 92px;
  height: 230px;
  bottom: 120px;
  right: 92px;
  background: linear-gradient(180deg, #fff9f6 0%, #d9957a 100%);
  transform: rotate(8deg);
}

.lp-flower {
  position: absolute;
  left: 62px;
  bottom: 132px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #d59478 0 12%, transparent 13%),
    radial-gradient(circle at 50% 0%, #fff 0 22%, transparent 23%),
    radial-gradient(circle at 100% 50%, #fff 0 22%, transparent 23%),
    radial-gradient(circle at 50% 100%, #fff 0 22%, transparent 23%),
    radial-gradient(circle at 0% 50%, #fff 0 22%, transparent 23%);
  opacity: 0.92;
}

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

.lp-section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.lp-section-title span {
  color: #b97860;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.lp-section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.lp-benefit-grid,
.lp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lp-benefit-grid article,
.lp-review-grid article {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(139, 85, 67, 0.1);
  box-shadow: 0 18px 40px rgba(83, 55, 42, 0.06);
}

.lp-benefit-grid b {
  color: #d4a08d;
  font-size: 22px;
}

.lp-benefit-grid h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.lp-benefit-grid p,
.lp-review-grid p,
.lp-product-info p,
.lp-contact p {
  color: #6d5d55;
}

.lp-product-section {
  background: #fff;
}

.lp-product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.lp-product-image {
  position: relative;
  min-height: 470px;
}

.lp-round-bg {
  position: absolute;
  inset: 42px 0 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9df, #f6c2af);
}

.lp-cream,
.lp-serum {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(139, 85, 67, 0.14);
  box-shadow: 0 28px 60px rgba(91, 53, 41, 0.18);
}

.lp-cream {
  width: 230px;
  height: 160px;
  border-radius: 36px;
  left: 60px;
  bottom: 46px;
}

.lp-cream::after {
  content: "CREAM";
  position: absolute;
  inset: 52px 0 auto;
  text-align: center;
  font-weight: 900;
  color: #a0614b;
  letter-spacing: 0.18em;
}

.lp-serum {
  width: 112px;
  height: 310px;
  border-radius: 30px 30px 18px 18px;
  right: 78px;
  bottom: 82px;
  background: linear-gradient(180deg, #fff 0%, #e6aa93 100%);
}

.lp-serum::after {
  content: "SERUM";
  position: absolute;
  inset: 135px 0 auto;
  text-align: center;
  font-weight: 900;
  color: #8b5543;
  letter-spacing: 0.16em;
  transform: rotate(-90deg);
}

.lp-product-info h2 {
  margin: 18px 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.lp-check-list {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
}

.lp-check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #4c413c;
}

.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b97860;
  font-weight: 900;
}

.lp-process {
  background: linear-gradient(135deg, #2f241f, #7b4d40);
  color: #fff;
}

.lp-process .lp-section-title span,
.lp-process .lp-section-title h2 {
  color: #fff;
}

.lp-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-process-row div {
  padding: 30px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.lp-process-row strong {
  display: block;
  font-size: 28px;
}

.lp-process-row span {
  color: rgba(255, 255, 255, 0.78);
}

.lp-review-grid article p {
  min-height: 96px;
  font-size: 17px;
}

.lp-review-grid strong {
  color: #9d604c;
}

.lp-contact {
  background: linear-gradient(135deg, #fff4ed, #fff);
}

.lp-contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding: 52px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid rgba(139, 85, 67, 0.1);
  box-shadow: 0 25px 70px rgba(83, 55, 42, 0.08);
}

.lp-contact h2 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.lp-form {
  display: grid;
  gap: 16px;
}

.lp-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.lp-form input,
.lp-form textarea {
  width: 100%;
  border: 1px solid rgba(139, 85, 67, 0.18);
  background: #fffaf7;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.lp-form textarea {
  min-height: 130px;
  resize: vertical;
}

.lp-form-note {
  margin: 0;
  font-size: 13px;
}

.lp-footer {
  padding: 36px 0;
  background: #2f241f;
  color: #fff;
}

.lp-footer .lp-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lp-footer p {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lp-footer span {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .lp-nav {
    display: none;
  }

  .lp-hero-grid,
  .lp-product-grid,
  .lp-contact-box {
    grid-template-columns: 1fr;
  }

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

  .lp-hero-visual {
    min-height: 460px;
  }

  .lp-benefit-grid,
  .lp-review-grid,
  .lp-process-row,
  .lp-trust {
    grid-template-columns: 1fr;
  }

  .lp-contact-box {
    padding: 34px 24px;
  }

  .lp-footer .lp-container {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .lp-container {
    width: min(100% - 28px, 1180px);
  }

  .lp-header-btn {
    display: none;
  }

  .lp-hero-actions {
    flex-direction: column;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-product-card {
    height: 440px;
  }

  .lp-bottle-main {
    left: 112px;
  }

  .lp-bottle-sub {
    right: 58px;
  }
}
