
:root {
  --brand: #f36b21;
  --brand-dark: #d95111;
  --brand-soft: #fff4ee;
  --paper: #ffffff;
  --cream: #fffaf6;
  --ink: #2f241e;
  --muted: #73675f;
  --line: #eee2d8;
  --shadow: 0 18px 48px rgba(75, 48, 31, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 44%, #fff8f2 100%);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(238, 226, 216, .88);
  width: 100%;
}
.wp-block-template-part > .site-header {
  margin-top: 0;
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
}
.brand.wp-block-image {
  margin: 0;
}
.brand a {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: 240px;
  height: auto;
}
.brand img {
  display: block;
  width: auto!important;;
  height: 75px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.site-nav.wp-block-navigation {
  gap: 24px;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-left: auto;
}
.site-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #5f5149;
}
.site-nav .wp-block-navigation__container {
  gap: 24px;
}
.site-nav .wp-block-navigation-item__content {
  color: #5f5149;
  font-size: 18px;
  font-weight: 200;
}
.site-nav a:hover { color: var(--brand); }
.site-nav .wp-block-navigation-item__content:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  gap: 10px;
}
.header-actions.wp-block-buttons {
  gap: 10px;
  flex: 0 0 auto;
}
.header-actions.wp-block-buttons .wp-block-button {
  margin: 0;
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
}
.header-actions.wp-block-buttons .wp-block-button__link.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn img { width: 20px; height: 20px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(243, 107, 33, .24);
}
.wp-block-button.btn-primary,
.wp-block-button.btn-secondary {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.wp-block-button.btn-primary .wp-block-button__link {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(243, 107, 33, .24);
  border: 0;
}
.btn-primary:hover { background: var(--brand-dark); }
.wp-block-button.btn-primary .wp-block-button__link:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(243, 107, 33, .28);
}
.wp-block-button.btn-secondary .wp-block-button__link {
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(243, 107, 33, .28);
  box-shadow: none;
}
.wp-block-button.btn-secondary .wp-block-button__link:hover {
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(243, 107, 33, .18);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: #fff;
  border: 1px solid rgba(243, 107, 33, .2);
  border-radius: 12px;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 700;
  color: var(--brand);
}
.site-nav .wp-block-navigation__responsive-container-open,
.site-nav .wp-block-navigation__responsive-container-close {
  background: #fff;
  border: 1px solid rgba(243, 107, 33, .2);
  border-radius: 12px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--brand);
}
.site-nav .wp-block-navigation__responsive-container-open svg,
.site-nav .wp-block-navigation__responsive-container-close svg {
  width: 24px;
  height: 24px;
}
.site-nav .wp-block-navigation__responsive-dialog {
  margin-top: 0;
}
.site-nav .wp-block-navigation__responsive-container.is-menu-open {
  background: #fffaf6;
  color: var(--ink);
  padding: 24px;
}

.hero {
  padding: 54px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 32px;
  align-items: center;
}
.hero-copy { padding: 22px 0; }
.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}
.section-tag.light {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--brand);
}
.hero-slogan {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #3d2e25;
}
.hero-desc {
  margin: 18px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-band { padding-bottom: 14px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
}
.stat-card img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}
.stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  color: var(--brand);
}
.stat-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.section { padding: 86px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,245,238,.55), rgba(255,255,255,.88)); }

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy h2 {
  margin: 14px 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}
.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}
.value-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.value-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-thumb { height: 180px; }
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body {
  padding: 0 18px 22px;
  text-align: center;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(243, 107, 33, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -32px auto 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(76, 48, 30, .08);
}
.service-icon img {
  width: 52px;
  height: 52px;
}
.service-body h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.care-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.care-image { height: 250px; }
.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-copy {
  padding: 24px;
}
.care-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--brand);
}
.care-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}
.care-copy ul {
  margin: 0;
  padding-left: 20px;
  color: #5f5047;
}
.care-copy li { margin: 6px 0; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quick-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.quick-card div { padding: 18px; }
.quick-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.quick-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.gallery-card strong {
  display: block;
  padding: 14px 16px 16px;
  font-size: 15px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.adv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.adv-card img {
  width: 58px;
  height: 58px;
}
.adv-card h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}
.adv-card p {
  margin: 0;
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-body { padding: 20px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}
.news-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
}
.news-body h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.35;
}
.news-body p {
  margin: 0;
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  gap: 24px;
}
.contact-panel {
  background: linear-gradient(135deg, var(--brand) 0%, #ff8c3a 40%, #fff1e7 40.2%, #fff9f3 100%);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
}
.contact-intro {
  color: #fff;
  padding: 10px 4px 10px 6px;
}
.contact-intro h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.22;
}
.contact-intro p {
  margin: 0 0 24px;
  opacity: .95;
  max-width: 520px;
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px 0;
}
.contact-line img {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 6px;
}
.contact-line strong {
  display: block;
  font-size: 15px;
}
.contact-line span {
  display: block;
  opacity: .92;
  font-size: 14px;
}

.contact-form {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.contact-form h3 {
  margin: 0 0 14px;
  font-size: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 46px;
  padding: 0 14px;
  margin-bottom: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}
.contact-form .btn { width: 100%; }

.station-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.station-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.station-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.station-body { padding: 18px 20px 20px; }
.station-body h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.station-body p, .station-body span {
  display: block;
  margin: 0;
  color: var(--muted);
}
.station-body span {
  margin-top: 6px;
  color: var(--brand);
  font-weight: 700;
}


.footer-logo-box {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,1);
  margin: 0 0 12px;
}
.footer-logo {
  display: block;
  width: 200px;
  height: auto;
}
.footer-logo-box img {
  display: block;
  width: 200px;
  height: auto;
}

.site-footer {
  background: linear-gradient(135deg, #2d2a28, #171615);
  color: #fff;
  padding: 42px 0 18px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 26px;
}
.footer-grid.wp-block-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 26px;
}
.footer-grid.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  flex-basis: auto !important;
}
.footer-brand { margin-bottom: 12px; }
.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.copyright {
  margin-top: 28px;
  padding-top: 16px;
  text-align: center;
  color: rgba(255,255,255,.46);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-nav, .header-actions { display: none; }
  .site-nav.wp-block-navigation {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .site-nav.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none;
  }
  .site-nav.wp-block-navigation .wp-block-navigation__responsive-container-open {
    display: inline-flex;
  }
  .nav-toggle { display: inline-flex; }
  .hero-grid,
  .about-grid,
  .contact-panel,
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid,
  .service-grid,
  .quick-grid,
  .gallery-grid,
  .adv-grid,
  .news-grid,
  .station-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--max-width)); }
  .section { padding: 66px 0; }
  .hero { padding-top: 26px; }
  .hero h1 { font-size: 42px; }
  .stats-grid,
  .service-grid,
  .quick-grid,
  .gallery-grid,
  .adv-grid,
  .news-grid,
  .station-grid { grid-template-columns: 1fr; }
  .contact-panel {
    padding: 20px;
    background: linear-gradient(180deg, var(--brand) 0%, #ff8c3a 38%, #fff1e7 38.2%, #fff9f3 100%);
  }
  .hero-visual { min-height: 320px; }
  .brand-logo { width: 180px; }
  .footer-logo { width: 170px; }
}

.site-nav.open {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

/* ===== Inner Pages ===== */
.site-nav a.active { color: var(--brand); }
.inner-hero { padding: 64px 0 52px; background: linear-gradient(135deg, #fff8f2 0%, #ffffff 100%); }
.inner-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.inner-hero h1 { margin: 16px 0 12px; color: var(--brand); font-size: clamp(40px, 5vw, 64px); line-height: 1.08; letter-spacing: -.04em; }
.inner-hero p { margin: 0; max-width: 620px; color: var(--muted); font-size: 18px; }
.inner-hero-image { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.inner-hero-image img { width: 100%; height: 380px; object-fit: cover; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.content-block h2 { margin: 14px 0 14px; font-size: clamp(30px, 3vw, 42px); line-height: 1.2; }
.content-block p { color: var(--muted); margin: 0 0 14px; }
.image-card { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 420px; object-fit: cover; }
.pillar-grid, .timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-grid article, .timeline article { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.pillar-grid strong { color: var(--brand); font-size: 26px; }
.pillar-grid p, .timeline p { margin: 10px 0 0; color: var(--muted); }
.timeline b { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); }
.timeline h3 { margin: 14px 0 8px; }
.service-detail-list { display: grid; gap: 26px; }
.service-detail { display: grid; grid-template-columns: 420px 1fr; gap: 30px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); }
.service-detail:nth-child(even) { grid-template-columns: 1fr 420px; }
.service-detail:nth-child(even) > div:first-child { order: 2; }
.service-detail img { width: 100%; height: 270px; object-fit: cover; border-radius: 22px; }
.service-detail h2 { margin: 12px 0 10px; font-size: 34px; color: var(--brand); }
.service-detail p { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.tag-list li { padding: 8px 12px; border-radius: 999px; background: var(--brand-soft); color: #6b4b3c; font-weight: 700; font-size: 14px; }
.inner-gallery, .adv-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.inner-gallery article, .adv-detail-grid article { background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.inner-gallery img { width: 100%; height: 260px; object-fit: cover; }
.inner-gallery h3 { margin: 18px 20px 6px; font-size: 22px; }
.inner-gallery p { margin: 0 20px 22px; color: var(--muted); }
.adv-detail-grid article { padding: 28px; overflow: visible; }
.adv-detail-grid img { width: 64px; height: 64px; }
.adv-detail-grid h2 { margin: 16px 0 10px; font-size: 24px; }
.adv-detail-grid p { margin: 0; color: var(--muted); }
.news-list { display: grid; gap: 22px; }
.news-list article { display: grid; grid-template-columns: 360px 1fr; gap: 26px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 20px; box-shadow: var(--shadow); }
.news-list img { width: 100%; height: 230px; object-fit: cover; border-radius: 20px; }
.news-date { color: var(--brand); font-weight: 800; }
.news-list h2 { margin: 10px 0; font-size: 28px; }
.news-list p { margin: 0; color: var(--muted); }
.contact-page-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: stretch; }
.contact-form-page { box-shadow: var(--shadow); }
.contact-form-page h2 { margin: 0 0 18px; }
.contact-info-panel { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.contact-info-panel h2 { margin: 0 0 20px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-row img { width: 54px; height: 54px; }
.contact-info-row strong { display: block; }
.contact-info-row span { display: block; color: var(--muted); }
@media (max-width: 1100px) {
  .inner-hero-grid, .two-col, .service-detail, .service-detail:nth-child(even), .news-list article, .contact-page-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) > div:first-child { order: initial; }
  .pillar-grid, .timeline, .inner-gallery, .adv-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .inner-hero { padding: 42px 0; }
  .inner-hero-image img { height: 280px; }
  .pillar-grid, .timeline, .inner-gallery, .adv-detail-grid { grid-template-columns: 1fr; }
  .service-detail, .news-list article { padding: 14px; }
}


/* ===== Jiazan Official html-to-gutenberg Blocks ===== */
:root {
  --brand: #f36b21;
  --brand-dark: #d95111;
  --brand-soft: #fff4ee;
  --paper: #ffffff;
  --cream: #fffaf6;
  --ink: #2f241e;
  --muted: #73675f;
  --line: #eee2d8;
  --shadow: 0 18px 48px rgba(75, 48, 31, 0.08);
  --max-width: 1220px;
}

.container-block { width: min(var(--max-width), calc(100% - 40px)); margin-left:auto; margin-right:auto; }
.jz-section { padding: 86px 0; }
.jz-section-soft { background: linear-gradient(180deg, rgba(255,245,238,.55), rgba(255,255,255,.88)); }
.jz-heading { max-width: 760px; margin: 0 auto 36px; text-align:center; }
.jz-heading h2 { margin:14px 0 10px; font-size:clamp(30px,3vw,42px); line-height:1.2; }
.jz-heading p { margin:0; color:var(--muted); }
.jz-tag { display:inline-flex; padding:8px 14px; border-radius:999px; background:var(--brand-soft); color:var(--brand); font-weight:700; font-size:13px; }
.jz-btn { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 20px; border-radius:999px; font-size:14px; font-weight:700; text-decoration:none; }
.jz-btn-primary { background:var(--brand); color:#fff; box-shadow:0 12px 30px rgba(243,107,33,.24); }
.jz-btn-light { background:#fff; color:var(--brand); border:1px solid rgba(243,107,33,.18); }
.jz-button-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }

.jz-hero { padding:54px 0 36px; }
.jz-hero-grid { display:grid; grid-template-columns:1fr 1.08fr; gap:32px; align-items:center; }
.jz-hero h1 { margin:18px 0 10px; font-size:clamp(42px,5vw,70px); line-height:1.06; letter-spacing:-.04em; color:var(--brand); }
.jz-hero-slogan { margin:0; font-size:clamp(20px,2.2vw,28px); font-weight:700; color:#3d2e25; }
.jz-hero-desc { margin:18px 0 0; max-width:580px; color:var(--muted); font-size:16px; }
.jz-hero-image img { width:100%; min-height:460px; object-fit:cover; border-radius:32px; box-shadow:var(--shadow); }

.jz-stats-grid,.jz-service-grid,.jz-gallery-grid,.jz-news-grid,.jz-station-grid,.jz-adv-grid { display:grid; gap:18px; }
.jz-stats-grid { grid-template-columns:repeat(4,1fr); }
.jz-stat-card { background:#fff; border:1px solid var(--line); border-radius:22px; padding:22px 20px; display:flex; gap:14px; align-items:center; box-shadow:var(--shadow); }
.jz-stat-card img { width:54px; height:54px; flex:0 0 auto; }
.jz-stat-card strong { display:block; font-size:30px; line-height:1.1; color:var(--brand); }
.jz-stat-card span { display:block; color:var(--muted); font-weight:700; font-size:14px; }

.jz-two-col { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; }
.jz-about-image img,.jz-image-rounded img { width:100%; object-fit:cover; border-radius:30px; box-shadow:var(--shadow); }
.jz-value-list { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.jz-value-list span { padding:10px 16px; border-radius:999px; background:#fff; border:1px solid var(--line); font-weight:700; }

.jz-service-grid { grid-template-columns:repeat(5,1fr); }
.jz-service-card,.jz-care-card,.jz-gallery-card,.jz-adv-card,.jz-news-card,.jz-station-card { background:#fff; border-radius:24px; border:1px solid var(--line); overflow:hidden; box-shadow:var(--shadow); }
.jz-service-card img { width:100%; height:180px; object-fit:cover; }
.jz-card-body { padding:20px; text-align:center; }
.jz-card-body h3 { margin-top:0; margin-bottom:8px; font-size:20px; }
.jz-card-body p { color:var(--muted); font-size:14px; margin-bottom:0; }

.jz-care-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.jz-care-card img { width:100%; height:250px; object-fit:cover; }
.jz-care-card .jz-card-body { text-align:left; padding:24px; }
.jz-care-card h3 { color:var(--brand); font-size:28px; }
.jz-care-card ul { padding-left:20px; color:#5f5047; }

.jz-gallery-grid { grid-template-columns:repeat(3,1fr); }
.jz-gallery-card img { width:100%; height:210px; object-fit:cover; }
.jz-gallery-card strong { display:block; padding:14px 16px 16px; }

.jz-adv-grid { grid-template-columns:repeat(3,1fr); }
.jz-adv-card { padding:24px; }
.jz-adv-card img { width:58px; height:58px; }
.jz-adv-card h3 { margin:14px 0 8px; }
.jz-adv-card p { color:var(--muted); }

.jz-news-grid { grid-template-columns:repeat(3,1fr); }
.jz-news-card img { width:100%; height:220px; object-fit:cover; }
.jz-news-card .jz-card-body { text-align:left; }
.jz-news-meta { color:var(--brand); font-size:13px; font-weight:700; }

.jz-contact-panel { background:linear-gradient(135deg,var(--brand) 0%,#ff8c3a 40%,#fff1e7 40.2%,#fff9f3 100%); border-radius:30px; padding:30px; box-shadow:var(--shadow); display:grid; grid-template-columns:1fr 420px; gap:24px; }
.jz-contact-copy { color:#fff; }
.jz-contact-copy h2 { color:#fff; }
.jz-contact-form { background:rgba(255,255,255,.96); border:1px solid var(--line); border-radius:24px; padding:24px; }
.jz-contact-form input,.jz-contact-form select,.jz-contact-form textarea { width:100%; border:1px solid var(--line); border-radius:14px; min-height:46px; padding:0 14px; margin-bottom:12px; font:inherit; color:var(--ink); background:#fff; }
.jz-contact-form textarea { min-height:110px; padding-top:12px; }
.jz-station-grid { grid-template-columns:repeat(2,1fr); margin-top:24px; }
.jz-station-card img { width:100%; height:240px; object-fit:cover; }
.jz-station-card .jz-card-body { text-align:left; }

@media (max-width:1100px){
  .jz-hero-grid,.jz-two-col,.jz-contact-panel{grid-template-columns:1fr}
  .jz-stats-grid,.jz-service-grid,.jz-gallery-grid,.jz-news-grid,.jz-station-grid,.jz-adv-grid{grid-template-columns:repeat(2,1fr)}
  .jz-care-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .container-block{width:min(100% - 24px,var(--max-width))}
  .jz-section{padding:64px 0}
  .jz-stats-grid,.jz-service-grid,.jz-gallery-grid,.jz-news-grid,.jz-station-grid,.jz-adv-grid{grid-template-columns:1fr}
  .jz-hero-image img{min-height:320px}
  .jz-contact-panel{padding:20px;background:linear-gradient(180deg,var(--brand) 0%,#ff8c3a 38%,#fff1e7 38.2%,#fff9f3 100%)}
}
