:root {
  --ink: #352d36;
  --muted: #756c76;
  --rose: #f56f96;
  --rose-dark: #de557f;
  --rose-soft: #fff0f4;
  --peach: #fff8f5;
  --mint: #65c6ad;
  --mint-soft: #edf9f5;
  --gold: #e9b85c;
  --line: rgba(89, 62, 74, 0.1);
  --shadow: 0 24px 70px rgba(121, 72, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(248, 167, 190, 0.19), transparent 24rem),
    radial-gradient(circle at 92% 35%, rgba(101, 198, 173, 0.1), transparent 26rem),
    #fffdfc;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(104, 70, 57, 0.14);
}

.site-header nav {
  display: flex;
  gap: 42px;
  color: var(--muted);
  font-size: 15px;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
}

.site-header nav a::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  content: "";
  transition: left 0.2s ease, right 0.2s ease;
}

.site-header nav a:hover::after {
  right: 0;
  left: 0;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 650px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow i {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 24px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: clamp(50px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.02em;
}

.hero h1 em {
  position: relative;
  color: var(--rose-dark);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -7px;
  left: 2px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 111, 150, 0.18);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-button {
  min-width: 178px;
  padding: 15px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f783a4, #ef668e);
  box-shadow: 0 14px 30px rgba(239, 102, 142, 0.25);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  box-shadow: 0 18px 34px rgba(239, 102, 142, 0.32);
  transform: translateY(-2px);
}

.wechat-tip {
  color: var(--muted);
  font-size: 14px;
}

.hero-points {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  gap: 26px;
  color: #6d626d;
  font-size: 14px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 0 5px rgba(101, 198, 173, 0.12);
}

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

.hero-visual::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 46% 54% 55% 45% / 49% 44% 56% 51%;
  background: linear-gradient(145deg, #fff1f4, #fff9f6);
  content: "";
  transform: rotate(8deg);
}

.phone-card {
  position: relative;
  z-index: 2;
  width: 340px;
  min-height: 560px;
  padding: 18px;
  border: 9px solid #fff;
  border-radius: 42px;
  background: #fffaf8;
  box-shadow: var(--shadow), 0 0 0 1px rgba(98, 63, 77, 0.06);
  transform: rotate(2deg);
}

.phone-top {
  padding: 5px 5px 17px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.mini-dots {
  padding: 1px 9px 3px;
  border: 1px solid #eee5e7;
  border-radius: 20px;
  letter-spacing: 2px;
}

.phone-banner {
  position: relative;
  height: 178px;
  padding: 25px 20px;
  overflow: hidden;
  border-radius: 25px;
  color: #67434f;
  background: linear-gradient(135deg, #ffe3ea, #fff2e4);
}

.phone-banner > div:first-child {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-banner small {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.phone-banner strong {
  font-family: "STSong", "Songti SC", serif;
  font-size: 22px;
}

.phone-banner span {
  width: 145px;
  margin-top: 8px;
  color: #927581;
  font-size: 10px;
  line-height: 1.7;
}

.bouquet {
  position: absolute;
  right: 15px;
  bottom: 7px;
  width: 126px;
  height: 150px;
  transform: rotate(5deg);
}

.flower,
.leaf {
  position: absolute;
  display: block;
}

.flower {
  width: 48px;
  height: 48px;
  border: 10px dotted #f78dab;
  border-radius: 50%;
  background: #ffd86a;
  box-shadow: inset 0 0 0 8px #fff6bf;
}

.flower-a { top: 18px; left: 13px; }
.flower-b { top: 9px; right: 7px; border-color: #fff; background: #efacbc; transform: scale(0.85); }
.flower-c { top: 60px; right: 27px; border-color: #f9bc80; background: #fff2b6; transform: scale(0.72); }

.leaf {
  bottom: 13px;
  width: 28px;
  height: 63px;
  border-radius: 90% 0 90% 0;
  background: #7cc8a7;
}

.leaf-a { left: 37px; transform: rotate(-25deg); }
.leaf-b { right: 22px; transform: rotate(30deg) scale(0.85); }

.phone-tools {
  margin: 15px 0;
  padding: 14px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(86, 63, 71, 0.05);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(117, 78, 89, 0.06);
}

.phone-tools div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #786d77;
  font-size: 10px;
}

.phone-tools img,
.points-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--rose-soft);
  font-size: 20px;
}

.phone-tools div:nth-child(2) img { background: var(--mint-soft); }
.points-icon { color: #dca645; background: #fff7df; }

.phone-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-card {
  min-height: 118px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
}

.product-pink { background: linear-gradient(145deg, #ffe7ee, #fff4f6); }
.product-mint { background: linear-gradient(145deg, #e2f7f0, #f3fbf8); }
.product-art { margin: auto; color: var(--rose); font-size: 34px; line-height: 1; }
.product-mint .product-art { color: var(--mint); }
.product-card strong { margin-top: 9px; font-size: 12px; }
.product-card small { margin-top: 4px; color: #8b7c84; font-size: 8px; }

.floating-petal {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 34px;
  border-radius: 90% 10% 90% 10%;
  background: rgba(245, 111, 150, 0.36);
}

.petal-one { top: 62px; right: 25px; transform: rotate(32deg); }
.petal-two { bottom: 80px; left: 24px; background: rgba(101, 198, 173, 0.35); transform: rotate(-20deg) scale(0.75); }
.petal-three { top: 170px; left: 6px; background: rgba(233, 184, 92, 0.35); transform: rotate(78deg) scale(0.55); }

.services {
  padding: 115px max(24px, calc((100% - 1180px) / 2)) 125px;
  background: var(--peach);
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-heading h2,
.about-copy h2 {
  margin: 12px 0 15px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: clamp(34px, 4vw, 48px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 38px 34px;
  border: 1px solid rgba(117, 74, 88, 0.07);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 45px rgba(113, 76, 88, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  box-shadow: 0 22px 50px rgba(113, 76, 88, 0.12);
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: rgba(245, 111, 150, 0.23);
  background: linear-gradient(145deg, #fff, #fff6f8);
}

.featured-label {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: var(--rose-soft);
  font-size: 11px;
}

.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
}

.service-icon img { width: 40px; height: 40px; object-fit: contain; }
.service-icon span { font-size: 36px; }
.service-icon.pink { background: var(--rose-soft); }
.service-icon.mint { background: var(--mint-soft); }
.service-icon.gold { color: #d9a544; background: #fff7df; }

.service-card h3 {
  margin: 25px 0 12px;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.about-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.about-art::before,
.about-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-art::before {
  width: 350px;
  height: 350px;
  background: #fff3ea;
}

.about-art::after {
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(222, 85, 127, 0.25);
}

.sunflower-disc {
  position: relative;
  z-index: 2;
  width: 285px;
  height: 285px;
  padding: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.sunflower-disc img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.mini-program-note {
  margin-top: 30px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 3px solid var(--mint);
  border-radius: 0 16px 16px 0;
  background: var(--mint-soft);
}

.mini-program-note strong {
  flex: 0 0 auto;
  color: #3f8f7b;
}

.mini-program-note span {
  color: #63756f;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  min-height: 130px;
  padding: 25px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: #fffaf8;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand strong { font-size: 16px; letter-spacing: 0.06em; }
.footer-brand span,
.footer-meta { color: #8b8189; font-size: 12px; }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-meta a {
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: var(--rose-dark);
}

@media (max-width: 900px) {
  .hero {
    padding: 55px 0 85px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy > p { margin-right: auto; margin-left: auto; }
  .hero-actions,
  .hero-points { justify-content: center; }
  .hero-visual { min-height: 560px; }
  .service-grid { grid-template-columns: 1fr; max-width: 560px; }
  .service-card { min-height: 230px; }

  .about {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }

  .about-art { min-height: 355px; }
  .mini-program-note { text-align: left; }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 32px);
    height: 72px;
  }

  .brand { gap: 9px; font-size: 17px; }
  .brand img { width: 40px; height: 40px; }
  .site-header nav { gap: 18px; font-size: 13px; }
  .site-header nav a:last-child { display: none; }

  .hero {
    width: calc(100% - 36px);
    min-height: auto;
    margin-top: 8px;
    padding-top: 45px;
    gap: 42px;
  }

  .hero h1 { margin-top: 18px; font-size: 44px; }
  .hero-copy > p { font-size: 15px; line-height: 1.9; }
  .hero-actions { flex-direction: column; gap: 15px; }
  .hero-points { gap: 14px; font-size: 12px; }
  .hero-visual { min-height: 505px; }
  .hero-visual::before { width: 390px; height: 390px; }
  .phone-card { width: 292px; min-height: 480px; padding: 14px; border-width: 7px; border-radius: 35px; }
  .phone-banner { height: 150px; padding: 20px 16px; }
  .phone-banner strong { font-size: 19px; }
  .bouquet { right: 8px; transform: rotate(5deg) scale(0.82); }
  .phone-tools { margin: 12px 0; padding: 11px 5px; }
  .product-card { min-height: 103px; }
  .product-art { font-size: 29px; }

  .services { padding: 85px 18px 95px; }
  .section-heading { margin-bottom: 34px; }
  .service-card { padding: 30px 27px; }

  .about {
    width: calc(100% - 36px);
    padding: 90px 0;
  }

  .about-art { min-height: 300px; }
  .about-art::before { width: 280px; height: 280px; }
  .about-art::after { width: 305px; height: 305px; }
  .sunflower-disc { width: 230px; height: 230px; }
  .about-copy > p { font-size: 15px; }
  .mini-program-note { flex-direction: column; gap: 8px; }

  .site-footer {
    padding-top: 32px;
    padding-bottom: 32px;
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
