.wp-site-blocks > .is-position-sticky { z-index: 50; }

/* 1. 全局平滑滚动 + anchor 跳转给吸顶 nav 留出动态偏移 */
html { scroll-behavior: smooth; }
.hp-wrap [id^="hp-"] { scroll-margin-top: calc(var(--bgo-sticky-top, 121px) + 50px); }

/* 2. 导航栏 (hp-nav)：贴在 site header 之下 */
.hp-nav {
    position: sticky;
    top: var(--bgo-sticky-top, 121px);
    z-index: 30;
    background: var(--hp-cream);
    border-bottom: 1px solid var(--hp-line);
    transition: box-shadow .3s var(--hp-ease);
}

/* 3. 锁死大区块层级 */
.hp-section { position: relative !important; z-index: 1 !important; }

/* 4. 取消侧边栏悬浮, 让医生区块网格在底层 */
.hp-aside-card { position: relative !important; top: auto !important; z-index: 1 !important; }
.hp-grid { position: relative !important; z-index: 2 !important; }

/* 5. 修复医生绿点被切断 (释放外层 overflow, 切圆角仅限 img) */
.hp-doctor-row__avatar {
    position: relative !important;
    overflow: visible !important;
    z-index: 2 !important;
}
.hp-doctor-row__avatar img { border-radius: 50% !important; }
.hp-doctor-row__dot {
    position: absolute !important;
    bottom: 0 !important;
    right: -2px !important;
    z-index: 3 !important;
    width: 14px !important;
    height: 14px !important;
}

/* ========================================================
   核心基础样式 (token 接线到 --bgo-* 系统)
   ======================================================== */

.hp-wrap *,
.hp-wrap { box-sizing: border-box !important; }

.hp-wrap {
    /* ── Tokens 接线到 frontpage --bgo-* 系统 ── */
    --hp-ink:        #2C2420;       /* primary text */
    --hp-ink-2:      #5A4D46;       /* secondary text */
    --hp-ink-3:      #8A7F78;       /* tertiary text */
    --hp-cream:      #FAF6F3;       /* base bg */
    --hp-cream-2:    #F3ECE5;       /* alt section bg + CTA */
    --hp-rose:       #F6D5CF;
    --hp-rose-2:     #EFB8B0;
    --hp-rose-ink:   #C94A6B;       /* accent: small UI highlight */
    --hp-sky:        #CFDDE8;
    --hp-green:      #3ecf8e;
    --hp-line:       rgba(44,36,32,.12);
    --hp-line-2:     rgba(44,36,32,.06);

    --hp-radius-sm:  14px;
    --hp-radius-md:  18px;
    --hp-radius-lg:  24px;
    --hp-shadow-sm:  0 10px 24px -12px rgba(44,36,32,.18);
    --hp-shadow-lg:  0 30px 50px -25px rgba(44,36,32,.22);
    --hp-shadow-btn: 0 10px 24px -10px rgba(44,36,32,.5);
    --hp-ease:       cubic-bezier(0.4,0,0.2,1);

    --hp-font-serif: "DM Serif Display", Georgia, "Times New Roman", serif;
    --hp-font-sans:  "Outfit", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --hp-font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

    --hp-max: 1200px;
    --hp-gap: clamp(20px, 5vw, 60px);

    font-family: var(--hp-font-sans);
    color: var(--hp-ink);
    line-height: 1.7;
    background: var(--hp-cream);
    -webkit-font-smoothing: antialiased;
}

.hp-container {
    max-width: var(--hp-max);
    margin: 0 auto;
    padding: 0 var(--hp-gap);
}

/* ── HERO ───────────────────────────────────────────────── */
.hp-hero {
    position: relative;
    /* 56.25vw = 9/16 视口宽 → 跟 16:9 图片对齐, 桌面几乎不裁;
       80vh 兜底防止超宽屏把 hero 撑得比一屏还高。
       不用 aspect-ratio: max-height 会反向压缩元素宽度造成右侧白边。
       mobile 高度在下方 @media (max-width: 768px) 覆盖。 */
    height: clamp(480px, 56.25vw, 80vh);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    background: var(--hp-ink);                /* 无 slides 时的兜底 */
}

/* Slider 容器 */
.hp-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}

.hp-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

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

/* Zoom 动画仅作用于当前 active slide */
.hp-hero-slide.is-active img {
    animation: hp-zoom 8s ease-out forwards;
}

@keyframes hp-zoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1); }
}

/* Slider 控制: 圆点 */
.hp-hero-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(70px, 8vw, 90px);
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 var(--hp-gap);
}

.hp-hero-slider__dot {
    all: unset;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: background .25s var(--hp-ease), transform .25s var(--hp-ease);
}

.hp-hero-slider__dot:hover { background: rgba(255,255,255,.75); }

.hp-hero-slider__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

/* Slider 控制: 左右箭头 */
.hp-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .2s var(--hp-ease), border-color .2s var(--hp-ease);
}

.hp-hero-slider__arrow:hover {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.45);
}

.hp-hero-slider__arrow--prev { left: clamp(16px, 3vw, 36px); }
.hp-hero-slider__arrow--next { right: clamp(16px, 3vw, 36px); }

@media (max-width: 768px) {
    .hp-hero-slider__arrow { display: none; }
    .hp-hero-slider__dots  { bottom: 24px; }
}

/* Overlay */
.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(26,26,46,.78) 0%,
        rgba(26,26,46,.40) 50%,
        rgba(26,26,46,.10) 100%);
    z-index: 1;
    pointer-events: none;
}

.hp-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--hp-gap) clamp(44px, 7vw, 88px);
    width: 100%;
    animation: hp-up .85s var(--hp-ease) both;
}

@keyframes hp-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hp-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 18px;
    align-items: center;
}

.hp-hero__loc {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .72rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    background: rgba(26,26,46,.55);
    border: 1px solid rgba(255,255,255,.18);
    padding: 5px 14px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
}

.hp-hero__tag {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .68rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 4px 12px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.hp-hero__verified {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .72rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--hp-rose-ink);
    padding: 5px 14px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(201,74,107,.32);
}

.hp-hero__title {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-4xl);          /* was clamp(2.2–3.4rem) → token, 对齐 procedure hero */
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: -.015em;
}

.hp-hero__line {
    width: 60px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--hp-rose-ink), var(--hp-sky));
}

.hp-hero__scroll {
    position: absolute;
    bottom: 30px;
    right: var(--hp-gap);
    z-index: 2;
}

.hp-hero__scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
    animation: hp-scroll 2.2s ease-in-out infinite;
}

@keyframes hp-scroll {
    0%, 100% { opacity: .25; transform: scaleY(.5); transform-origin: top; }
    55%      { opacity: 1;   transform: scaleY(1); }
}

/* ── NAV ────────────────────────────────────────────────── */
.hp-nav--stuck { box-shadow: 0 4px 18px rgba(44,36,32,.06); }

.hp-nav__inner {
    max-width: var(--hp-max);
    margin: 0 auto;
    padding: 0 var(--hp-gap);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.hp-nav__inner::-webkit-scrollbar { display: none; }

.hp-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 15px 18px;
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .72rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hp-ink-2);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color .25s, border-color .25s;
}

.hp-nav__link:hover,
.hp-nav__link--active {
    color: var(--hp-rose-ink);
    border-bottom-color: var(--hp-rose-ink);
}

/* ── SECTION BASE ───────────────────────────────────────── */
.hp-section {
    padding: clamp(40px, 6vw, 80px) 0;
    background: var(--hp-cream);
}

.hp-section--alt { background: var(--hp-cream-2); }

.hp-section__head { margin-bottom: clamp(36px, 5vw, 60px); }

/* ── EYEBROW (frontpage section header pattern) ─────────── */
.hp-eyebrow {
    display: inline-block;
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-2xs);
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hp-ink-2);
    margin-bottom: 14px;
}

.hp-eyebrow::before { content: "·  "; }

/* ── TAG (legacy, kept for backward compat — 改成内容 chip 风格) ── */
.hp-tag {
    display: inline-block;
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-sm);           /* was .82rem */
    font-weight: 500;
    letter-spacing: .01em;
    text-transform: none;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 0;
    color: var(--hp-ink);
    background: var(--hp-cream-2);
    border: 1px solid var(--hp-line);
    line-height: 1.4;
}

.hp-tag--pink,
.hp-tag--blue { color: var(--hp-ink); background: var(--hp-cream-2); }

.hp-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-section__title {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-2xl);          /* was clamp(2.25–3.5rem) → token */
    font-weight: 400;
    line-height: 1.02;
    color: var(--hp-ink);
    margin: 0;
    letter-spacing: -.015em;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.hp-about-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.hp-prose {
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-md);           /* 20px lead body, 对齐 procedure .pp-wysiwyg--lead / doctor .drp-wysiwyg--lead */
    line-height: 1.85;
    color: var(--hp-ink-2);
    max-width: 840px;          /* 对齐 procedure 的 .pp-wysiwyg */
}

.hp-prose p { margin: 0 0 1.3em; }
.hp-prose p:last-child { margin-bottom: 0; }

/* Specialties — About 标题下一行 · 隔开 (参考 procedure 的 .pp-overview__areas) */
.hp-about__specialties {
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-base);
    line-height: 1.6;
    color: var(--hp-ink-2);
    margin: 0 0 20px;
    max-width: 840px;          /* 与 .hp-prose 同宽, 对齐 procedure */
}

.hp-about__specialties-label {
    font-weight: 600;
    color: var(--hp-ink);
    margin-right: 8px;
}

.hp-about__specialties-names {
    color: var(--hp-ink-2);
}

.hp-aside-card {
    background: var(--hp-cream);
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius-md);
    padding: 24px;
    box-shadow: var(--hp-shadow-sm);
    margin-bottom: 20px;
}

.hp-aside-card__title {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .7rem */
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hp-ink-3);
    margin: 0 0 14px;
}

.hp-verified-card {
    background: var(--hp-cream-2);
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hp-verified-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hp-rose-ink);
    color: #fff;
    flex-shrink: 0;
}

.hp-verified-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp-verified-card__name {
    font-size: var(--bgo-fs-sm);           /* was .875rem */
    font-weight: 600;
    color: var(--hp-ink);
    display: block;
}

.hp-verified-card__date {
    font-size: var(--bgo-fs-xs);           /* was .78rem */
    color: var(--hp-ink-3);
}

.hp-verified-card__badge {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .62rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--hp-rose-ink);
    padding: 4px 10px;
    border-radius: 40px;
    white-space: nowrap;
    align-self: flex-start;
}

/* ── PROCEDURES GRID + TOGGLE ───────────────────────────── */
.hp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.hp-grid__more {
    text-align: center;
    margin-top: 28px;
}

.hp-grid__toggle {
    all: unset;
    box-sizing: border-box;
    display: inline-block;
    padding: 11px 28px;
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .72rem */
    font-weight: 500;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hp-rose-ink);
    border: 1.5px solid var(--hp-rose-ink);
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.hp-grid__toggle:hover {
    background: var(--hp-rose-ink);
    color: #fff;
}

/* ── CARDS ──────────────────────────────────────────────── */
.hp-card {
    border-radius: var(--hp-radius-lg);
    border: 1px solid var(--hp-line);
    background: var(--hp-cream);
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
    transition: transform .35s var(--hp-ease), box-shadow .35s var(--hp-ease), border-color .35s var(--hp-ease);
}

.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
    border-color: var(--hp-rose-2);
}

.hp-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hp-card__thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--hp-cream-2);
}

.hp-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    display: block;
}

.hp-card:hover .hp-card__thumb img { transform: scale(1.05); }

.hp-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hp-rose), var(--hp-sky));
    color: var(--hp-ink);
}

.hp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .62rem */
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 40px;
    color: var(--hp-ink);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.hp-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hp-card__title {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-lg);           /* was 1.2rem, 对齐 procedure card title */
    font-weight: 400;
    color: var(--hp-ink);
    margin: 0 0 8px;
    line-height: 1.28;
}

.hp-card__price {
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-sm);           /* was .875rem */
    font-weight: 500;
    color: var(--hp-ink-2);
    margin: 0 0 12px;
    flex: 1;
}

.hp-card__cta {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-xs);           /* was .7rem */
    font-weight: 500;
    color: var(--hp-rose-ink);
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: letter-spacing .2s;
}

.hp-card:hover .hp-card__cta { letter-spacing: .18em; }

/* ── DOCTOR LIST ────────────────────────────────────────── */
.hp-doctor-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hp-doctor-row {
    background: var(--hp-cream);
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius-lg);
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: box-shadow .35s var(--hp-ease), transform .35s var(--hp-ease), border-color .35s var(--hp-ease);
}

.hp-doctor-row:hover {
    box-shadow: var(--hp-shadow-lg);
    transform: translateX(4px);
    border-color: var(--hp-rose-2);
}

.hp-doctor-row__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    text-decoration: none;
    color: inherit;
}

.hp-doctor-row__avatar {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--hp-cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-doctor-row__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-doctor-row__initials {
    font-family: var(--hp-font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--hp-ink);
}

.hp-doctor-row__dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hp-green);
    border: 2px solid var(--hp-cream);
    z-index: 2;
}

.hp-doctor-row__info {
    flex: 1;
    min-width: 0;
}

.hp-doctor-row__name {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-lg);           /* was 1.3rem */
    font-weight: 400;
    color: var(--hp-ink);
    margin: 0 0 4px;
    line-height: 1.25;
}

.hp-doctor-row__meta {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-xs);           /* was .75rem */
    font-weight: 400;
    letter-spacing: -.005em;
    color: var(--hp-ink-2);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-doctor-row__excerpt {
    font-size: var(--bgo-fs-sm);           /* was .875rem */
    color: var(--hp-ink-3);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-doctor-row__cta {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-xs);           /* was .7rem */
    font-weight: 500;
    color: var(--hp-rose-ink);
    white-space: nowrap;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: letter-spacing .2s;
}

.hp-doctor-row:hover .hp-doctor-row__cta { letter-spacing: .18em; }

/* ── CERT BANNER (Verified) ─────────────────────────────── */
.hp-cert-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--hp-cream);
    border: 1px solid var(--hp-line);
    border-left: 4px solid var(--hp-rose-ink);
    border-radius: 0 var(--hp-radius-lg) var(--hp-radius-lg) 0;
    padding: 28px 32px;
    box-shadow: var(--hp-shadow-sm);
    flex-wrap: wrap;
}

.hp-cert-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hp-rose-ink);
    color: #fff;
    flex-shrink: 0;
}

.hp-cert-banner__body {
    flex: 1;
    min-width: 200px;
}

.hp-cert-banner__title {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-lg);           /* was 1.4rem */
    font-weight: 400;
    color: var(--hp-ink);
    margin: 0 0 6px;
    line-height: 1.2;
}

.hp-cert-banner__desc {
    font-size: var(--bgo-fs-base);         /* was .9rem */
    color: var(--hp-ink-2);
    margin: 0;
    line-height: 1.6;
}

.hp-cert-banner__date {
    display: inline;
    color: var(--hp-rose-ink);
    font-weight: 500;
}

.hp-cert-banner__badge {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-3xs);          /* was .68rem */
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--hp-rose-ink);
    padding: 6px 16px;
    border-radius: 40px;
    white-space: nowrap;
}

/* ── CTA ────────────────────────────────────────────────── */
.hp-cta {
    background: var(--hp-cream-2);
    padding: clamp(64px, 8vw, 110px) 0;
}

.hp-cta__inner { max-width: 760px; }

.hp-cta__eyebrow {
    font-family: var(--hp-font-mono);
    font-size: var(--bgo-fs-2xs);
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hp-rose-ink);
    margin: 0 0 18px;
}

.hp-cta__title {
    font-family: var(--hp-font-serif);
    font-size: var(--bgo-fs-2xl);          /* was clamp(2–3.2rem) → token */
    font-weight: 400;
    color: var(--hp-ink);
    margin: 0 0 16px;
    line-height: 1.14;
    letter-spacing: -.015em;
}

.hp-cta__sub {
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-base);         /* was 1rem */
    line-height: 1.7;
    color: var(--hp-ink-2);
    margin: 0 0 32px;
    max-width: 560px;
}

.hp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    align-items: center;
}

.hp-cta__link {
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-base);         /* was .9rem, 对齐 btn */
    font-weight: 500;
    color: var(--hp-rose-ink);
    text-decoration: underline;
    text-decoration-color: rgba(201,74,107,.4);
    text-underline-offset: 4px;
    transition: color .2s, text-decoration-color .2s;
}

.hp-cta__link:hover {
    color: var(--hp-ink);
    text-decoration-color: var(--hp-ink);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    font-family: var(--hp-font-sans);
    font-size: var(--bgo-fs-base);         /* was .875rem, 对齐 procedure btn */
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    border-radius: 999px;
    transition: all .25s var(--hp-ease);
    white-space: nowrap;
    cursor: pointer;
    border: 0;
}

.hp-btn--primary {
    background: var(--hp-ink);
    color: #fff;
    box-shadow: var(--hp-shadow-btn);
}

.hp-btn--primary:hover {
    background: var(--hp-ink);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -10px rgba(44,36,32,.6);
    color: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hp-about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hp-hero { height: clamp(380px, 55vh, 640px); }   /* 保持手机原 clamp, 不受桌面新逻辑影响 */
    .hp-grid { grid-template-columns: 1fr; }
    .hp-cert-banner { flex-direction: column; text-align: center; }
    .hp-cert-banner__icon { align-self: center; }
    .hp-nav__link { padding: 13px 13px; }   /* font-size 维持 token */
    .hp-doctor-row__inner { padding: 14px 18px; gap: 14px; }
}

@media (max-width: 480px) {
    .hp-btn { padding: 12px 20px; }   /* font-size 维持 base, 对齐 procedure btn */
    .hp-card__body { padding: 16px 16px 20px; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
    .hp-nav,
    .hp-hero__scroll,
    .hp-cta,
    .hp-hero-slider__dots,
    .hp-hero-slider__arrow { display: none; }
    .hp-hero { height: 260px; }
    .hp-section { padding: 28px 0; break-inside: avoid; }
    .hp-card,
    .hp-doctor-row { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
    /* 打印时仅显示当前 active slide */
    .hp-hero-slide:not(.is-active) { display: none; }
}

/* ── TEMP: 隐藏 Verified Partner 横幅 ──────────────────────────
   认证日期暂未填准 (目前都是发布日期), 先整段下线, 不动 PHP 结构。
   日期填对后删掉这个块即可恢复。
   TEMP: hide the Verified Partner banner until verification dates are
   entered correctly (currently defaulting to publish date). Remove to restore. */
#hp-verified { display: none; }

/* ── 隐藏反查的 "Procedures We Offer" section 及其 sticky nav 锚点。*/
#hp-procedures,
.hp-nav__link[href="#hp-procedures"] { display: none; }
