:root {
  --bg: #FBFAF5;
  --bg-2: #ECF1E9;
  --bg-green-light: #E4EEE0;
  --surface: #FFFFFF;
  --green: #1E3A2B;
  --green-2: #2E5A41;
  --gold: #B8901F;
  --gold-light: #C9A227;
  --text: #1F2A22;
  --text-secondary: #5C6B5F;
  --border: rgba(30, 58, 43, 0.14);
  --border-soft: rgba(30, 58, 43, 0.08);
  --shadow: 0 14px 40px rgba(30, 58, 43, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1160px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
}

h1, h2, h3, .serif {
  font-family: 'Noto Serif SC', 'Songti SC', serif;
  letter-spacing: 0.5px;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 800px;
}

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #EEECE3 0%, #F7F5EE 100%);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 43, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.img-placeholder span {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.img-placeholder em {
  font-style: normal;
  font-size: 12px;
  color: var(--gold);
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.location-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
}

.banner-img {
  width: 100%;
  aspect-ratio: 21 / 9;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(30, 58, 43, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 46px;
}

.logo img {
  height: 100%;
  width: auto;
}

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

.nav a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.25s;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff !important;
  border-radius: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 58, 43, 0.26);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(30, 58, 43, 0.06);
}

.btn-white {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-white:hover {
  background: rgba(30, 58, 43, 0.07);
}

.btn-large {
  padding: 16px 38px;
  font-size: 17px;
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 100px;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #F5F8F3 0%, #E8F0E5 100%);
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.92) 0%, rgba(251, 250, 245, 0.72) 45%, rgba(251, 250, 245, 0.35) 100%),
    linear-gradient(180deg, rgba(251, 250, 245, 0.55) 0%, rgba(251, 250, 245, 0.85) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.hero-dot.active {
  background: var(--green);
  transform: scale(1.15);
}

.hero-overlay {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  background: rgba(251, 250, 245, 0.78);
  backdrop-filter: blur(8px);
  padding: 38px 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 40px rgba(30, 58, 43, 0.08);
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 20px;
  color: var(--green);
  letter-spacing: 1px;
}

.subtitle {
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-meta span {
  position: relative;
  padding-left: 16px;
}

.hero-meta span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-meta strong {
  color: var(--green);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img,
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-light {
  background: var(--bg-2);
}

.section-green {
  background: var(--bg-green-light);
}

.section-white {
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--green);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

.section-header p {
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.section-header.light p {
  color: var(--text-secondary);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 58, 43, 0.12);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(30, 58, 43, 0.08);
  color: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--green);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Locations */
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(30, 58, 43, 0.14);
}

.location-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(30, 58, 43, 0.08);
  color: var(--green);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.location-card h3 {
  font-size: 23px;
  margin-bottom: 8px;
  color: var(--green);
}

.location-addr {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.location-position {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 10px;
  padding: 5px 10px;
  background: rgba(30, 58, 43, 0.06);
  border-radius: 20px;
  transition: background 0.2s;
}

.location-position:hover {
  background: rgba(30, 58, 43, 0.12);
}

.location-position svg {
  width: 14px;
  height: 14px;
}

.location-metro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.metro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.location-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.location-contact {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
}

.location-contact span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2px;
}

.location-price {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}

.location-price strong {
  font-size: 22px;
  color: var(--green);
}

.location-highlights {
  list-style: none;
  margin-bottom: 26px;
}

.location-highlights li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.location-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.service-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(30, 58, 43, 0.08);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--green);
}

.service-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item[open] {
  border-left-color: var(--green);
}

.faq-item summary {
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Serif SC', serif;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  background: rgba(184, 144, 31, 0.07);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background:
    radial-gradient(circle at 50% -20%, rgba(46, 90, 65, 0.14) 0%, transparent 55%),
    linear-gradient(135deg, #EDF2EB 0%, #E1EBDD 100%);
  color: var(--green);
  text-align: center;
  padding: 104px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: var(--green);
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 34px;
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-2);
  color: var(--text-secondary);
  padding: 68px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
  color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--green);
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Noto Serif SC', serif;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.footer-copy {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
}

.gallery-item.span2 {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.span2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.span2 {
    grid-column: span 1;
  }
}

/* Float CTA */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(30, 58, 43, 0.32);
  z-index: 999;
  transition: transform 0.2s, filter 0.2s;
}

.float-cta:hover {
  filter: brightness(1.06);
  transform: scale(1.08);
}

.float-cta svg {
  width: 24px;
  height: 24px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .features,
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(251, 250, 245, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 110px 0 60px;
  }

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

  .hero-text {
    padding: 28px 24px;
    background: rgba(251, 250, 245, 0.92);
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 18px;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-img {
    aspect-ratio: 16 / 10;
  }

  .hero-dots {
    right: 50%;
    transform: translateX(50%);
  }

  .location-contact-row {
    flex-direction: column;
    align-items: stretch;
  }

  .location-contact-row .btn {
    width: 100%;
  }

  .features,
  .services,
  .locations,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-header h2,
  .cta-content h2 {
    font-size: 27px;
  }

  .location-card {
    padding: 26px;
  }

  .subsidy-grid {
    grid-template-columns: 1fr;
  }

  .location-img-link {
    display: block;
  }

  .location-img-link .location-img {
    margin-bottom: 22px;
  }

  .loc-name-link {
    color: var(--green);
  }

  .loc-name-link:hover {
    color: var(--gold);
  }

  .location-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* Store detail page */
/* Subsidy (企业补贴) */
.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.subsidy-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.subsidy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(30, 58, 43, 0.14);
}

.subsidy-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.subsidy-card .img-placeholder.subsidy-img {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
}

.subsidy-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--green);
}

.subsidy-card h3 a:hover {
  color: var(--gold);
}

.subsidy-summary {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.subsidy-facts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-secondary);
}

.subsidy-facts b {
  color: var(--green);
  margin-right: 6px;
}

.store-hero {
  position: relative;
  height: 460px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--bg-green-light);
}

.store-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hero .img-placeholder {
  position: absolute;
  inset: 0;
}

.store-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(30, 58, 43, .15) 0%, rgba(30, 58, 43, .55) 100%);
  padding-bottom: 48px;
}

.store-hero-overlay .container {
  color: #fff;
}

.store-hero-overlay h1 {
  font-size: 44px;
  color: #fff;
  margin: 10px 0 8px;
}

.store-hero-overlay p {
  font-size: 17px;
  opacity: .92;
}

.store-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 72px 24px;
}

.store-info h2,
.store-highlights h2 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.store-facts {
  list-style: none;
  margin-bottom: 26px;
}

.store-facts li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 16px;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

.store-facts li b {
  color: var(--green);
  min-width: 60px;
}

.store-facts li a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.store-facts li a:hover {
  color: var(--gold);
}

.store-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.store-highlights ul {
  list-style: none;
}

.store-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.store-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.store-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-2);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

/* Subsidy detail page extras */
.subsidy-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 16px 0 22px;
}

.subsidy-elig {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.subsidy-process {
  list-style: none;
  margin-bottom: 8px;
}

.subsidy-process li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== 门店详情页长描述 ===== */
.store-detail-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  background: var(--bg-2);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-bottom: 40px;
}

/* ===== 门店户型与价格 ===== */
.store-rooms {
  margin-top: 56px;
}
.rooms-head {
  text-align: center;
  margin-bottom: 32px;
}
.rooms-head h2 {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.rooms-head p {
  color: var(--text-secondary);
  font-size: 15px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.room-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 58, 43, .12);
}
.room-thumb {
  height: 170px;
  background: var(--bg-green-light);
  overflow: hidden;
}
.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-thumb-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  background: var(--bg-2);
}
.room-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-body h3 {
  font-size: 20px;
  color: var(--green);
}
.room-meta {
  font-size: 14px;
  color: var(--text-secondary);
}
.room-config {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.room-price {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.room-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 4px;
}

/* ===== 补贴详情页（详细版） ===== */
.sub-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.subsidy-summary {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}

.sub-block {
  margin-bottom: 34px;
}

.sub-block h2 {
  font-size: 23px;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-soft);
  letter-spacing: 1px;
}

.subsidy-policy,
.subsidy-agency {
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 30px;
  border-left: 3px solid var(--green);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.sp-label {
  display: inline-block;
  font-weight: 700;
  color: var(--green);
  margin-right: 10px;
  margin-bottom: 6px;
}

.subsidy-obj {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}

.subsidy-obj-detail {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.subsidy-std {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.8;
}

.subsidy-std-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.7;
}

.subsidy-cond,
.subsidy-mat {
  list-style: none;
  counter-reset: none;
}

.subsidy-cond li,
.subsidy-mat li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.subsidy-cond li::before,
.subsidy-mat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.subsidy-flow {
  list-style: none;
  counter-reset: step;
}

.subsidy-flow li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.subsidy-flow .step-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subsidy-company {
  background: linear-gradient(135deg, #f3f7f1, #e7efe3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 30px;
}

.subsidy-company h2 {
  font-size: 21px;
  color: var(--green);
  margin-bottom: 14px;
}

.subsidy-company ul {
  list-style: none;
}

.subsidy-company li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
}

.subsidy-company li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.sub-actions {
  margin: 10px 0 24px;
}

.subsidy-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted, #8a958c);
  background: #f6f4ee;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px dashed var(--border-soft);
}

@media (max-width: 768px) {
  .store-detail {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px;
  }

  .store-hero {
    height: 320px;
  }

  .store-hero-overlay h1 {
    font-size: 30px;
  }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-header h2,
  .cta-content h2 {
    font-size: 23px;
  }

  .section-header p {
    font-size: 15px;
  }

  .hero {
    min-height: 74vh;
    padding: 96px 0 52px;
  }

  .hero-text {
    padding: 22px 18px;
  }

  .hero-text h1 {
    font-size: 27px;
    line-height: 1.25;
  }

  .subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 26px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-meta {
    gap: 10px 16px;
    font-size: 13px;
  }

  .features,
  .services,
  .locations {
    gap: 16px;
  }

  .feature-card,
  .service-item,
  .location-card {
    padding: 22px 20px;
  }

  .feature-card h3,
  .location-card h3 {
    font-size: 20px;
  }

  .location-card h3 {
    font-size: 21px;
  }

  .location-contact-row .btn {
    width: 100%;
  }

  .location-price strong {
    font-size: 20px;
  }

  .cta-content h2 {
    margin-bottom: 12px;
  }

  .cta-content > p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 32px;
  }

  .store-hero {
    height: 260px;
  }

  .store-hero-overlay {
    padding-bottom: 32px;
  }

  .store-hero-overlay h1 {
    font-size: 25px;
  }

  .store-hero-overlay p {
    font-size: 14px;
  }

  .store-detail {
    padding: 40px 18px;
    gap: 28px;
  }

  .store-info h2,
  .store-highlights h2 {
    font-size: 23px;
  }

  .store-facts li {
    font-size: 15px;
  }

  .float-cta {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }

  .float-cta svg {
    width: 21px;
    height: 21px;
  }

  .store-rooms {
    margin-top: 40px;
  }
  .rooms-head h2 {
    font-size: 24px;
  }
  .room-thumb {
    height: 140px;
  }
  .room-body h3 {
    font-size: 18px;
  }
}
