:root {
  --rose: #c93f83;
  --rose-dark: #8f275d;
  --rose-soft: #fbf1f6;
  --rose-pale: #fff7fb;
  --teal: #1f7773;
  --teal-soft: #edf8f6;
  --gold: #c69245;
  --ink: #241c28;
  --muted: #675d6c;
  --line: #eadfe6;
  --cream: #fffdf9;
  --shadow: 0 24px 60px rgba(151, 44, 99, .13);
  --shadow-hover: 0 34px 80px rgba(151, 44, 99, .20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--rose-soft);
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  line-height: 1.75;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p {
  margin: 0 0 18px;
  text-wrap: pretty;
}
h1, h2, h3 { margin: 0; line-height: 1.18; }

@keyframes fadeLift {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 63, 131, 0); }
  50% { box-shadow: 0 18px 50px rgba(201, 63, 131, .16); }
}

.site-header {
  background: var(--rose-soft);
  border-bottom: 1px solid rgba(206, 185, 198, .45);
}
.nav {
  width: min(1700px, calc(100% - 180px));
  min-height: 186px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 23px;
  font-weight: 800;
}
.nav-links a {
  color: #151018;
  position: relative;
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--rose); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.section-inner {
  width: min(1500px, calc(100% - 180px));
  margin: 0 auto;
}
.hero {
  overflow: hidden;
  min-height: calc(100vh - 186px);
  background:
    radial-gradient(circle at 74% 45%, rgba(255, 210, 230, .42), transparent 30%),
    radial-gradient(circle at 96% 42%, rgba(251, 241, 246, .92), transparent 38%),
    linear-gradient(110deg, #fbf1f6 0%, #fbf1f6 72%, #fcf2f7 100%);
}
.hero-inner {
  width: min(1500px, calc(100% - 180px));
  min-height: calc(100vh - 186px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(600px, 1fr) minmax(620px, 760px);
  align-items: center;
  gap: 42px;
}
.hero-copy {
  text-align: center;
  transform: translateY(-6px);
  max-width: 820px;
  justify-self: center;
  animation: fadeLift .75s ease both;
}
.hero h1 {
  color: var(--rose);
  font-size: clamp(54px, 4.25vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 26px;
  text-shadow: 0 8px 28px rgba(143, 39, 93, .10);
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.lead {
  color: var(--rose);
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 900;
}
.hero-media {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: end center;
}
.hero-composite {
  width: min(94%, 650px);
  height: auto;
  max-height: 760px;
  object-fit: contain;
  justify-self: center;
  align-self: end;
  animation: fadeLift .85s ease .1s both, gentleFloat 6s ease-in-out 1s infinite;
  filter: drop-shadow(0 28px 46px rgba(143, 39, 93, .14));
}
.arch {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(100%, 700px);
  height: 720px;
  border: 42px solid var(--rose);
  border-bottom: 0;
  border-radius: 360px 360px 20px 20px;
}
.poster-frame {
  position: relative;
  width: min(80%, 540px);
  padding: 12px 12px 0;
  background: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: var(--shadow);
  transform: translateX(-42px);
}
.hero-card {
  width: 100%;
  height: auto;
  max-height: 690px;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 18px 18px 0 0;
}

.section {
  padding: 94px 0;
  background: var(--cream);
}
.section.soft,
.story-section,
.mission-section {
  background: var(--rose-soft);
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2,
.section h2,
.page-hero h1 {
  color: var(--rose);
  font-size: clamp(38px, 3.8vw, 64px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.section-title p {
  color: #6c6270;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: .02em;
}
.title-line {
  width: min(72%, 900px);
  height: 5px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(201, 63, 131, .34), rgba(31, 119, 115, .28), transparent);
}
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.two-columns.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
.image-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.image-card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  transition: transform .55s ease;
}
.image-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.image-card:hover img { transform: scale(1.035); }
.image-card.wide img {
  max-height: 460px;
}
.info-stack {
  display: grid;
  gap: 22px;
}
.info-block {
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
  background: linear-gradient(145deg, #fff, #fff8fb);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(142, 54, 99, .09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.info-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--rose), var(--teal), var(--gold));
}
.info-block:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 63, 131, .28);
  box-shadow: var(--shadow-hover);
}
.info-block h3,
.service-card h3,
.growth-grid h3,
.contact-card h2 {
  color: var(--rose-dark);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #625965;
  font-size: clamp(17px, 1.08vw, 19px);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: .015em;
}
.plain-list li + li { margin-top: 8px; }
.plain-list li {
  position: relative;
  padding-left: 2px;
}
.plain-list li::first-letter {
  color: var(--rose);
  font-weight: 800;
}

.story-copy p {
  color: var(--rose-dark);
  font-size: 34px;
  font-weight: 900;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(201, 63, 131, .20);
  transition: transform .25s ease, box-shadow .25s ease;
}
.text-link:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(201, 63, 131, .28); }
.about-preview p,
.section p {
  color: #615866;
  font-size: clamp(18px, 1.16vw, 21px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: .018em;
}
.about-preview .two-columns > div:last-child,
.section .two-columns > div:not(.image-card):not(.story-copy) {
  position: relative;
}
.about-preview .two-columns > div:last-child p,
.section .two-columns > div:not(.image-card):not(.story-copy) p {
  padding: 22px 26px 22px 30px;
  border-left: 5px solid rgba(201, 63, 131, .42);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(135deg, rgba(255, 247, 251, .86), rgba(237, 248, 246, .48));
  box-shadow: 0 14px 36px rgba(142, 54, 99, .06);
}
.about-preview .two-columns > div:last-child p strong,
.section .two-columns > div:not(.image-card):not(.story-copy) p strong {
  color: var(--rose-dark);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #fff8fb);
  border: 1px solid rgba(234, 223, 230, .95);
  border-radius: 22px;
  padding: 38px 32px;
  min-height: 260px;
  box-shadow: 0 18px 44px rgba(142, 54, 99, .09);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 119, 115, .14), transparent 66%);
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-hover);
}
.service-card span {
  display: block;
  color: var(--gold);
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 20px;
}
.service-card p,
.info-block p,
.contact-card p,
.qr-pair figcaption {
  color: #625965;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .015em;
}
.service-card p {
  position: relative;
  z-index: 1;
}
.mission-text {
  color: var(--rose-dark) !important;
  font-size: clamp(34px, 3.5vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.3;
}
.walk-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.walk-gallery img {
  width: 100%;
  aspect-ratio: 9 / 11;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.walk-gallery img:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-hover);
}
.testimonial {
  max-width: min(1500px, calc(100% - 40px));
  margin: 54px auto 0;
  text-align: center;
  color: var(--muted);
  padding: 28px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 16px 44px rgba(142, 54, 99, .08);
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.72vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  color: #5f5664;
  letter-spacing: .015em;
}
.testimonial figcaption {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  color: var(--ink);
  font-size: 22px;
}
.testimonial img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.testimonial small { color: var(--muted); font-weight: 700; }
.join-band {
  padding: 86px 24px;
  background: linear-gradient(135deg, var(--rose), #b63378 58%, var(--rose-dark));
  color: #fff;
  text-align: center;
  animation: glowPulse 5s ease-in-out infinite;
}
.join-band h2 {
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 900;
}
.site-footer {
  padding: 22px 16px;
  background: #fff8fb;
  border-top: 1px solid rgba(234, 223, 230, .9);
  text-align: center;
}
.site-footer a {
  color: #6f6570;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.site-footer a:hover {
  color: var(--rose-dark);
}

.page-hero {
  padding: 74px 0 88px;
  text-align: center;
  background: var(--rose-soft);
}
.page-hero p {
  color: var(--rose);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .03em;
}
.banner-image {
  width: 100%;
  max-height: 420px;
  margin-top: 46px;
  object-fit: cover;
}
.growth-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.2fr) minmax(220px, 1fr);
  align-items: center;
  gap: 34px;
  text-align: center;
}
.growth-grid article {
  display: grid;
  gap: 20px;
  justify-items: center;
  color: var(--rose-dark);
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 44px rgba(142, 54, 99, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.growth-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.growth-grid article img {
  width: 258px;
  height: 258px;
  object-fit: contain;
}
.growth-center {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.place-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.place-gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.place-gallery img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.place-gallery .large {
  grid-row: span 2;
  height: 564px;
}
.contact-hero {
  text-align: left;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}
.contact-card {
  background: linear-gradient(145deg, #fff, #fff8fb);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 44px rgba(142, 54, 99, .09);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.phone-line {
  color: var(--rose-dark) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
}
.qr-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.qr-pair figure {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.qr-pair img {
  width: 258px;
  height: 258px;
  margin: 0 auto 12px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .nav,
  .section-inner,
  .hero-inner {
    width: min(1120px, calc(100% - 56px));
  }
  .nav { min-height: 150px; }
  .brand img { width: 132px; height: 132px; }
  .hero-inner {
    grid-template-columns: minmax(430px, 1fr) minmax(450px, 570px);
    gap: 28px;
  }
  .hero-media { min-height: 620px; }
  .hero-composite { width: min(94%, 520px); max-height: 620px; }
  .arch { width: min(100%, 540px); height: 590px; border-width: 32px; right: 8px; }
  .poster-frame { width: min(80%, 430px); transform: translateX(-28px); }
  .hero-card { max-height: 560px; }
}

@media (max-width: 900px) {
  .nav {
    min-height: 92px;
    width: min(100% - 32px, 1120px);
  }
  .brand img { width: 76px; height: 76px; }
  .nav-links { gap: 18px; font-size: 16px; }
  .section-inner,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }
  .hero,
  .hero-inner {
    min-height: auto;
  }
  .hero-inner,
  .two-columns,
  .two-columns.reverse,
  .contact-grid,
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding-top: 50px;
    gap: 36px;
  }
  .hero-media { min-height: 470px; }
  .hero-composite { width: min(96%, 360px); max-height: 470px; }
  .arch { width: min(100%, 360px); height: 430px; border-width: 24px; right: 50%; transform: translateX(50%); }
  .poster-frame { width: min(78%, 310px); transform: none; padding: 8px 8px 0; }
  .hero-card { max-height: 410px; }
  .testimonial { padding: 24px 18px; }
  .testimonial blockquote { white-space: normal; font-size: 21px; }
  .cards-3,
  .walk-gallery,
  .place-gallery {
    grid-template-columns: 1fr;
  }
  .place-gallery .large,
  .place-gallery img {
    height: auto;
    grid-row: auto;
  }
  .qr-pair { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
