:root {
  --cream: #fbf5e8;
  --cream-2: #fffaf0;
  --berry: #6f1748;
  --berry-2: #9d2f67;
  --green: #2f7b54;
  --green-soft: #dff0e5;
  --gold: #c99a35;
  --charcoal: #232326;
  --muted: #66615f;
  --line: #eadfcc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(74, 43, 20, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-2);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--berry);
  border-radius: 10px;
  transition: top 0.2s ease;
}

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

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.top-strip {
  color: var(--white);
  background: linear-gradient(90deg, #4d1234, var(--berry), #2f7b54);
  font-size: 0.84rem;
  font-weight: 800;
}

.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(234, 223, 204, 0.9);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 30% 25%, #e5c46d, var(--berry) 55%, #3b1029);
  border-radius: 14px;
  font-size: 0.86rem;
  box-shadow: 0 12px 24px rgba(111, 23, 72, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a:not(.main-action) {
  color: #403b39;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--berry);
  border-radius: 3px;
}

.main-action,
.ghost-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.main-action {
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--berry-2));
  border: 0;
  box-shadow: 0 15px 32px rgba(111, 23, 72, 0.24);
}

.main-action:hover,
.ghost-action:hover {
  transform: translateY(-2px);
}

.small-action {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.86rem;
}

.ghost-action {
  color: var(--berry);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 23, 72, 0.22);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 82px;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 154, 53, 0.22), transparent 31%),
    radial-gradient(circle at 70% 74%, rgba(47, 123, 84, 0.18), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #fbf5e8 58%, #f7e9ef 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 3.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 2.45rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-text {
  max-width: 650px;
  color: #514b49;
  font-size: 1.12rem;
}

.hero-points {
  display: grid;
  gap: 11px;
  max-width: 640px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 21px;
  height: 21px;
  background: var(--green-soft);
  border: 6px solid var(--green);
  border-radius: 50%;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 30px;
}

.care-note,
.small-print {
  color: var(--muted);
  font-size: 0.88rem;
}

.care-note {
  max-width: 620px;
  margin: 20px 0 0;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.product-glow {
  position: absolute;
  width: min(480px, 92vw);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.15)),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(145deg, rgba(111, 23, 72, 0.2), rgba(47, 123, 84, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 38% 62% 56% 44%;
  box-shadow: var(--shadow);
  transform: rotate(-9deg);
}

.hero-showcase img {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  filter: drop-shadow(0 34px 24px rgba(58, 37, 22, 0.2));
}

.mini-panel {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 223, 204, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(35, 35, 38, 0.12);
  backdrop-filter: blur(12px);
}

.mini-panel strong {
  color: var(--berry);
  font-size: 1.06rem;
}

.mini-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.first-panel {
  left: 2%;
  top: 22%;
}

.second-panel {
  right: 3%;
  bottom: 17%;
}

.trust-strip {
  padding: 22px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.trust-panel span {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-panel strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.section-block {
  padding: 94px 0;
}

.cream-block {
  background: var(--cream);
}

.berry-block {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(135deg, #4d1234, var(--berry) 56%, #2f7b54);
}

.split-layout,
.routine-layout,
.faq-layout,
.foot-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}

.reverse-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.soft-frame,
.formula-card {
  position: relative;
  padding: 34px;
  background: linear-gradient(145deg, #ffffff, #f6ecdb);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.soft-frame img,
.formula-card img {
  margin: 0 auto;
  filter: drop-shadow(0 26px 20px rgba(72, 45, 24, 0.14));
}

.statement-box {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  color: #443d39;
  background: var(--green-soft);
  border-left: 5px solid var(--green);
  border-radius: 16px;
}

.section-title {
  max-width: 770px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title p:not(.kicker) {
  color: var(--muted);
}

.light-title p,
.light-title .kicker,
.berry-block .kicker {
  color: rgba(255, 255, 255, 0.86);
}

.choice-grid,
.benefit-grid,
.use-grid,
.review-grid,
.package-grid {
  display: grid;
  gap: 22px;
}

.choice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card,
.use-card,
.review-card,
.package-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(74, 43, 20, 0.06);
}

.choice-card {
  padding: 28px;
}

.icon-dot,
.use-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--berry);
  border-radius: 16px;
  font-weight: 900;
}

.routine-layout {
  align-items: start;
}

.routine-steps {
  display: grid;
  gap: 16px;
}

.routine-steps article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(74, 43, 20, 0.06);
}

.routine-steps span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  padding: 28px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
}

.benefit-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 17px;
  color: var(--berry);
  background: #f7e9ef;
  border-radius: 50%;
  font-weight: 900;
}

.benefit-card p,
.choice-card p,
.routine-steps p,
.use-card p,
.package-card li,
.feature-list span,
.formula-card span {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.formula-card {
  display: grid;
  gap: 20px;
}

.formula-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.use-grid {
  grid-template-columns: repeat(3, 1fr);
}

.use-card {
  padding: 28px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.review-card div {
  padding: 24px;
}

.star-row {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--berry);
}

.centered-text {
  text-align: center;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.package-card img {
  height: 210px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.package-price {
  color: var(--berry);
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.featured-card {
  border: 2px solid var(--berry);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.value-ribbon {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  padding: 7px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.guarantee-section {
  padding: 68px 0;
  background: linear-gradient(135deg, var(--green-soft), #fffaf0);
}

.guarantee-box,
.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.guarantee-box div {
  max-width: 720px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-item button span {
  color: var(--berry);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.final-section {
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 154, 53, 0.28), transparent 28%),
    linear-gradient(135deg, #2b0b1e, var(--berry));
}

.final-box {
  display: grid;
  max-width: 920px;
  text-align: center;
}

.final-box p,
.final-box .kicker {
  color: rgba(255, 255, 255, 0.84);
}

.centered-actions {
  justify-content: center;
}

.light-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.site-foot {
  padding: 64px 0 96px;
  color: rgba(255, 255, 255, 0.82);
  background: #1f1f22;
}

.foot-layout {
  align-items: start;
}

.foot-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.foot-links button,
.foot-links a {
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.copyright-row {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 10px 14px;
  background: rgba(255, 250, 240, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.sticky-cta .main-action {
  width: 100%;
}

.legal-layer,
.exit-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 31, 34, 0.72);
  backdrop-filter: blur(8px);
}

.legal-layer[hidden],
.exit-layer[hidden] {
  display: none;
}

.legal-box,
.exit-box {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, 88vh);
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  color: var(--berry);
  background: #f7e9ef;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.legal-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.exit-box {
  width: min(780px, 100%);
}

.exit-content {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
}

.exit-content img {
  margin: 0 auto;
}

.plain-button {
  cursor: pointer;
}

@media (max-width: 1020px) {
  .top-strip-inner {
    gap: 14px;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .hero-layout,
  .split-layout,
  .reverse-layout,
  .routine-layout,
  .faq-layout,
  .foot-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 440px;
  }

  .trust-grid,
  .benefit-grid,
  .review-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    transform: none;
  }

  .guarantee-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .foot-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 74px;
  }

  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .top-strip-inner span:nth-child(n+2) {
    display: none;
  }

  .nav-row {
    min-height: 66px;
  }

  .brand-mark {
    font-size: 0.95rem;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    padding: 52px 0 58px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .product-glow {
    width: 310px;
  }

  .mini-panel {
    min-width: 126px;
    padding: 12px 14px;
  }

  .first-panel {
    left: 0;
    top: 16%;
  }

  .second-panel {
    right: 0;
    bottom: 8%;
  }

  .section-block {
    padding: 68px 0;
  }

  .trust-grid,
  .benefit-grid,
  .review-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    padding: 12px;
  }

  .soft-frame,
  .formula-card {
    padding: 18px;
    border-radius: 24px;
  }

  .action-row .main-action,
  .action-row .ghost-action {
    width: 100%;
  }

  .package-card {
    padding: 24px;
  }

  .guarantee-box,
  .final-box {
    padding: 28px;
    border-radius: 22px;
  }

  .sticky-cta {
    display: block;
  }

  .site-foot {
    padding-bottom: 92px;
  }

  .exit-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-box,
  .exit-box {
    padding: 30px 22px;
  }
}
