:root {
  --ink: #2d2926;
  --muted: #746d68;
  --coral: #e56f61;
  --coral-deep: #c95349;
  --cream: #fffdfa;
  --sage: #729480;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 3px solid rgb(229 111 97 / 28%);
  outline-offset: 3px;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(45 41 38 / 8%);
  background: rgb(255 253 250 / 90%);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #f48a79, #dc6256);
  box-shadow: 0 8px 20px rgb(215 92 80 / 20%);
  color: #fff;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 2px;
  color: #9b8e87;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  color: #5f5854;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--coral-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgb(45 41 38 / 7%);
  background:
    radial-gradient(circle at 90% -10%, rgb(238 154 132 / 20%), transparent 34rem),
    linear-gradient(115deg, #fffdfa, #fdf7f0);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(67 54 47 / 8%) 0.65px, transparent 0.65px);
  background-size: 19px 19px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 45%, black);
  opacity: 0.38;
}

.hero-glow {
  position: absolute;
  right: 15%;
  bottom: -230px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgb(135 170 147 / 11%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 64px;
  padding-block: 76px 84px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 21px;
  border: 1px solid rgb(229 111 97 / 22%);
  border-radius: 999px;
  background: rgb(255 245 241 / 80%);
  padding: 7px 12px;
  color: #b94f45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1,
h2 {
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: var(--coral-deep);
}

.lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #6d6560;
  font-size: 17px;
  line-height: 1.9;
}

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

.primary-button {
  display: inline-flex;
  height: 50px;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  background: var(--coral);
  box-shadow: 0 14px 28px rgb(207 87 75 / 21%);
  padding: 0 22px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: 160ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--coral-deep);
}

.text-button {
  color: #685f5a;
  font-size: 14px;
  font-weight: 650;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0;
  padding: 0;
  color: #7b736e;
  font-size: 12px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list span {
  color: var(--sage);
  font-size: 8px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(202 142 124 / 18%);
  border-radius: 50%;
}

.orbit-one {
  inset: 8% 1% 7% 5%;
}

.orbit-two {
  inset: 21% 14% 20% 17%;
}

.phone-card {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 320px;
  min-height: 490px;
  transform: translateX(-50%) rotate(1.5deg);
  border: 1px solid rgb(81 62 54 / 10%);
  border-radius: 30px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 32px 80px rgb(91 61 48 / 15%);
  padding: 27px 22px;
}

.phone-card::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 58px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #e8e2de;
  content: "";
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 750;
}

.status {
  border-radius: 99px;
  background: #eef5f0;
  padding: 5px 8px;
  color: #658674;
  font-size: 9px;
}

.welcome-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 21px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1ed, #fff8f4);
  padding: 16px;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: white;
  color: var(--coral);
}

.welcome-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.welcome-card small {
  color: #9e756b;
  font-size: 9px;
}

.welcome-card strong {
  font-size: 13px;
}

.quick-grid {
  display: grid;
  margin-top: 17px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.quick-grid div {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee8e4;
  border-radius: 15px;
  color: #7b706a;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
}

.quick-grid b {
  color: #d67264;
  font-size: 22px;
}

.guide-preview {
  margin-top: 17px;
  border-radius: 18px;
  background: #f4f6f1;
  padding: 17px;
}

.guide-preview > small {
  color: #718276;
  font-size: 9px;
  font-weight: 700;
}

.guide-preview > strong {
  display: block;
  margin-top: 12px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 14px;
}

.guide-preview > p {
  margin: 7px 0 0;
  color: #7a817c;
  font-size: 10px;
}

.guide-preview > div {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #879087;
  font-size: 9px;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(79 62 55 / 8%);
  border-radius: 15px;
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 14px 35px rgb(79 59 49 / 12%);
  padding: 12px 15px;
}

.floating-note i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: #eaf3ed;
  color: #668b75;
  font-style: normal;
}

.floating-note div {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: #9a8f89;
  font-size: 8px;
}

.floating-note strong {
  color: #554d48;
  font-size: 10px;
}

.floating-left {
  bottom: 57px;
  left: 0;
}

.floating-right {
  top: 75px;
  right: -4px;
}

.floating-right i {
  background: #fff0ed;
  color: var(--coral);
}

.section {
  padding-block: 108px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 70px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.section-heading h2,
.journey-intro h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 47px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.section-heading > p,
.journey-intro > p:not(.section-label),
.about-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.service-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 315px;
  border: 1px solid #eee7e1;
  border-radius: 22px;
  background: white;
  padding: 30px;
  transition: 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgb(87 62 48 / 8%);
}

.service-icon {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 16px;
  font-size: 24px;
}

.coral .service-icon {
  background: #fff0ec;
  color: #d65f53;
}

.sage .service-icon {
  background: #edf4ef;
  color: #62836f;
}

.amber .service-icon {
  background: #fff5e8;
  color: #b57a37;
}

.service-card small {
  display: block;
  margin: 25px 0 7px;
  color: #9a8f88;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0;
  font-size: 22px;
}

.service-card i {
  display: block;
  width: 32px;
  height: 2px;
  margin: 22px 0 17px;
  background: #e4dbd5;
}

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

.journey {
  background: #f5f2ec;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.journey-intro > p:not(.section-label) {
  margin-top: 25px;
}

blockquote {
  display: inline-flex;
  gap: 10px;
  margin: 34px 0 0;
  border-top: 1px solid #ddd5ce;
  padding: 21px 0 0;
  color: var(--coral);
  font-family: "Songti SC", "STSong", serif;
  font-size: 14px;
}

blockquote span {
  color: #6d635e;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid #ddd5ce;
}

.steps li:first-child {
  padding-top: 0;
}

.steps > li > span {
  color: #c9a69d;
  font: italic 20px Georgia, serif;
}

.steps h3 {
  margin: 0;
  font-size: 19px;
}

.steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about {
  padding-block: 92px;
}

.about-card {
  display: grid;
  align-items: center;
  border: 1px solid #ede4de;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 100%, rgb(230 113 97 / 9%), transparent 26%),
    white;
  grid-template-columns: 120px 1fr 0.7fr;
  gap: 42px;
  padding: 52px 58px;
}

.about-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 30px;
  background: #fff0ec;
  color: var(--coral);
  font-size: 42px;
}

.about-copy h2 {
  font-size: clamp(28px, 3vw, 39px);
}

.about-copy > p:last-child {
  margin-top: 20px;
}

.medical-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 2px solid #b7cabc;
  padding: 9px 0 9px 22px;
  color: #6f7771;
}

.medical-note > span {
  color: var(--sage);
  font-size: 22px;
}

.medical-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

.medical-note strong {
  display: block;
  color: #506458;
}

footer {
  background: #292522;
  color: #f8f3ef;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 48px 38px;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand p {
  margin: 5px 0 0;
  color: #a9a09a;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #c8bfba;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 9%);
  padding-block: 20px 25px;
  color: #958b85;
  font-size: 10px;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 25px;
  }

  .journey-grid {
    gap: 55px;
  }

  .about-card {
    grid-template-columns: 90px 1fr;
  }

  .medical-note {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 600px);
  }

  .header-inner {
    height: 68px;
  }

  nav {
    display: none;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-block: 62px 70px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .lead {
    font-size: 15px;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .hero-visual {
    min-height: 510px;
    margin-top: 55px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .service-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    gap: 60px;
  }

  .service-card {
    min-height: auto;
  }

  .about {
    padding-block: 62px;
  }

  .about-card {
    display: block;
    padding: 34px 25px;
  }

  .about-mark {
    width: 82px;
    height: 82px;
    margin-bottom: 28px;
  }

  .medical-note {
    margin-top: 30px;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

  .footer-legal {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-card {
    width: min(310px, calc(100vw - 40px));
  }

  .floating-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
