/* 至愈方 — New Chinese TCM clinic theme
   Design memo:
   - Industry: Chengdu TCM clinic; trust via calm space + clear booking
   - Mood: ink / rice paper / cinnabar seal / jade green (from interiors)
   - Anti-clone: NOT cream+bronze F&B; NOT navy+gold logistics; NOT purple AI skins
*/
:root {
  --zyf-ink: #1a1a1a;
  --zyf-ink-soft: #3a3a3a;
  --zyf-paper: #f3f0ea;
  --zyf-paper-deep: #e7e1d6;
  --zyf-white: #fffcf8;
  --zyf-seal: #b91c1c;
  --zyf-seal-deep: #8f1515;
  --zyf-jade: #1f4d45;
  --zyf-jade-soft: #2f6a5f;
  --zyf-line: rgba(26, 26, 26, 0.1);
  --zyf-muted: rgba(26, 26, 26, 0.62);
  --zyf-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
  --zyf-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --zyf-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --zyf-max: 1120px;
  --zyf-mbar: 0px;
  --zyf-radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(31, 77, 69, 0.07), transparent 55%),
    radial-gradient(800px 380px at 100% 8%, rgba(185, 28, 28, 0.045), transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, var(--zyf-paper) 40%, #efebe3 100%);
  color: var(--zyf-ink);
  font-family: var(--zyf-sans);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--zyf-jade); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--zyf-seal); }
button, input, textarea, select { font: inherit; }

.zyf-wrap { width: min(100% - 48px, var(--zyf-max)); margin-inline: auto; }

/* Header */
.zyf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zyf-line);
}
.zyf-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 10px 0;
}
.zyf-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
}
.zyf-logo img {
  height: 72px;
  width: auto;
  max-width: min(340px, 52vw);
  display: block;
  object-fit: contain;
}
.zyf-home .zyf-nav__home a,
.zyf-nav .is-active a,
.zyf-nav a:hover {
  color: var(--zyf-ink);
  border-bottom-color: var(--zyf-seal);
}
.zyf-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.zyf-nav a {
  color: var(--zyf-ink-soft);
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.zyf-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--zyf-radius);
  background: var(--zyf-jade);
  color: #fff !important;
  font-size: 0.9rem;
  white-space: nowrap;
}
.zyf-header__cta:hover { background: var(--zyf-jade-soft); color: #fff !important; }
.zyf-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--zyf-line);
  border-radius: var(--zyf-radius);
  background: var(--zyf-white);
  cursor: pointer;
}
.zyf-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--zyf-ink);
}

.zyf-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(26,26,26,.45);
}
.zyf-drawer[hidden] { display: none !important; }
.zyf-drawer.is-open { display: block; }
.zyf-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: var(--zyf-white);
  padding: 24px 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.zyf-drawer__close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  float: right;
  cursor: pointer;
  line-height: 1;
}
.zyf-drawer nav {
  display: grid;
  gap: 4px;
  margin-top: 40px;
  clear: both;
}
.zyf-drawer nav a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid var(--zyf-line);
  color: var(--zyf-ink);
}
.zyf-drawer nav a.is-active {
  color: var(--zyf-seal);
  font-weight: 600;
}

/* Buttons */
.zyf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--zyf-radius);
  border: 1px solid transparent;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.zyf-btn--ink {
  background: var(--zyf-ink);
  color: #fff !important;
}
.zyf-btn--ink:hover { background: var(--zyf-seal-deep); color: #fff !important; }
.zyf-btn--seal {
  background: var(--zyf-seal);
  color: #fff !important;
}
.zyf-btn--seal:hover { background: var(--zyf-seal-deep); color: #fff !important; }
.zyf-btn--line {
  background: transparent;
  border-color: rgba(26,26,26,.28);
  color: var(--zyf-ink) !important;
}
.zyf-btn--line:hover { border-color: var(--zyf-seal); color: var(--zyf-seal) !important; }
.zyf-btn--ghost {
  background: transparent;
  border-color: rgba(255,252,248,.55);
  color: #fffcf8 !important;
}
.zyf-btn--ghost:hover {
  background: rgba(255,252,248,.1);
  color: #fff !important;
}
.zyf-link-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--zyf-seal);
  font-size: 0.88rem;
}

/* Hero */
.zyf-hero {
  position: relative;
  min-height: calc(100svh - 88px);
  color: #fff;
  overflow: hidden;
  background: #1a1a1a;
}
.zyf-hero__track { position: absolute; inset: 0; }
.zyf-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  background: center / cover no-repeat #1a1a1a;
  pointer-events: none;
  transform: scale(1.02);
}
.zyf-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  animation: zyf-hero-ken 8s ease-out forwards;
}
@keyframes zyf-hero-ken {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
.zyf-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(12,20,18,.4) 0%, rgba(12,20,18,.16) 48%, rgba(12,20,18,.05) 100%),
    linear-gradient(180deg, rgba(12,20,18,.08), transparent 42%, rgba(12,20,18,.22));
}
.zyf-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: calc(100svh - 88px);
  padding: 56px 0 80px;
}
.zyf-hero__panel {
  max-width: 34rem;
  animation: zyf-hero-rise .9s ease both;
}
@keyframes zyf-hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.zyf-hero h1 {
  margin: 0 0 14px;
  max-width: 11em;
  font-family: var(--zyf-serif);
  font-size: clamp(2.05rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.zyf-hero p {
  margin: 0 0 24px;
  max-width: 26em;
  color: rgba(255,252,248,.92);
  font-size: 1.05rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}
.zyf-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.zyf-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.zyf-hero__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,252,248,.4);
  cursor: pointer;
  padding: 0;
}
.zyf-hero__dots button.is-active { background: #fff; width: 22px; border-radius: 999px; }

/* Sections */
.zyf-section { padding: 80px 0; }
.zyf-section--tint {
  background: linear-gradient(180deg, rgba(255,252,248,.7), rgba(231,225,214,.42));
}
.zyf-section--cta {
  padding-top: 12px;
  padding-bottom: 64px;
  background: rgba(231,225,214,.55);
}
.zyf-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
  max-width: 720px;
}
.zyf-section__head--row {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 28px;
}
.zyf-section__head--row > div { display: grid; gap: 10px; max-width: 640px; }
.zyf-section__jump {
  flex: 0 0 auto;
  align-self: end;
  padding-bottom: 4px;
  color: var(--zyf-jade);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.zyf-section__jump:hover {
  color: var(--zyf-seal);
  border-bottom-color: var(--zyf-seal);
}
.zyf-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--zyf-seal);
}
.zyf-kicker--light { color: rgba(255, 210, 200, .92); }
.zyf-section__head h2 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
}
.zyf-section__head p { margin: 0; color: var(--zyf-muted); }
.zyf-section__more { margin-top: 24px; }

/* Home intro — about */
.zyf-intro {
  padding-top: 56px;
  padding-bottom: 72px;
}
.zyf-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px 56px;
  align-items: center;
}
.zyf-intro__copy {
  display: grid;
  gap: 14px;
  align-content: start;
}
.zyf-intro__copy h2 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.25;
}
.zyf-intro__quote {
  margin: 4px 0 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.65;
  color: var(--zyf-ink);
}
.zyf-intro__text {
  margin: 0;
  color: var(--zyf-muted);
  line-height: 1.9;
  max-width: 34em;
}
.zyf-intro__media {
  position: relative;
  background: var(--zyf-paper-deep);
}
.zyf-intro__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(31, 77, 69, .28);
  pointer-events: none;
  z-index: 0;
}
.zyf-intro__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}

/* Home clinic glimpse — atmosphere, not service cards */
.zyf-glimpse__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.zyf-glimpse__item {
  display: grid;
  gap: 12px;
  color: inherit;
}
.zyf-glimpse__item:hover { color: inherit; }
.zyf-glimpse__item:hover h3 { color: var(--zyf-seal); }
.zyf-glimpse__media {
  overflow: hidden;
  background: var(--zyf-paper-deep);
}
.zyf-glimpse__media img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .5s ease;
}
.zyf-glimpse__item:hover .zyf-glimpse__media img { transform: scale(1.04); }
.zyf-glimpse__cap { display: grid; gap: 6px; padding: 0 2px; }
.zyf-glimpse__cap h3 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: 1.12rem;
  line-height: 1.35;
  transition: color .2s ease;
}
.zyf-glimpse__cap p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zyf-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px 40px;
  align-items: center;
}
.zyf-split__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--zyf-shadow);
  background: var(--zyf-paper-deep);
}
.zyf-split__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.zyf-split__copy { display: grid; gap: 12px; align-content: start; }
.zyf-split__copy h2 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
}
.zyf-split__lead { margin: 0; color: var(--zyf-muted); }
.zyf-split__excerpt {
  margin: 0;
  line-height: 1.85;
  color: var(--zyf-ink-soft);
}

/* Services */
.zyf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.zyf-service {
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  border-top: 2px solid var(--zyf-jade);
  background: transparent;
  transition: transform .25s ease;
}
.zyf-service:hover {
  transform: translateY(-3px);
  color: inherit;
}
.zyf-service__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--zyf-paper-deep);
}
.zyf-service__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.zyf-service:hover .zyf-service__media img { transform: scale(1.04); }
.zyf-service__body { padding: 16px 2px 4px; }
.zyf-service__body h3 {
  margin: 0 0 6px;
  font-family: var(--zyf-serif);
  font-size: 1.14rem;
}
.zyf-service__body p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Places — clinic interiors portfolio */
.zyf-places {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}
.zyf-place {
  display: grid;
  gap: 14px;
  color: inherit;
}
.zyf-place:hover { color: inherit; }
.zyf-place:hover h3 { color: var(--zyf-seal); }
.zyf-place__pic {
  overflow: hidden;
  background: var(--zyf-paper-deep);
  border-radius: 4px;
}
.zyf-place__pic img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.zyf-place:hover .zyf-place__pic img { transform: scale(1.03); }
.zyf-place__info {
  display: grid;
  gap: 6px;
  padding: 0 2px;
}
.zyf-place__info h3 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: 1.2rem;
  line-height: 1.35;
  transition: color .2s ease;
}
.zyf-place__info p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zyf-places--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.zyf-places--home .zyf-place__info h3 { font-size: 1.08rem; }

/* Newsfeed — 新闻动态 list (图+文) */
.zyf-newsfeed {
  display: grid;
  gap: 0;
}
.zyf-newsfeed__item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--zyf-line);
  color: inherit;
}
.zyf-newsfeed__item:first-child { padding-top: 0; }
.zyf-newsfeed__item:hover { color: inherit; }
.zyf-newsfeed__item:hover h3 { color: var(--zyf-seal); }
.zyf-newsfeed__media {
  overflow: hidden;
  background: var(--zyf-paper-deep);
  border-radius: 4px;
}
.zyf-newsfeed__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform .35s ease;
}
.zyf-newsfeed__item:hover .zyf-newsfeed__media img { transform: scale(1.04); }
.zyf-newsfeed__body {
  display: grid;
  gap: 8px;
  align-content: center;
}
.zyf-newsfeed__body time {
  font-family: var(--zyf-serif);
  font-size: 0.84rem;
  color: var(--zyf-seal);
}
.zyf-newsfeed__body h3 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  transition: color .2s ease;
}
.zyf-newsfeed__body p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zyf-newsfeed--home .zyf-newsfeed__item {
  padding: 20px 0;
}
.zyf-newsfeed--home .zyf-newsfeed__item.is-feature {
  padding-bottom: 28px;
  margin-bottom: 8px;
  border-bottom-width: 2px;
  border-bottom-color: rgba(31, 77, 69, .22);
}
.zyf-newsfeed--home .zyf-newsfeed__item.is-feature .zyf-newsfeed__media {
  border-radius: 0;
}
.zyf-newsfeed--home .zyf-newsfeed__item.is-feature .zyf-newsfeed__body h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}
.zyf-newsfeed--home .zyf-newsfeed__item.is-feature .zyf-newsfeed__body p {
  -webkit-line-clamp: 3;
}

/* keep story styles for search fallback if needed */
.zyf-stories {
  display: grid;
  gap: 48px;
}
.zyf-story {
  display: grid;
  gap: 18px;
  color: inherit;
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
}
.zyf-story:hover { color: inherit; }
.zyf-story:hover h3 { color: var(--zyf-seal); }
.zyf-story__media {
  overflow: hidden;
  background: var(--zyf-paper-deep);
}
.zyf-story__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.zyf-story__body { display: grid; gap: 10px; }
.zyf-story__body time {
  font-family: var(--zyf-serif);
  font-size: 0.84rem;
  color: var(--zyf-seal);
}
.zyf-story__body h3 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: 1.2rem;
}
.zyf-story__body p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.zyf-stories--search { gap: 0; }
.zyf-stories--search .zyf-story {
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--zyf-line);
}
.zyf-stories--search .zyf-story__body h3 { font-size: 1.15rem; }

.zyf-news-item__meta {
  font-size: 0.82rem;
  color: var(--zyf-seal);
  font-family: var(--zyf-serif);
}

.zyf-cta {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 16px 28px;
  padding: 26px 28px;
  border-radius: 14px;
  border: 1px solid rgba(31,77,69,.18);
  background:
    linear-gradient(135deg, rgba(31,77,69,.07), transparent 55%),
    var(--zyf-white);
  box-shadow: var(--zyf-shadow);
}
.zyf-cta h2 {
  margin: 0 0 6px;
  font-family: var(--zyf-serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
}
.zyf-cta__addr { margin: 0; color: var(--zyf-muted); font-size: 0.92rem; }
.zyf-cta__tel {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--zyf-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--zyf-jade);
  letter-spacing: 0.02em;
}
.zyf-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Home book / appointment desk */
.zyf-book {
  padding: 56px 0 72px;
  background:
    linear-gradient(180deg, rgba(231, 225, 214, .55), rgba(243, 240, 234, .9));
  border-top: 1px solid var(--zyf-line);
}
.zyf-book__top {
  display: grid;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(31, 77, 69, .18);
}
.zyf-book__intro {
  display: grid;
  gap: 10px;
  max-width: 40rem;
}
.zyf-book__intro h2 {
  margin: 0;
  font-family: var(--zyf-serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.25;
}
.zyf-book__intro p {
  margin: 0;
  color: var(--zyf-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.zyf-book__bar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr) minmax(0, .8fr) auto;
  gap: 22px 28px;
  align-items: end;
  padding-top: 28px;
}
.zyf-book__fact {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.zyf-book__fact span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--zyf-seal);
}
.zyf-book__fact strong {
  font-weight: 500;
  color: var(--zyf-ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}
.zyf-book__phone {
  font-family: var(--zyf-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--zyf-jade);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.zyf-book__phone:hover { color: var(--zyf-seal); }
.zyf-book__phone--sm {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}
.zyf-book__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: flex-end;
}
.zyf-book__link {
  color: var(--zyf-ink-soft);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(26, 26, 26, .28);
  padding-bottom: 2px;
}
.zyf-book__link:hover {
  color: var(--zyf-seal);
  border-bottom-color: var(--zyf-seal);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .zyf-hero__panel { animation: none; }
}

/* Inner pages */
.zyf-pagehead {
  position: relative;
  min-height: clamp(240px, 28vw, 320px);
  display: flex;
  align-items: flex-end;
  padding: 52px 0 36px;
  color: #fff;
  background-color: #1f4d45;
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}
.zyf-pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 24, 22, .48) 0%, rgba(16, 24, 22, .18) 55%, rgba(16, 24, 22, .1) 100%),
    linear-gradient(180deg, rgba(16, 24, 22, .12), rgba(16, 24, 22, .42));
}
.zyf-pagehead .zyf-wrap { position: relative; z-index: 1; }
.zyf-pagehead h1 {
  margin: 0 0 8px;
  font-family: var(--zyf-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.zyf-pagehead p { margin: 0; max-width: 36em; opacity: .9; }
.zyf-breadcrumb { margin-top: 14px; font-size: .85rem; opacity: .8; }
.zyf-breadcrumb a { color: inherit; }

.zyf-main {
  padding: 36px 0 72px;
  padding-bottom: calc(72px + var(--zyf-mbar));
}
.zyf-main--home {
  padding-top: 0;
  padding-bottom: 0;
}

/* Inner page reading width — keep wrap gutters; do not override to 100% */
.zyf-read {
  max-width: 760px;
}
.zyf-read--wide {
  max-width: var(--zyf-max);
}
.zyf-read__figure {
  margin: 0 0 28px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--zyf-paper-deep);
  box-shadow: var(--zyf-shadow);
}
.zyf-read__figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.zyf-inline-cta {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 16px 24px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(31,77,69,.16);
  background: linear-gradient(135deg, rgba(31,77,69,.06), transparent 55%), var(--zyf-white);
}
.zyf-inline-cta strong {
  display: block;
  font-family: var(--zyf-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.zyf-inline-cta span { color: var(--zyf-muted); font-size: .92rem; }
.zyf-inline-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.zyf-contact { max-width: 880px; }
.zyf-contact__intro { margin-bottom: 28px; }
.zyf-contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.zyf-contact__card {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--zyf-line);
  background: var(--zyf-white);
}
.zyf-contact__card--wide { grid-column: 1 / -1; }
.zyf-contact__card span {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--zyf-muted);
}
.zyf-contact__card strong {
  font-family: var(--zyf-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zyf-jade);
  line-height: 1.45;
}
.zyf-form-page {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 28px 28px 32px;
  border-radius: 14px;
  border: 1px solid var(--zyf-line);
  background: var(--zyf-white);
  box-shadow: var(--zyf-shadow);
}

.zyf-panel__intro { margin-bottom: 18px; }
.zyf-panel__actions { margin-top: 24px; }
.zyf-detail__meta { margin-bottom: 12px; }
.zyf-detail__cover {
  margin-bottom: 22px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--zyf-paper-deep);
}
.zyf-detail__cover img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: contain;
  background: var(--zyf-paper-deep);
}
.zyf-prose { color: var(--zyf-ink); font-size: 1.02rem; }
.zyf-prose p { margin: 0 0 1em; }
.zyf-prose h3 { font-family: var(--zyf-serif); margin: 1.4em 0 .6em; }
.zyf-prose ul { padding-left: 1.2em; }
.zyf-prose img { border-radius: 12px; }
.zyf-prose table { width: 100%; border-collapse: collapse; }
.zyf-prose table td, .zyf-prose table th {
  border: 1px solid var(--zyf-line);
  padding: 8px 10px;
}
.zyf-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.zyf-related {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--zyf-line);
}
.zyf-related__title {
  margin: 0 0 14px;
  font-family: var(--zyf-serif);
  font-size: 1.15rem;
}
.zyf-related__list {
  display: grid;
  gap: 8px;
}
.zyf-related__list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--zyf-line);
  color: var(--zyf-ink-soft);
}
.zyf-related__list a:hover { color: var(--zyf-seal); }

.zyf-pagebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 8px;
}
/* Pboot wraps each control in <span>; flatten so only real controls get chrome */
.zyf-pagebar > span {
  display: contents;
}
.zyf-pagebar .page-status {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--zyf-muted);
  font-size: 0.84rem;
  line-height: 1.4;
  white-space: nowrap;
}
.zyf-pagebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--zyf-line);
  background: var(--zyf-white);
  color: var(--zyf-ink-soft);
  font-size: 0.88rem;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.zyf-pagebar a:hover {
  border-color: var(--zyf-jade);
  color: var(--zyf-jade);
}
.zyf-pagebar a[href="javascript:;"],
.zyf-pagebar a[href="javascript:void(0)"],
.zyf-pagebar a[href="#"] {
  opacity: 0.38;
  pointer-events: none;
  cursor: default;
  background: transparent;
}
.zyf-pagebar .page-num {
  min-width: 40px;
  padding: 0;
}
.zyf-pagebar .page-num-current,
.zyf-pagebar .page-num.page-num-current {
  background: var(--zyf-jade);
  border-color: var(--zyf-jade);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}
.zyf-pagebar .page-num-current:hover,
.zyf-pagebar .page-num.page-num-current:hover {
  color: #fff;
  border-color: var(--zyf-jade);
}

.zyf-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--zyf-line);
}
.zyf-detail-nav span {
  display: block;
  margin-bottom: 4px;
  font-size: .78rem;
  color: var(--zyf-muted);
}
.zyf-detail-nav a { color: var(--zyf-ink-soft); font-size: .95rem; }
.zyf-detail-nav__next { text-align: right; }
.zyf-detail-nav__prev:not(:has(a)),
.zyf-detail-nav__next:not(:has(a)) { opacity: .45; }

.zyf-form { display: grid; gap: 14px; }
.zyf-form label { display: grid; gap: 6px; font-size: .92rem; }
.zyf-form input,
.zyf-form textarea {
  width: 100%;
  border: 1px solid var(--zyf-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.zyf-form input:focus,
.zyf-form textarea:focus {
  outline: none;
  border-color: rgba(31,77,69,.45);
  box-shadow: 0 0 0 3px rgba(31,77,69,.12);
}
.zyf-form__row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: end;
}
.zyf-form__captcha {
  height: 44px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* Footer */
.zyf-footer {
  margin-bottom: 0;
  padding-bottom: var(--zyf-mbar);
  background:
    linear-gradient(180deg, rgba(185,28,28,.07), transparent 40%),
    linear-gradient(135deg, #1f4d45 0%, #163832 55%, #102821 100%);
  color: rgba(255,252,248,.9);
  border-top: 2px solid var(--zyf-seal);
}
.zyf-footer a { color: rgba(255,252,248,.82); }
.zyf-footer a:hover { color: #fff; }
.zyf-footer__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  padding: 36px 0 28px;
}
.zyf-footer__brand { min-width: 0; flex: 1; }
.zyf-footer__title {
  margin: 0 0 6px;
  font-family: var(--zyf-serif);
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.06em;
}
.zyf-footer__slogan {
  margin: 0 0 18px;
  font-size: .84rem;
  opacity: .68;
  letter-spacing: .1em;
}
.zyf-footer__addr {
  margin: 0 0 10px;
  max-width: 34em;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,252,248,.86);
}
.zyf-footer__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--zyf-serif);
  font-size: 1.05rem;
  color: #fff;
}
.zyf-footer__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.zyf-footer__qr img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}
.zyf-footer__qrtext { display: grid; gap: 4px; }
.zyf-footer__qrtext strong {
  font-family: var(--zyf-serif);
  font-size: .95rem;
  color: #fff;
  font-weight: 600;
}
.zyf-footer__qrtext span { font-size: .74rem; opacity: .62; }
.zyf-footer__bottom {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,252,248,.1);
}
.zyf-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding: 14px 0;
  font-size: .76rem;
  opacity: .7;
}

.zyf-mbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(16,40,33,.96);
  border-top: 1px solid rgba(255,252,248,.12);
}
.zyf-mbar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  color: #fffcf8;
  font-size: .85rem;
}

@media (max-width: 1199px) {
  .zyf-service-grid { grid-template-columns: repeat(2, 1fr); }
  .zyf-places--home { grid-template-columns: repeat(2, 1fr); }
  .zyf-glimpse__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zyf-glimpse__item:last-child { grid-column: 1 / -1; }
  .zyf-glimpse__item:last-child .zyf-glimpse__media img { aspect-ratio: 16/9; }
  .zyf-newsfeed__item { grid-template-columns: 220px minmax(0, 1fr); gap: 18px 22px; }
  .zyf-newsfeed--home .zyf-newsfeed__item.is-feature {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}
@media (max-width: 991px) {
  .zyf-header__cta { display: none; }
  .zyf-nav { display: none; }
  .zyf-nav-toggle { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .zyf-split { grid-template-columns: 1fr 1fr; gap: 20px; }
  .zyf-intro__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .zyf-hero { min-height: calc(100svh - 72px); }
  .zyf-hero__content { min-height: calc(100svh - 72px); padding: 40px 0 64px; }
  .zyf-section__head--row { grid-template-columns: 1fr; }
  .zyf-section__jump { justify-self: start; }
  .zyf-book__bar {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .zyf-book__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .zyf-footer__main { flex-wrap: wrap; align-items: flex-start; }
  .zyf-inline-cta { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --zyf-mbar: 56px; }
  .zyf-logo img { height: 54px; max-width: 220px; }
  .zyf-split { grid-template-columns: 1fr; }
  .zyf-intro {
    padding-top: 40px;
    padding-bottom: 52px;
  }
  .zyf-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .zyf-intro__copy { padding-left: 0; }
  .zyf-intro__media::before { inset: 12px -12px -12px 12px; }
  .zyf-service-grid { grid-template-columns: 1fr; }
  .zyf-places,
  .zyf-places--home { grid-template-columns: 1fr; gap: 28px; }
  .zyf-glimpse__grid { grid-template-columns: 1fr; gap: 24px; }
  .zyf-glimpse__item:last-child { grid-column: auto; }
  .zyf-glimpse__item:last-child .zyf-glimpse__media img,
  .zyf-glimpse__media img { aspect-ratio: 4/3; }
  .zyf-newsfeed__item,
  .zyf-newsfeed--home .zyf-newsfeed__item.is-feature {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  .zyf-contact__cards { grid-template-columns: 1fr; }
  .zyf-form-page { padding: 22px 18px; }
  .zyf-cta { grid-template-columns: 1fr; }
  .zyf-cta__actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .zyf-cta__actions .zyf-btn { width: 100%; }
  .zyf-cta-band { padding: 48px 0 calc(48px + var(--zyf-mbar)); }
  .zyf-cta-band__actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .zyf-cta-band__actions .zyf-btn { width: 100%; }
  .zyf-book {
    padding: 40px 0 calc(48px + var(--zyf-mbar));
  }
  .zyf-book__bar { grid-template-columns: 1fr; gap: 18px; }
  .zyf-book__actions { width: 100%; }
  .zyf-detail-nav { grid-template-columns: 1fr; }
  .zyf-detail-nav__next { text-align: left; }
  .zyf-footer__main { display: none; }
  .zyf-footer__bottom-inner { justify-content: center; text-align: center; }
  .zyf-mbar { display: flex; }
  .zyf-section { padding: 52px 0; }
  .zyf-main { padding-bottom: calc(28px + var(--zyf-mbar)); }
  .zyf-main--home { padding-bottom: 0; }
  .zyf-section--cta { padding-bottom: calc(28px + var(--zyf-mbar)); }
}
@media (max-width: 480px) {
  .zyf-wrap { width: min(100% - 40px, var(--zyf-max)); }
  .zyf-pagehead { min-height: 210px; padding: 40px 0 28px; }
  .zyf-form__row { grid-template-columns: 1fr 100px; }
  .zyf-cta__actions,
  .zyf-cta-band__actions { grid-template-columns: 1fr; }
  .zyf-hero h1 { font-size: 1.75rem; }
}
