/* ==========================================================================
   欢颜摄影官网 PC 版样式
   设计基调：黑白为底 + 磨砂透明玻璃质感，现代简约高级
   仅面向 PC（min-width 1200 主布局），小屏做基础收敛
   ========================================================================== */

:root {
    /* —— 纯白基底 + 黑字 —— */
    --hy-bg: #ffffff;
    --hy-bg-alt: #fafafa;
    --hy-white: #ffffff;
    --hy-text: #000000;
    --hy-text-sub: #3d3d3d;
    --hy-text-weak: #737373;
    --hy-line: rgba(0, 0, 0, .10);

    /* —— 白色磨砂玻璃面板（P1-18 强化：边框加粗、层次更明显） —— */
    --hy-glass: rgba(255, 255, 255, .72);
    --hy-glass-strong: rgba(255, 255, 255, .88);
    --hy-glass-dark: rgba(255, 255, 255, .55);
    --hy-glass-border: rgba(0, 0, 0, .14);
    --hy-glass-border-strong: rgba(0, 0, 0, .22);
    --hy-blur: 18px;
    --hy-blur-lg: 28px;

    /* —— 点缀色（保留旧名兼容模板，统一映射为纯黑） —— */
    --hy-gold: #000000;
    --hy-gold-deep: #000000;
    --hy-gold-soft: rgba(0, 0, 0, .04);
    --hy-gold-light: rgba(255, 255, 255, .6);

    /* —— 仅用中性灰做层级强调，不使用任何彩色 —— */

    /* —— 圆角（略放大更现代） —— */
    --hy-radius: 6px;
    --hy-radius-sm: 8px;
    --hy-radius-md: 12px;
    --hy-radius-lg: 16px;
    --hy-radius-full: 9999px;

    /* —— 阴影（白底上用极轻的阴影做层次；P1-18 玻璃双重阴影：外投影+内高光） —— */
    --hy-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    --hy-shadow-hover: 0 14px 48px rgba(0, 0, 0, .12);
    --hy-shadow-glass: 0 6px 26px rgba(0, 0, 0, .08), 0 1px 0 rgba(255, 255, 255, .7) inset;

    --hy-font-title: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
    --hy-font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
    --hy-max: 1520px;

    /* —— 兼容旧深色变量名（现全部指向浅色） —— */
    --hy-dark-bg: #ffffff;
    --hy-dark-bg-2: #fafafa;
    --hy-dark-gold: #000000;
    --hy-dark-gold-deep: #000000;
    --hy-dark-label: #737373;
    --hy-ink: #000000;
    --hy-gold-line: rgba(0, 0, 0, .18);
    --hy-gold-line-soft: rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--hy-bg);
    color: var(--hy-text);
    font-family: var(--hy-font-body);
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 极淡环境层：底色仍是纯白，仅提供微弱层次让磨砂玻璃产生真实模糊 */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(1000px 620px at 12% -8%, rgba(0, 0, 0, .05), transparent 62%),
        radial-gradient(860px 540px at 92% 6%, rgba(0, 0, 0, .04), transparent 60%),
        radial-gradient(760px 520px at 50% 104%, rgba(0, 0, 0, .035), transparent 62%);
}

img { border: 0; vertical-align: middle; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--hy-text); }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
    margin: 0;
    font-family: var(--hy-font-title);
    font-weight: 600;
    line-height: 1.35;
    color: var(--hy-text);
}
input, textarea, select, button { font-family: inherit; font-size: inherit; outline: none; }

.hy-wrap { max-width: var(--hy-max); margin: 0 auto; padding: 0 40px; }
.hy-hide { display: none !important; }

/* 玻璃面板通用 mixin（手写，避免 @apply 依赖） */
.hy-glass {
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    box-shadow: var(--hy-shadow-glass);
}

/* 玻璃层次强化：卡片统一加外投影 + 内高光双重阴影，玻璃边感更明显 */
.hy-work, .hy-point, .hy-scene, .hy-art, .hy-store, .hy-feature-card,
.hy-cat-banner, .hy-banner, .hy-card, .hy-filter, .hy-scene-coming,
.hy-pager__item, .hy-tabs a {
    box-shadow: var(--hy-shadow-glass);
}

/* ---------- 顶部 ---------- */
.hy-topbar {
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--hy-text-weak);
    font-size: 13px;
    line-height: 38px;
    border-bottom: 1px solid var(--hy-line);
}
.hy-topbar .hy-wrap { display: flex; justify-content: space-between; }
.hy-topbar b { color: var(--hy-text); font-weight: 500; }

.hy-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .78);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--hy-line);
    transition: background-color .3s ease,
                -webkit-backdrop-filter .3s ease,
                backdrop-filter .3s ease,
                border-color .3s ease;
}
.hy-header .hy-wrap {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 40px;
}
.hy-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hy-logo__name { font-size: 24px; letter-spacing: 4px; font-weight: 500; color: var(--hy-text); }
.hy-logo__slogan {
    position: relative;
    font-size: 10px;
    color: var(--hy-text-weak);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding-left: 12px;
    line-height: 1.5;
}
.hy-logo__slogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: currentColor;
    opacity: .35;
}
.hy-logo img {
    height: 42px;
    width: auto;
    display: block;
}
/* 白底导航：白色书法 LOGO 自动转黑，避免隐形 */
.hy-header:not(.hy-header--overlay) .hy-logo img { filter: brightness(0) opacity(.88); }
.hy-logo:hover img { opacity: .82; }

.hy-nav { display: flex; gap: 30px; margin-left: auto; }
.hy-nav a {
    position: relative;
    font-size: 15px;
    color: var(--hy-text-sub);
    padding: 6px 0;
}
.hy-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--hy-white);
    transition: all .25s;
    transform: translateX(-50%);
}
.hy-nav a:hover, .hy-nav a.is-active { color: var(--hy-text); }
.hy-nav a:hover::after, .hy-nav a.is-active::after { width: 22px; }

.hy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 26px;
    height: 44px;
    border: 1px solid var(--hy-text);
    border-radius: var(--hy-radius-md);
    background: var(--hy-text);
    color: #fff;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    font-weight: 500;
}
/* 主按钮：纯黑实心（白底上唯一的强视觉锚点，字为反白以保证可读性） */
.hy-btn:hover { background: #2b2b2b; border-color: #2b2b2b; color: #fff; transform: translateY(-1px); box-shadow: var(--hy-shadow-hover); }
.hy-btn--ghost { background: transparent; color: var(--hy-text); border-color: var(--hy-glass-border-strong); }
.hy-btn--ghost:hover { background: var(--hy-text); color: #fff; border-color: var(--hy-text); }
.hy-btn--light {
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border-color: var(--hy-glass-border);
    color: var(--hy-text);
}
.hy-btn--light:hover { border-color: var(--hy-text); color: #fff; background: var(--hy-text); }
.hy-btn--sm { height: 36px; padding: 0 18px; font-size: 14px; }
.hy-btn--lg { height: 52px; padding: 0 40px; font-size: 16px; }
.hy-header .hy-btn { flex-shrink: 0; }

/* ---------- 主视觉 ---------- */
.hy-hero {
    position: relative;
    padding: 110px 0 90px;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(255, 255, 255, .05), transparent 60%),
        linear-gradient(180deg, #fafafa 0%, var(--hy-bg) 100%);
    border-bottom: 1px solid var(--hy-line);
    overflow: hidden;
}
.hy-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hy-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--hy-text);
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 22px;
}
.hy-hero__title {
    font-size: 62px;
    line-height: 1.32;
    letter-spacing: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: var(--hy-font-title);
    color: var(--hy-text);
}
.hy-hero__sub { font-size: 15px; color: var(--hy-text-sub); letter-spacing: 1px; margin-bottom: 38px; line-height: 1.75; }
.hy-hero__acts { display: flex; gap: 14px; margin-bottom: 32px; }
.hy-hero__tips { display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; }
.hy-hero__tips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-full);
    color: var(--hy-text-sub);
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    letter-spacing: 1px;
    transition: all .25s ease;
}
.hy-hero__tips span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hy-white);
    flex-shrink: 0;
}
.hy-hero__tips span:hover {
    color: #000;
    border-color: var(--hy-text);
    background: var(--hy-white);
}

.hy-hero__eyebrow::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, .85); /* 与 ::before 对称：左右各一条实线短横 */
    background: linear-gradient(90deg, var(--hy-white), transparent);
}

.hy-hero__grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; gap: 12px; }
.hy-hero__grid a {
    display: block;
    overflow: hidden;
    border-radius: var(--hy-radius-lg);
    background: var(--hy-bg-alt);
    box-shadow: var(--hy-shadow);
}
.hy-hero__grid a:first-child { grid-row: span 2; }
.hy-hero__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.hy-hero__grid a:hover img { transform: scale(1.05); }

/* ---------- 通用区块 ---------- */
.hy-section { padding: 96px 0; }
.hy-section--alt { background: var(--hy-bg-alt); }
.hy-section--tight { padding: 60px 0; }
.hy-section--dark {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    color: var(--hy-dark-label);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hy-section--dark::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(700px 260px at 50% -8%, rgba(0, 0, 0, .035), transparent 65%),
        radial-gradient(500px 200px at 100% 110%, rgba(0, 0, 0, .022), transparent 60%);
    pointer-events: none;
}
.hy-section--dark::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 1px;
    background: var(--hy-text);
}

.hy-sect-head { text-align: center; margin-bottom: 56px; }
.hy-sect-head__en {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--hy-text-weak);
    margin-bottom: 10px;
}
.hy-sect-head__title { font-size: 32px; letter-spacing: 2px; color: var(--hy-text); }
.hy-sect-head__desc { margin-top: 12px; color: var(--hy-text-sub); font-size: 15px; }
.hy-sect-head--left { text-align: left; }

.hy-more-link { display: inline-flex; align-items: center; gap: 6px; color: var(--hy-text); font-size: 14px; }
.hy-more-link::after { content: "→"; transition: transform .25s; }
.hy-more-link:hover::after { transform: translateX(4px); }
.hy-sect-foot { text-align: center; margin-top: 44px; }

/* ---------- 品牌数据条 ---------- */
.hy-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hy-line); border-bottom: 1px solid var(--hy-line); position: relative; }
.hy-stats__item { padding: 38px 12px; text-align: center; border-right: 1px solid var(--hy-line); }
.hy-stats__item:last-child { border-right: 0; }
.hy-stats__value { font-size: 34px; color: var(--hy-text); letter-spacing: 1px; font-weight: 500; white-space: nowrap; }
.hy-stats__label { font-size: 13px; color: var(--hy-text-weak); margin-top: 8px; letter-spacing: 2px; }

/* 深色版 stats */
.hy-section--dark .hy-stats { border-top: none; border-bottom: none; }
.hy-section--dark .hy-stats__item {
    border-right: 1px solid var(--hy-gold-line-soft);
    padding: 56px 12px;
    position: relative;
}
.hy-section--dark .hy-stats__item:last-child { border-right: 0; }
.hy-section--dark .hy-stats__item::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background: var(--hy-gold-line);
    transition: width .4s;
}
.hy-section--dark .hy-stats__item:hover::before { width: 60px; background: var(--hy-text); }
.hy-section--dark .hy-stats__value {
    font-family: var(--hy-font-title);
    font-size: 54px;
    letter-spacing: 2px;
    color: var(--hy-text);
    line-height: 1;
    font-weight: 500;
    text-shadow: none;
    white-space: nowrap;
}
.hy-section--dark .hy-stats__label {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 6px;
    color: var(--hy-dark-label);
    text-transform: uppercase;
}

/* ---------- 卖点 ---------- */
.hy-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hy-point {
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    padding: 36px 30px;
    transition: all .35s;
}
.hy-point:hover { box-shadow: var(--hy-shadow-hover); transform: translateY(-4px); border-color: var(--hy-glass-border-strong); background: var(--hy-glass-strong); }
.hy-point__no { font-size: 13px; letter-spacing: 2px; color: var(--hy-text); margin-bottom: 16px; }
.hy-point__title { font-size: 20px; line-height: 1.5; margin-bottom: 12px; color: var(--hy-text); }
.hy-point__sub { font-size: 13px; color: var(--hy-text-sub); margin-bottom: 16px; letter-spacing: 1px; }
.hy-point__text { font-size: 14px; color: var(--hy-text-sub); line-height: 1.85; }
.hy-point__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* 玻璃版卖点区块（替换原暖米黄） */
.hy-section--warm {
    background: var(--hy-bg-alt);
    position: relative;
}
.hy-section--warm .hy-sect-head { text-align: left; margin-bottom: 56px; }
.hy-section--warm .hy-sect-head__en {
    display: inline-block;
    font-size: 13px;
    color: var(--hy-text);
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.hy-section--warm .hy-sect-head__title {
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--hy-text);
    line-height: 1.35;
}
.hy-section--warm .hy-sect-head__desc {
    margin-top: 14px;
    text-align: left;
    color: var(--hy-text-sub);
    font-size: 15px;
    letter-spacing: 1px;
}
.hy-section--warm .hy-point {
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    padding: 44px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "no title"
        "no sub"
        "no text"
        "no tags";
    column-gap: 24px;
    row-gap: 10px;
    align-items: start;
}
.hy-section--warm .hy-point:hover {
    box-shadow: var(--hy-shadow-hover);
    transform: translateY(-4px);
    background: var(--hy-glass-strong);
    border-color: var(--hy-glass-border-strong);
}
.hy-section--warm .hy-point__no {
    grid-area: no;
    font-size: 48px;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
    color: var(--hy-text);
    line-height: 1;
    margin: -6px 0 0;
    letter-spacing: 0;
    align-self: start;
    min-width: 60px;
    opacity: .9;
}
.hy-section--warm .hy-point__title {
    grid-area: title;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: var(--hy-text);
    align-self: start;
}
.hy-section--warm .hy-point__sub {
    grid-area: sub;
    font-size: 12px;
    color: var(--hy-text-sub);
    letter-spacing: 3px;
    margin: 0;
    padding-left: 0;
    text-transform: uppercase;
}
.hy-section--warm .hy-point__text {
    grid-area: text;
    font-size: 14px;
    color: var(--hy-text-sub);
    line-height: 1.85;
    margin: 4px 0 0;
    padding-left: 0;
}
.hy-section--warm .hy-point__tags {
    grid-area: tags;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
    margin-top: 12px;
}
.hy-tag {
    font-size: 12px;
    color: var(--hy-text-sub);
    background: rgba(0, 0, 0, .03);
    border: 1px solid var(--hy-glass-border);
    border-radius: 100px;
    padding: 3px 10px;
    transition: all .2s;
}
/* 标签统一中性灰样式（白底 / 黑字 / 灰边），不分类着色 */

/* ---------- About 页面专属 ---------- */

/* Hero: about 页稍多上边距，让导航不遮挡 */
.hy-hero--about { padding-top: 0; }

/* 品牌简介区：左对齐的双列（文字 + 图片占位） */
.hy-about__intro { padding: 80px 0 72px; }
.hy-about__intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.hy-about__intro-text .hy-sect-head { margin-bottom: 28px; }
.hy-about__intro-text .hy-sect-head__title { font-size: 42px; letter-spacing: 3px; }

/* 9 大无忧服务：左标题栏居中排版 + 右 3×3 卡片网格（参考样板） */
.hy-about__services { padding: 96px 0 88px; background: var(--hy-bg-alt); }
.hy-about__services-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}
.hy-about__services-intro {
    position: sticky;
    top: 130px;
    padding-top: 8px;
    text-align: center;
}
.hy-about__services-title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--hy-text);
    margin: 0 0 36px;
}
.hy-about__services-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: var(--hy-text-weak);
    margin: 0 0 14px;
    letter-spacing: 2px;
}
.hy-about__services-sub {
    font-size: 12px;
    line-height: 1.75;
    color: var(--hy-text-weak);
    margin: 0 0 40px;
    letter-spacing: .5px;
}
.hy-about__services-cap {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--hy-text-weak);
}
.hy-about__services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.hy-about__service {
    display: flex;
    align-items: stretch;
    background: var(--hy-white);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.hy-about__service:hover {
    border-color: var(--hy-glass-border-strong);
    box-shadow: var(--hy-shadow);
    transform: translateY(-2px);
}
.hy-about__service-img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d6cfc4 0%, #b3a896 60%, #8a7e6a 100%);
}
.hy-about__service-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s;
}
.hy-about__service:hover .hy-about__service-img img { transform: scale(1.06); }
/* 右文块：编号右上 + 文字左下，对角分布 */
.hy-about__service-text {
    flex: 1 1 50%;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.hy-about__service-no {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--hy-text);
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 1px;
}
.hy-about__service-body { margin-top: auto; }
.hy-about__service-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--hy-text);
    text-align: left;
    word-break: break-word;
}
.hy-about__service-sub {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--hy-text-weak);
    text-align: left;
    word-break: break-word;
}

/* ---------- 作品卡片 ---------- */
.hy-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; grid-auto-rows: 1fr; }
.hy-works--3 { grid-template-columns: repeat(3, 1fr); }
.hy-work {
    display: flex;
    flex-direction: column;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    box-shadow: var(--hy-shadow);
    transition: all .3s;
}
.hy-work:hover { transform: translateY(-5px); box-shadow: var(--hy-shadow-hover); border-color: var(--hy-glass-border-strong); }
.hy-work__pic { position: relative; padding-top: 128%; overflow: hidden; background: var(--hy-bg-alt); }
.hy-work__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.hy-work__pic::after {
    content: "查看整组作品";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 14px 12px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
    opacity: 0;
    transition: opacity .3s;
}
.hy-work:hover .hy-work__pic::after { opacity: 1; }
.hy-work:hover .hy-work__pic img { transform: scale(1.06); }
.hy-work__count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #000;
    font-size: 12px;
    padding: 3px 9px;
    border-radius: var(--hy-radius-full);
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.15);
}
.hy-work__body { padding: 16px 18px 18px; flex: 1; }
.hy-work__title { font-size: 16px; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--hy-text); }
.hy-work__desc {
    font-size: 13px;
    color: var(--hy-text-weak);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.65;
    min-height: 0;
}
.hy-work__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.hy-work__ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hy-text-weak);
    font-size: 13px;
    letter-spacing: 4px;
    background:
        radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .035), transparent 65%);
}

/* ---------- 基地 / 场景 卡片（4 列竖图，下方标题块） ---------- */
.hy-bases, .hy-scenes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hy-scenes--3 { grid-template-columns: repeat(3, 1fr); }
/* 外景基地：每行 2 列横图（16:9），body 不变 */
.hy-bases { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hy-base__pic { padding-top: 56.25%; }
.hy-base, .hy-scene {
    position: relative;
    display: block;
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    box-shadow: var(--hy-shadow);
    border: 1px solid var(--hy-glass-border);
    background: var(--hy-white);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.hy-base:hover, .hy-scene:hover {
    transform: translateY(-3px);
    box-shadow: var(--hy-shadow-hover);
    border-color: var(--hy-glass-border-strong);
}
.hy-base__pic, .hy-scene__pic {
    position: relative;
    background: var(--hy-bg-alt);
    overflow: hidden;
}
.hy-base__pic img, .hy-scene__pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s;
}
.hy-base:hover .hy-base__pic img,
.hy-scene:hover .hy-scene__pic img { transform: scale(1.06); }
.hy-scene__pic { padding-top: 130%; }  /* 场景：竖图 10:13 */
.hy-base__body, .hy-scene__body {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--hy-line);
}
.hy-base__name, .hy-scene__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--hy-text);
    letter-spacing: .5px;
    line-height: 1.4;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hy-base__no {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-size: 13px;
    color: var(--hy-text-weak);
    margin-right: 4px;
    letter-spacing: 1px;
}
.hy-base__type {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.5;
    letter-spacing: .5px;
}
.hy-base__type--exclusive {
    background: var(--hy-text);
    color: var(--hy-white);
    border: 1px solid var(--hy-text);
}
.hy-base__type--partner {
    background: transparent;
    color: var(--hy-text-weak);
    border: 1px solid var(--hy-line);
}
.hy-scene__count {
    font-size: 12px;
    color: var(--hy-text-weak);
    flex-shrink: 0;
    white-space: nowrap;
}
.hy-scene--coming { cursor: default; border: 1px dashed var(--hy-glass-border); box-shadow: none; }
.hy-scene--coming .hy-scene__pic { background:
    repeating-linear-gradient(45deg, var(--hy-bg-alt) 0 12px, var(--hy-bg) 12px 24px); }
.hy-scene--coming .hy-scene__ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--hy-text-weak); font-size: 13px; letter-spacing: 4px;
}

/* 场景筹备面板 */
.hy-scene-coming {
    margin-top: 52px;
    padding: 46px 48px;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hy-scene-coming::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 220px at 50% -10%, rgba(0, 0, 0, .035), transparent 60%);
    pointer-events: none;
}
.hy-scene-coming__title {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    color: var(--hy-text);
}
.hy-scene-coming__title em {
    color: var(--hy-text);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    margin: 0 2px;
}
.hy-scene-coming__desc {
    color: var(--hy-text-sub);
    font-size: 14px;
    margin-bottom: 28px;
    position: relative;
}
.hy-scene-coming__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
}
.hy-scene-chip {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--hy-glass-border);
    border-radius: 100px;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    color: var(--hy-text-sub);
    font-size: 14px;
    letter-spacing: 1px;
    transition: all .25s;
}
.hy-scene-chip:hover {
    color: #000;
    border-color: var(--hy-text);
    background: var(--hy-white);
}

/* ---------- 筛选 ---------- */
/* 完整面板：页面顶部正常流展示，不吸顶（滚动后由紧凑工具条替代） */
.hy-filter { position: relative; background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur-lg)) saturate(160%); backdrop-filter: blur(var(--hy-blur-lg)) saturate(160%); border: 1px solid var(--hy-glass-border); border-radius: var(--hy-radius-lg); box-shadow: var(--hy-shadow); }
.hy-filter__body { padding: 6px 24px; }
/* 紧凑工具条：仅在浮动态显示 */
.hy-filter__bar { display: none; }
.hy-filter__toggle {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
    height: 38px; padding: 0 18px; border-radius: 100px;
    background: var(--hy-text); color: #fff; font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all .25s; border: 1px solid var(--hy-text);
}
.hy-filter__toggle:hover { background: #2b2b2b; }
.hy-filter__toggle-arrow {
    width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px); transition: transform .25s;
}
.hy-filter.is-open .hy-filter__toggle-arrow { transform: rotate(-135deg) translateY(-2px); }
.hy-filter__summary { flex: 1; min-width: 0; font-size: 14px; color: var(--hy-text-sub); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hy-filter__clear { flex-shrink: 0; font-size: 13px; color: var(--hy-text-weak); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.hy-filter__clear:hover { color: var(--hy-text); }

/* 浮动态：面板滚走后，紧凑工具条固定在导航下方（不占布局，避免作品跳动） */
.hy-filter.is-float {
    position: fixed;
    top: 88px; left: 50%;
    width: calc(100% - 48px); max-width: var(--hy-max);
    transform: translateX(-50%);
    z-index: 70;
    padding: 0 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(0, 0, 0, .08);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .12);
    animation: hyFilterFloatIn .3s ease;
}
@keyframes hyFilterFloatIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hy-filter.is-float .hy-filter__bar { display: flex; align-items: center; gap: 16px; height: 60px; }
.hy-filter.is-float .hy-filter__body { display: none; }
/* 浮动态点「筛选」：完整面板作为下拉浮层展开，不遮挡过多画面之外可关闭 */
.hy-filter.is-float.is-open { border-radius: var(--hy-radius-lg); }
.hy-filter.is-float.is-open .hy-filter__body {
    display: block;
    position: absolute; top: 68px; left: 0; right: 0;
    max-height: calc(100vh - 180px); overflow-y: auto;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--hy-radius-lg);
    box-shadow: 0 18px 56px rgba(0, 0, 0, .16);
    padding: 6px 24px;
}
.hy-filter__row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--hy-glass-border); }
.hy-filter__row:last-child { border-bottom: 0; }
.hy-filter__label { flex-shrink: 0; width: 62px; color: var(--hy-text-weak); font-size: 14px; }
.hy-filter__items { display: flex; flex-wrap: wrap; gap: 8px 6px; }
.hy-filter__items a {
    font-size: 14px;
    color: var(--hy-text-sub);
    padding: 3px 12px;
    border-radius: 100px;
    border: 1px solid transparent;
}
.hy-filter__items a:hover { color: var(--hy-text); background: var(--hy-glass-strong); }
.hy-filter__items a.is-active { color: #fff; background: var(--hy-text); border-color: var(--hy-text); }
.hy-filter__items em { font-style: normal; opacity: .6; font-size: 12px; }
.hy-filter__search { display: flex; gap: 8px; padding: 14px 0; }
.hy-filter__search input {
    flex: 1;
    height: 38px;
    padding: 0 14px;
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-md);
    background: #ffffff;
    color: var(--hy-text);
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
    font-size: 14px;
}
.hy-filter__search input:focus { border-color: var(--hy-text); box-shadow: 0 0 0 3px rgba(0, 0, 0, .08); outline: none; }
.hy-filter__search input::placeholder { color: var(--hy-text-weak); }

/* 热门搜索词（长尾词表 P0 直达） */
.hy-filter__hot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0 0 14px; font-size: 13px; }
.hy-filter__hot > span { color: var(--hy-text-weak); }
.hy-filter__hot a {
    padding: 4px 12px;
    border: 1px solid var(--hy-glass-border);
    border-radius: 999px;
    background: var(--hy-glass);
    color: var(--hy-text-sub);
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.hy-filter__hot a:hover { color: var(--hy-text); border-color: var(--hy-text); background: #ffffff; }

/* 攻略文末客资 CTA：电话 / 微信优先 */
.hy-lead-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    margin-top: 34px; padding: 22px 26px;
    background: var(--hy-glass); border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg); backdrop-filter: blur(8px);
}
.hy-lead-cta__txt b { display: block; font-size: 17px; letter-spacing: 1px; color: var(--hy-text); }
.hy-lead-cta__txt span { display: block; margin-top: 6px; font-size: 13px; color: var(--hy-text-sub); }
.hy-lead-cta__acts { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 768px) {
    .hy-lead-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .hy-lead-cta__acts { flex-direction: column; }
}

/* ---------- 面包屑 / 页头 ---------- */
.hy-page-head { padding: 46px 0 30px; background: var(--hy-bg-alt); border-bottom: 1px solid var(--hy-line); }
.hy-crumb { font-size: 13px; color: var(--hy-text-weak); margin-bottom: 14px; }
.hy-crumb a { color: var(--hy-text-sub); }
.hy-crumb span { margin: 0 8px; opacity: .6; }
.hy-page-head__title { font-size: 30px; letter-spacing: 2px; color: var(--hy-text); }
.hy-page-head__desc { margin-top: 10px; color: var(--hy-text-sub); }

/* ---------- 分页 ---------- */
.hy-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.hy-pager__item {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-md);
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: var(--hy-text-sub);
}
.hy-pager__item:hover { border-color: var(--hy-text); color: var(--hy-text); }
.hy-pager__item.is-active { background: var(--hy-text); border-color: var(--hy-text); color: #fff; }
.hy-pager__item.is-disabled { opacity: .45; cursor: not-allowed; }
.hy-pager__gap { color: var(--hy-text-weak); }

.hy-loadmore { text-align: center; margin-top: 40px; }
.hy-loadmore__tip { color: var(--hy-text-weak); font-size: 14px; }

/* ---------- 作品详情 ---------- */
.hy-detail { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.hy-detail__photos { display: grid; gap: 18px; }
.hy-detail__photo { border-radius: var(--hy-radius); overflow: hidden; background: var(--hy-bg-alt); }
.hy-detail__photo img { width: 100%; display: block; }
.hy-detail__photo figcaption { font-size: 13px; color: var(--hy-text-weak); padding: 10px 4px; }
.hy-detail__side { position: sticky; top: 100px; }
.hy-card {
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.hy-card__title { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hy-glass-border); color: var(--hy-text); }
.hy-meta { font-size: 14px; }
.hy-meta li { display: flex; gap: 10px; padding: 6px 0; }
.hy-meta__k { width: 66px; flex-shrink: 0; color: var(--hy-text-weak); }
.hy-meta__v { flex: 1; color: var(--hy-text); }

/* ---------- 攻略 ---------- */
.hy-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.hy-arts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; grid-auto-rows: 1fr; }
.hy-art {
    display: flex;
    flex-direction: column;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    transition: all .3s;
}
.hy-art:hover { box-shadow: var(--hy-shadow-hover); transform: translateY(-4px); border-color: var(--hy-glass-border-strong); }
.hy-art__pic { position: relative; padding-top: 60%; background: var(--hy-bg-alt); }
.hy-art__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-art__body { padding: 18px 20px 20px; flex: 1; }
.hy-art__cate { font-size: 12px; color: var(--hy-text); }
.hy-art__title { font-size: 17px; margin: 8px 0 10px; line-height: 1.5; color: var(--hy-text); }
.hy-art__summary { font-size: 13px; color: var(--hy-text-sub); height: 44px; overflow: hidden; }
.hy-art__foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--hy-text-weak); margin-top: 14px; }

.hy-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hy-tabs a {
    padding: 6px 20px;
    border: 1px solid var(--hy-glass-border);
    border-radius: 100px;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: var(--hy-text-sub);
}
.hy-tabs a.is-active, .hy-tabs a:hover { border-color: var(--hy-text); color: var(--hy-text); background: var(--hy-glass-strong); }

.hy-side-list li { padding: 12px 0; border-bottom: 1px dashed var(--hy-glass-border); font-size: 14px; }
.hy-side-list li:last-child { border-bottom: 0; }
.hy-side-list__meta { font-size: 12px; color: var(--hy-text-weak); margin-top: 4px; }

.hy-article__title { font-size: 30px; line-height: 1.5; margin-bottom: 16px; color: var(--hy-text); }
.hy-article__meta { font-size: 13px; color: var(--hy-text-weak); padding-bottom: 22px; border-bottom: 1px solid var(--hy-line); margin-bottom: 30px; }
.hy-article__meta span { margin-right: 18px; }
.hy-article__body { font-size: 16px; line-height: 1.95; color: #1a1a1a; }
.hy-article__body p { margin: 0 0 20px; }
.hy-article__body h2 { font-size: 22px; margin: 34px 0 14px; padding-left: 12px; border-left: 3px solid var(--hy-white); color: var(--hy-text); }
.hy-article__body h3 { font-size: 18px; margin: 26px 0 12px; color: var(--hy-text); }
.hy-article__body img { border-radius: var(--hy-radius); margin: 10px 0; }
.hy-article__body ul, .hy-article__body ol { margin: 0 0 20px; padding-left: 22px; }
.hy-article__body ul li { list-style: disc; margin-bottom: 8px; }
.hy-article__body ol li { list-style: decimal; margin-bottom: 8px; }
.hy-neighbors { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hy-line); font-size: 14px; }
.hy-neighbors span { color: var(--hy-text-weak); }

/* ---------- 门店 ---------- */
.hy-city { margin: 0 0 56px; }
.hy-city:last-child { margin-bottom: 0; }
html { scroll-behavior: smooth; }

/* 城市锚点 chip：默认已用 .hy-city-tab 样式（hover 切换），这里只补 wrap 容器 */
.hy-city-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hy-line);
}
.hy-city-tab {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--hy-line);
    border-radius: 100px;
    background: #fff;
    font-size: 14px;
    color: var(--hy-text-sub);
    transition: all .25s;
    white-space: nowrap;
}

/* 城市名标题：左黑边竖线 + 中文大字 + 英文/元数据 */
.hy-city__name {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0 0 22px;
    padding: 6px 0 6px 14px;
    border-left: 3px solid var(--hy-text);
    color: var(--hy-text);
}
.hy-city__name-cn { font-weight: 700; }
.hy-city__name-meta {
    font-size: 12px;
    color: var(--hy-text-weak);
    letter-spacing: 3px;
    font-weight: 400;
}

/* 门店卡片：被锚点跳转时不被顶部固定导航栏遮挡（导航栏高 117px） */
.hy-store { scroll-margin-top: 117px; }

/* 门店卡片内的城市小标签 */
.hy-store__city {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--hy-text-weak);
    background: var(--hy-bg-alt);
    border: 1px solid var(--hy-line);
    border-radius: 3px;
    padding: 1px 6px;
    flex-shrink: 0;
    font-weight: 400;
}

/* 门店网格 & 卡片 */
.hy-stores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; grid-auto-rows: 1fr; }
.hy-store {
    display: flex;
    flex-direction: column;
    background: var(--hy-glass);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    position: relative;
    transition: box-shadow .3s, border-color .3s;
}
.hy-store:hover { box-shadow: var(--hy-shadow-hover); border-color: var(--hy-glass-border-strong); }
.hy-store::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--hy-text), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.hy-store:hover::after { opacity: 1; }

.hy-store__pic {
    position: relative;
    padding-top: 56%;
    background: var(--hy-bg-alt);
    overflow: hidden;
}
.hy-store__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-store__body { padding: 18px 22px 22px; flex: 1; }
.hy-store__name {
    font-size: 17px;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hy-text);
    line-height: 1.4;
}
.hy-store__name span:first-child { flex: 1; min-width: 0; word-break: break-word; }
.hy-store__badge {
    display: inline-block;
    font-size: 11px;
    background: var(--hy-text);
    color: #fff;
    border-radius: 3px;
    padding: 1px 6px;
    flex-shrink: 0;
}
.hy-store__intro {
    font-size: 13px;
    line-height: 1.7;
    color: var(--hy-text-weak);
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hy-store__rows {
    border-top: 1px solid var(--hy-line);
    padding-top: 10px;
}
.hy-store__row {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--hy-text-sub);
    padding: 4px 0;
    line-height: 1.6;
    word-break: break-all;
}
.hy-store__row b {
    flex-shrink: 0;
    color: var(--hy-text-weak);
    font-weight: 400;
    width: 36px;
    font-size: 12px;
}
.hy-store__row span { flex: 1; min-width: 0; }
.hy-store__acts { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

/* stores 单列（按城市分组的卡片）：3 列宽松网格，让单卡有足够文字区 */
.hy-stores--single {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.hy-stores--single .hy-store { display: flex; flex-direction: column; }
.hy-stores--single .hy-store__body { padding: 22px 22px 22px; }

/* 平板：2 列 */
@media (max-width: 1180px) {
    .hy-stores--single { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* 手机：1 列 */
@media (max-width: 820px) {
    .hy-stores--single { grid-template-columns: 1fr; gap: 16px; }
    .hy-store__body { padding: 18px 20px 20px; }
    .hy-city__name { font-size: 19px; gap: 10px; padding-left: 12px; }
    .hy-city__name-meta { font-size: 11px; letter-spacing: 2px; }
}

/* ---------- 表单 ---------- */
.hy-form-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 46px; align-items: start; }
.hy-form { background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur-lg)); backdrop-filter: blur(var(--hy-blur-lg)); border: 1px solid var(--hy-glass-border); border-radius: var(--hy-radius-lg); padding: 34px 36px; }
.hy-form--plain { padding: 0; border: 0; background: transparent; position: relative; }
.hy-form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.hy-form__item { display: flex; flex-direction: column; gap: 8px; }
.hy-form__item--full { grid-column: 1 / -1; }
.hy-form__label { font-size: 14px; color: var(--hy-text-sub); font-weight: 600; }
.hy-form__label i { color: #c0392b; font-style: normal; margin-left: 2px; }
.hy-form input[type=text], .hy-form input[type=tel], .hy-form input[type=date], .hy-form select, .hy-form textarea {
    width: 100%;
    padding: 0 14px;
    height: 44px;
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-md);
    background: #ffffff;
    color: var(--hy-text);
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
    font-size: 14px;
}
.hy-form textarea { height: 104px; padding: 12px 14px; line-height: 1.7; resize: vertical; }
.hy-form input:focus, .hy-form select:focus, .hy-form textarea:focus {
    border-color: var(--hy-text);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
    outline: none;
}
.hy-form input::placeholder, .hy-form textarea::placeholder { color: var(--hy-text-weak); }
.hy-form input:-webkit-autofill, .hy-form textarea:-webkit-autofill, .hy-form select:-webkit-autofill {
    -webkit-text-fill-color: var(--hy-text);
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 999999s 0s;
}
.hy-form input[type=date] { color: var(--hy-text); }
.hy-form input[type=date]:not(:focus):placeholder-shown { color: var(--hy-text-weak); }
.hy-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8a8a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}
.hy-form__radios { display: flex; flex-wrap: wrap; gap: 10px; }
.hy-form__radios label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-full);
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: var(--hy-text-sub);
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.hy-form__radios label:hover { border-color: var(--hy-text); }
.hy-form__radios input { position: absolute; opacity: 0; width: 0; height: 0; }
.hy-form__radios .hy-radio-dot {
    width: 16px; height: 16px; flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--hy-glass-border-strong);
    position: relative;
    transition: border-color .15s ease;
}
.hy-form__radios .hy-radio-dot::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--hy-white);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .15s ease;
}
.hy-form__radios input:checked + .hy-radio-dot { border-color: var(--hy-text); }
.hy-form__radios input:checked + .hy-radio-dot::after { transform: translate(-50%, -50%) scale(1); }
.hy-form__radios input:checked + span { color: var(--hy-text); font-weight: 500; }
.hy-form__radios label:has(input:checked) { border-color: var(--hy-text); background: var(--hy-glass-strong); }
.hy-form__foot { margin-top: 26px; display: flex; align-items: center; gap: 18px; }
.hy-form__note { font-size: 13px; color: var(--hy-text-weak); }
.hy-form__msg { margin-top: 16px; font-size: 14px; display: none; padding: 10px 14px; border-radius: var(--hy-radius); }
.hy-form__msg.is-ok { display: block; color: #6cd9a0; background: rgba(108, 217, 160, .12); border: 1px solid rgba(108, 217, 160, .3); }
.hy-form__msg.is-err { display: block; color: #c0392b; background: rgba(232, 123, 110, .12); border: 1px solid rgba(232, 123, 110, .3); }
.hy-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hy-form__radios input:checked + span { color: var(--hy-text); font-weight: 500; }
.hy-form__radios input:checked ~ span { color: var(--hy-text); font-weight: 500; }

/* ---------- CTA ---------- */
.hy-cta {
    background:
        radial-gradient(700px 260px at 85% -20%, rgba(0, 0, 0, .035), transparent 60%),
        var(--hy-bg-alt);
    color: var(--hy-text);
    padding: 68px 0;
    border-top: 1px solid var(--hy-line);
}
.hy-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hy-cta__title { font-size: 30px; letter-spacing: 2px; margin-bottom: 12px; color: var(--hy-text); }
.hy-cta__sub { color: var(--hy-text-sub); }
.hy-cta .hy-btn--light { background: var(--hy-white); border-color: var(--hy-text); color: #000; }
.hy-cta .hy-btn--light:hover { background: transparent; border-color: var(--hy-text); color: var(--hy-text); }

/* ---------- 黑白主题：装饰元素 & 杂志风组件 ---------- */
.hy-divider {
    display: flex; align-items: center; justify-content: center;
    margin: 64px auto; color: var(--hy-text); font-size: 12px; letter-spacing: 6px;
}
.hy-divider::before, .hy-divider::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--hy-gold-line) 50%, transparent);
    margin: 0 24px;
}
.hy-divider--dark { color: var(--hy-text); }
.hy-divider--dark::before, .hy-divider--dark::after { background: linear-gradient(90deg, transparent, var(--hy-gold-line) 50%, transparent); }

.hy-eyebrow-line {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12px; letter-spacing: 6px;
    color: var(--hy-text); text-transform: uppercase;
    font-family: var(--hy-font-body);
}
.hy-eyebrow-line::before {
    content: ""; width: 36px; height: 1px;
    background: var(--hy-white);
}
.hy-section--dark .hy-eyebrow-line { color: var(--hy-text); }

.hy-title-xl {
    font-family: var(--hy-font-title);
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.08;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--hy-text);
}
.hy-title-xl em { color: var(--hy-text); font-style: normal; }
.hy-section--dark .hy-title-xl { color: var(--hy-text); }
.hy-section--dark .hy-title-xl em { color: var(--hy-text); }
.hy-title-lg {
    font-family: var(--hy-font-title);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--hy-text);
}
.hy-section--dark .hy-title-lg { color: var(--hy-text); }

.hy-mega {
    font-family: var(--hy-font-title);
    font-size: clamp(80px, 12vw, 160px);
    line-height: 1;
    letter-spacing: -2px;
    color: var(--hy-text);
    font-weight: 500;
}
.hy-section--dark .hy-mega { color: var(--hy-text); }
.hy-mega em { color: var(--hy-text); font-style: normal; }

/* 步骤指示器 */
.hy-step {
    display: flex; align-items: center; gap: 0;
    margin: 0 auto 56px; max-width: 720px;
    counter-reset: step;
}
.hy-step__item {
    flex: 1; position: relative; text-align: center;
    counter-increment: step;
}
.hy-step__item::before {
    content: counter(step, decimal-leading-zero);
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: transparent; border: 1px solid var(--hy-glass-border-strong);
    color: var(--hy-text);
    font-family: var(--hy-font-title); font-size: 14px; font-weight: 600;
    position: relative; z-index: 2;
}
.hy-step__item.is-active::before, .hy-step__item.is-done::before {
    background: var(--hy-text); color: #fff; border-color: var(--hy-text);
}
.hy-step__item:not(:last-child)::after {
    content: ""; position: absolute;
    top: 19px; left: 50%; right: -50%;
    height: 1px; background: var(--hy-glass-border);
    z-index: 1;
}
.hy-step__item.is-done:not(:last-child)::after { background: var(--hy-text); }
.hy-step__item span {
    display: block; margin-top: 10px;
    font-size: 13px; color: var(--hy-text-sub); letter-spacing: 2px;
}
.hy-step__item.is-active span { color: var(--hy-text); font-weight: 600; }

/* 城市/分类大图横幅 */
.hy-banner {
    position: relative; overflow: hidden;
    border-radius: var(--hy-radius-lg);
    box-shadow: var(--hy-shadow);
    border: 1px solid var(--hy-glass-border);
}
.hy-banner__media {
    position: relative; aspect-ratio: 21 / 7; min-height: 220px; overflow: hidden;
    background: #ffffff;
}
.hy-banner__media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.62) saturate(1.02);
    transition: transform .8s ease, filter .6s ease;
}
.hy-banner:hover .hy-banner__media img { transform: scale(1.04); filter: brightness(.76); }
.hy-banner__body {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px 44px;
    color: #fff;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .72) 100%);
}
.hy-banner__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 6px; color: rgba(255,255,255,.85);
    text-transform: uppercase; margin-bottom: 10px;
}
.hy-banner__eyebrow::before {
    content: ""; width: 28px; height: 1px; background: rgba(255,255,255,.7);
}
.hy-banner__title {
    font-family: var(--hy-font-title);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15; letter-spacing: 2px;
    color: #fff; margin: 0;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
}
.hy-banner__sub { color: rgba(255,255,255,.78); margin-top: 8px; font-size: 14px; }
.hy-banner__cta {
    position: absolute; right: 36px; bottom: 36px;
    padding: 12px 26px; border: 1px solid var(--hy-white);
    color: var(--hy-text);
    background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(10px) saturate(160%); backdrop-filter: blur(10px) saturate(160%); border-radius: var(--hy-radius-md);
    font-size: 14px; letter-spacing: 2px;
    transition: all .3s ease;
}
.hy-banner__cta:hover { background: var(--hy-white); color: #000; }

/* 特色大卡 */
.hy-feature-card {
    position: relative; overflow: hidden;
    border-radius: var(--hy-radius-lg);
    background: var(--hy-glass-dark);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    box-shadow: var(--hy-shadow);
    border: 1px solid var(--hy-glass-border);
    transition: all .4s ease;
    display: block;
    color: inherit;
}
.hy-feature-card:hover { transform: translateY(-4px); box-shadow: var(--hy-shadow-hover); border-color: var(--hy-glass-border-strong); }
.hy-feature-card__media {
    position: relative; aspect-ratio: 4 / 3; overflow: hidden;
}
.hy-feature-card--tall .hy-feature-card__media { aspect-ratio: 4 / 5; }
.hy-feature-card--wide .hy-feature-card__media { aspect-ratio: 16 / 9; }
.hy-feature-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.hy-feature-card:hover .hy-feature-card__media img { transform: scale(1.05); }
.hy-feature-card__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .7) 100%);
    opacity: 0; transition: opacity .3s;
}
.hy-feature-card:hover .hy-feature-card__media::after { opacity: 1; }
.hy-feature-card__body {
    padding: 22px 24px 26px;
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    border-top: 1px solid var(--hy-glass-border);
    position: relative;
}
.hy-feature-card__body::before {
    content: ""; position: absolute; top: 0; left: 24px; right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--hy-white) 0%, var(--hy-white) 30%, transparent 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.hy-feature-card:hover .hy-feature-card__body::before { transform: scaleX(1); }
.hy-feature-card__eyebrow {
    font-size: 11px; letter-spacing: 4px;
    color: var(--hy-text); text-transform: uppercase;
    margin-bottom: 8px;
}
.hy-feature-card__title {
    font-family: var(--hy-font-title);
    font-size: 22px; line-height: 1.35;
    margin: 0 0 10px; color: var(--hy-text);
    font-weight: 500;
}
.hy-feature-card--tall .hy-feature-card__title { font-size: 28px; }
.hy-feature-card__desc {
    font-size: 14px; line-height: 1.7;
    color: var(--hy-text-sub);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.hy-feature-card__meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px;
    font-size: 12px; color: var(--hy-text-weak); letter-spacing: 2px;
}
.hy-feature-card__count {
    color: var(--hy-text); font-weight: 600;
}

/* P1-5 首页 Featured 大卡：与下方作品卡拉开层级（黑色强调线 + 更大字号 + 更强阴影，保持中性灰） */
.hy-feature-card--featured {
    border-color: var(--hy-glass-border-strong);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .12), 0 1px 0 rgba(255, 255, 255, .7) inset;
}
.hy-feature-card--featured .hy-feature-card__body { padding: 28px 30px 32px; }
.hy-feature-card--featured .hy-feature-card__eyebrow { color: var(--hy-text); letter-spacing: 5px; }
.hy-feature-card--featured .hy-feature-card__title { font-size: 30px; }
.hy-feature-card--featured .hy-feature-card__body::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--hy-text) 0%, var(--hy-text) 30%, transparent 100%);
}

/* 场景分类卡片 */
.hy-cat-banner {
    position: relative; overflow: hidden;
    border-radius: var(--hy-radius-lg);
    box-shadow: var(--hy-shadow);
    border: 1px solid var(--hy-glass-border);
    transition: all .35s;
    display: block; color: inherit;
    background: #ffffff;
}
.hy-cat-banner:hover { transform: translateY(-3px); box-shadow: var(--hy-shadow-hover); border-color: var(--hy-glass-border-strong); }
.hy-cat-banner__media {
    position: relative; aspect-ratio: 3 / 2; overflow: hidden;
}
.hy-cat-banner__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.hy-cat-banner:hover .hy-cat-banner__media img { transform: scale(1.06); }
.hy-cat-banner__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 24px 26px 22px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .7) 70%);
}
.hy-cat-banner__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 4px; color: rgba(255,255,255,.85);
    text-transform: uppercase; margin-bottom: 8px;
}
.hy-cat-banner__eyebrow::before {
    content: ""; width: 22px; height: 1px; background: rgba(255,255,255,.7);
}
.hy-cat-banner__title {
    font-family: var(--hy-font-title);
    font-size: 22px; line-height: 1.3; margin: 0;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

/* 大图全宽 Hero（黑白杂志感） */
.hy-hero--ink {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    color: var(--hy-text);
    padding: 140px 0 110px;
    overflow: hidden;
}
.hy-hero--ink::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(900px 360px at 18% 0%, rgba(0, 0, 0, .035), transparent 65%),
        radial-gradient(700px 320px at 100% 100%, rgba(0, 0, 0, .022), transparent 60%);
    pointer-events: none;
}
.hy-hero--ink::after {
    content: ""; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 56px; height: 1px;
    background: var(--hy-white);
}
.hy-hero--ink .hy-hero__inner {
    align-items: stretch; gap: 72px;
    position: relative; z-index: 2;
}
.hy-hero--ink .hy-hero__eyebrow {
    color: var(--hy-text);
    letter-spacing: 6px; font-size: 12px; text-transform: uppercase;
    background: transparent; padding: 0; border-radius: 0;
    margin-bottom: 28px;
}
.hy-hero--ink .hy-hero__eyebrow::after { display: none; }
.hy-hero--ink .hy-hero__title {
    color: var(--hy-text);
    font-size: clamp(46px, 6.4vw, 84px);
    line-height: 1.1; letter-spacing: 2px; font-weight: 500;
    margin-bottom: 24px;
    text-shadow: none;
}
.hy-hero--ink .hy-hero__title em {
    color: var(--hy-text); font-style: normal;
    background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, .07) 64%, rgba(0, 0, 0, .07) 92%, transparent 92%);
    padding: 0 4px;
}
.hy-hero--ink .hy-hero__sub {
    color: rgba(255, 255, 255, .72);
    font-size: 16px; letter-spacing: 2px; line-height: 1.85;
    margin-bottom: 36px; max-width: 540px;
}
.hy-hero--ink .hy-hero__tips span {
    background: rgba(0, 0, 0, .035);
    border-color: rgba(255, 255, 255, .22);
    color: var(--hy-dark-label);
}
.hy-hero--ink .hy-hero__tips span::before { background: var(--hy-white); }
.hy-hero--ink .hy-hero__tips span:hover { background: var(--hy-white); color: #000; border-color: var(--hy-text); }
.hy-hero--ink .hy-hero__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    align-self: stretch;
    position: relative;
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .10);
    border: 1px solid var(--hy-glass-border);
}
.hy-hero--ink .hy-hero__grid a { border-radius: 0; box-shadow: none; }
.hy-hero--ink .hy-hero__grid a:first-child { grid-row: auto; aspect-ratio: 4 / 5; }
.hy-hero--ink .hy-hero__grid a:not(:first-child) { display: none; }
.hy-hero--ink .hy-hero__grid img { border-radius: 0; }

/* hero 大图版（明亮主题） */
.hy-hero--split .hy-hero__grid {
    grid-template-columns: 1fr; grid-auto-rows: auto; gap: 0;
    align-self: stretch;
    position: relative;
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    box-shadow: var(--hy-shadow-hover);
    border: 1px solid var(--hy-glass-border);
}
.hy-hero--split .hy-hero__grid a { border-radius: 0; box-shadow: none; aspect-ratio: 4 / 5; }
.hy-hero--split .hy-hero__grid a:not(:first-child) { display: none; }

/* 滚入渐显（subtle） */
@keyframes hyFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hy-fade-up { animation: hyFadeUp .8s ease both; }
.hy-fade-up--d1 { animation-delay: .1s; }
.hy-fade-up--d2 { animation-delay: .2s; }
.hy-fade-up--d3 { animation-delay: .3s; }
.hy-fade-up--d4 { animation-delay: .4s; }

/* ---------- 页脚 ---------- */
.hy-footer { background: #ffffff; color: var(--hy-text-sub); font-size: 14px; padding: 56px 0 0; border-top: 1px solid var(--hy-line); }
.hy-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #e5e5e5; }
.hy-footer__title { color: var(--hy-text); font-size: 16px; margin-bottom: 18px; letter-spacing: 1px; }
.hy-footer__brand { font-size: 22px; color: var(--hy-text); letter-spacing: 4px; margin-bottom: 14px; }
.hy-footer a:hover { color: var(--hy-text); }
.hy-footer li { padding: 5px 0; }
.hy-footer__phone { font-size: 24px; color: var(--hy-text); letter-spacing: 1px; margin: 6px 0 10px; }
.hy-footer__links { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding: 18px 0 0; font-size: 13px; color: #6a6a6a; }
.hy-footer__links a { color: #6a6a6a; text-decoration: none; }
.hy-footer__links a:hover { color: var(--hy-text); }
.hy-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 13px; color: #6a6a6a; }

/* ---------- 空态 / 404 ---------- */
.hy-empty { text-align: center; padding: 80px 20px; color: var(--hy-text-weak); }
.hy-empty__title { font-size: 20px; color: var(--hy-text-sub); margin-bottom: 10px; }
.hy-404 { text-align: center; padding: 120px 20px; }
.hy-404__code { font-size: 84px; color: #e5e5e5; letter-spacing: 6px; line-height: 1; }
.hy-404__title { font-size: 24px; margin: 18px 0 12px; color: var(--hy-text); }

/* ---------- 灯箱 ---------- */
.hy-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.hy-lightbox.is-open { display: flex; }
.hy-lightbox img { max-width: 88vw; max-height: 88vh; border-radius: var(--hy-radius); }
.hy-lightbox__close {
    position: absolute;
    top: 26px;
    right: 34px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    opacity: .8;
}
.hy-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
}
.hy-lightbox__nav:hover { background: rgba(255, 255, 255, .24); }
.hy-lightbox__prev { left: 34px; }
.hy-lightbox__next { right: 34px; }
.hy-lightbox__idx { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #cfcfcf; font-size: 14px; }

/* ---------- 悬浮咨询 ---------- */
.hy-float { position: fixed; right: 24px; bottom: 90px; z-index: 80; display: grid; gap: 10px; }
.hy-float a {
    width: 54px;
    height: 54px;
    border-radius: var(--hy-radius);
    background: var(--hy-glass); -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%); backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--hy-blur));
    backdrop-filter: blur(var(--hy-blur));
    border: 1px solid var(--hy-glass-border);
    box-shadow: var(--hy-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--hy-text-sub);
    line-height: 1.3;
}
.hy-float a:hover { border-color: var(--hy-text); color: var(--hy-text); background: var(--hy-glass-strong); }

/* ---------- 小屏收敛 ---------- */
@media (max-width: 1180px) {
    .hy-works, .hy-scenes { grid-template-columns: repeat(2, 1fr); }
    .hy-points { grid-template-columns: repeat(2, 1fr); }
    .hy-stats { grid-template-columns: repeat(4, 1fr); }
    .hy-stats__item:nth-child(4n) { border-right: 0; }
    .hy-detail, .hy-layout, .hy-form-wrap { grid-template-columns: 1fr; }
    .hy-detail__side { position: static; }
    .hy-arts, .hy-stores { grid-template-columns: repeat(2, 1fr); }
    .hy-hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .hy-wrap { padding: 0 18px; }
    .hy-nav { display: none; }
    .hy-header__cta { display: none; }

    .hy-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 0 9px;
        margin-left: auto;
        background: transparent;
        border: 1px solid var(--hy-glass-border);
        border-radius: var(--hy-radius);
        cursor: pointer;
    }
    .hy-burger span {
        display: block;
        height: 2px;
        background: var(--hy-text);
        border-radius: 2px;
        transition: transform .25s, opacity .25s;
    }
    .hy-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hy-burger.is-open span:nth-child(2) { opacity: 0; }
    .hy-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hy-drawer {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .92);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        backdrop-filter: blur(20px) saturate(160%);
        border-top: 1px solid var(--hy-line);
        box-shadow: var(--hy-shadow);
        z-index: 90;
    }
    .hy-drawer.is-open { display: block; }
    .hy-drawer__nav { display: grid; padding: 8px 18px 18px; }
    .hy-drawer__nav a {
        padding: 13px 4px;
        font-size: 16px;
        border-bottom: 1px solid var(--hy-line);
        color: var(--hy-text);
    }
    .hy-drawer__nav a.is-active { color: var(--hy-text); font-weight: 500; }
    .hy-drawer__nav a.hy-drawer__cta {
        margin-top: 12px;
        text-align: center;
        border: 1px solid var(--hy-white);
        border-radius: var(--hy-radius);
        color: #000;
        background: var(--hy-white);
    }

    .hy-hero { padding: 60px 0 50px; }
    .hy-hero__title { font-size: 34px; letter-spacing: 2px; line-height: 1.4; }
    .hy-hero__sub { font-size: 14px; margin-bottom: 28px; }
    .hy-hero__acts { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 24px; }
    .hy-hero__acts .hy-btn { width: 100%; }
    .hy-works, .hy-scenes, .hy-bases, .hy-arts, .hy-stores, .hy-points { grid-template-columns: repeat(2, 1fr); }
    .hy-section--warm .hy-point { padding: 32px 24px; column-gap: 16px; }
    .hy-section--warm .hy-point__no { font-size: 34px; min-width: 42px; margin-top: -2px; }
    .hy-section--warm .hy-point__title { font-size: 18px; }
    .hy-section--warm .hy-point__sub,
    .hy-section--warm .hy-point__text,
    .hy-section--warm .hy-point__tags { padding-left: 0; }
    .hy-section--warm .hy-point__text { margin-top: 6px; }
    .hy-section--warm .hy-sect-head__title { font-size: 28px; letter-spacing: 2px; }
    .hy-footer__top { grid-template-columns: 1fr 1fr; }
    .hy-cta__inner { flex-direction: column; text-align: center; }
    .hy-form__row { grid-template-columns: 1fr; }
    .hy-form__foot { flex-direction: column; align-items: stretch; gap: 12px; }
    .hy-form__foot .hy-btn { width: 100%; }
    .hy-form__foot .hy-form__note { text-align: center; }
.hy-stats { grid-template-columns: repeat(2, 1fr); }
.hy-stats__item:nth-child(2n) { border-right: 0; }
.hy-stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--hy-line); }
.hy-section--dark { padding: 56px 0; }
.hy-section--dark .hy-stats__item { padding: 36px 8px; }
.hy-section--dark .hy-stats__item::before { top: 18px; width: 22px; }
.hy-section--dark .hy-stats__value { font-size: 38px; }
/* 移动端长数字（250000）防溢出：小屏缩号 + 允许收缩 */
@media (max-width: 420px) {
    .hy-stats__value { font-size: 24px; letter-spacing: 0; }
    .hy-section--dark .hy-stats__value { font-size: 30px; letter-spacing: 0; }
}
/* 攻略详情标题移动端缩号（原内联 38px 已移除，这里兜底） */
@media (max-width: 820px) {
    .hy-article__title { font-size: 24px; letter-spacing: 0; }
}
.hy-section--dark .hy-stats__label { letter-spacing: 4px; font-size: 12px; margin-top: 14px; }
    .hy-stores--single { grid-template-columns: 1fr; }
    .hy-scene-coming { padding: 30px 22px; }
    .hy-scene-coming__title { font-size: 18px; letter-spacing: 1px; }
    .hy-scene-coming__title em { font-size: 20px; }
}
@media (min-width: 821px) {
    .hy-burger, .hy-drawer { display: none; }
}

/* ==========================================================================
   首页 Portfolio Hero（参考摄影师作品集模板：深色全屏 + 顶栏叠加 + 大字标题 + 多图轮播）
   ========================================================================== */

/* —— 全屏深色背景 + 顶栏叠加 —— */
.hy-hero--portfolio {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    margin-top: -117px; /* 吸顶 topbar(38) + header(78) + 1px line = 117，回正后顶栏叠到 hero 顶端 */
    padding-top: 117px;
    background: #0a0a0a;
    color: #ffffff;
    min-height: calc(100vh); /* 全屏高度：首屏正好覆盖视口，统计区从第二屏起 */
    display: flex;
    align-items: flex-end; /* 让内层(inner)贴 Hero 底部 → 内容双层贴底到视口 */
}
.hy-hero--portfolio .hy-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1100px 700px at 22% 30%, rgba(255, 255, 255, .08), transparent 65%),
        radial-gradient(900px 600px at 80% 70%, rgba(255, 255, 255, .04), transparent 65%),
        linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}
.hy-hero--portfolio .hy-hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 80px);
    opacity: .55;
    mix-blend-mode: screen;
}
.hy-hero--portfolio .hy-hero__bg::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
}

/* —— 顶栏与导航叠加（深色 Hero 上的反白样式） —— */
.hy-topbar.hy-topbar--overlay {
    position: relative;
    z-index: 91; /* 高于 hero(.hy-hero--portfolio margin-top:-117 视觉顶到 y=0) 与 hy-header (z:90) */
    background: transparent;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.hy-topbar.hy-topbar--overlay b { color: #ffffff; }

.hy-header.hy-header--overlay {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.hy-header.hy-header--overlay .hy-logo__name { color: #ffffff; }
.hy-header.hy-header--overlay .hy-logo__slogan { color: rgba(255, 255, 255, .55); }
.hy-header.hy-header--overlay .hy-nav a { color: rgba(255, 255, 255, .78); }
.hy-header.hy-header--overlay .hy-nav a:hover,
.hy-header.hy-header--overlay .hy-nav a.is-active { color: #ffffff; }
.hy-header.hy-header--overlay .hy-nav a::after { background: #ffffff; }
/* 滚出 hero 后切换为黑底半透：透明 overlay 在白色 section 上看不到文字 */
.hy-header.hy-header--overlay.hy-header--sticky {
    background: rgba(10, 10, 10, .72);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom-color: rgba(255, 255, 255, .08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}

/* —— 内容布局：文字块整体靠下方居中（不遮挡人物面部，参考图红色框位置） —— */
.hy-hero--portfolio .hy-hero__inner {
    display: flex;
    justify-content: center;         /* 文字块水平居中 */
    align-items: flex-end;           /* 文字块靠下：底部 ≈ inner 底部 - 80px */
    width: 100%;
    height: 520px;                   /* 固定内框高度 */
    padding: 120px 0 80px;
    text-align: center;
}
.hy-hero--portfolio .hy-hero__content {
    position: relative;
    width: 100%;
    max-width: 720px;                /* 文字块宽度收紧到 720px */
    margin: 0 auto;
    padding-left: 0;                 /* 居中布局不需左侧 padding */
}
.hy-hero--portfolio .hy-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 13px; letter-spacing: 6px; text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
}
.hy-hero--portfolio .hy-hero__eyebrow::before,
.hy-hero--portfolio .hy-hero__eyebrow::after {
    content: ""; width: 36px; height: 2px; flex-shrink: 0;
    background: rgba(255, 255, 255, .85);
}
.hy-hero--portfolio .hy-hero__eyebrow::before {
    background: linear-gradient(270deg, var(--hy-white), transparent);
}
.hy-hero--portfolio .hy-hero__eyebrow::after {
    background: linear-gradient(90deg, var(--hy-white), transparent);
}
.hy-hero--portfolio .hy-hero__title {
    font-size: clamp(40px, 5.6vw, 84px);
    line-height: 1.05;
    letter-spacing: 4px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 22px;
    text-shadow: 0 2px 28px rgba(0, 0, 0, .55);
}
.hy-hero--portfolio .hy-hero__title em {
    font-style: normal;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, .78);
    padding-bottom: 2px;
}
.hy-hero--portfolio .hy-hero__title-tail { color: rgba(255, 255, 255, .85); margin-left: .2em; }
.hy-hero--portfolio .hy-hero__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .72);
    letter-spacing: 3px;
    margin: 0 0 36px;
    line-height: 1.85;
}
.hy-hero--portfolio .hy-hero__acts {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    margin-bottom: 28px;
}
.hy-hero--portfolio .hy-hero__arrow { display: inline-block; transition: transform .25s; }
.hy-hero--portfolio .hy-btn--hero-ghost:hover .hy-hero__arrow { transform: translateX(4px); }

.hy-hero--portfolio .hy-hero__chips {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    font-size: 13px; color: rgba(255, 255, 255, .72);
}
.hy-hero--portfolio .hy-hero__chips span {
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 100px;
}

/* —— Hero 上专用的两类按钮 —— */
.hy-btn--hero-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.hy-btn--hero-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}
.hy-btn--hero-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .35);
}
.hy-btn--hero-ghost:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
}

/* —— 多图轮播栈：所有 banner 叠在 bg 之上，交叉淡入淡出 —— */
.hy-hero--portfolio .hy-hero__slides {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.hy-hero--portfolio .hy-hero__slide {
    position: absolute;
    inset: 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1200ms ease;
}
.hy-hero--portfolio .hy-hero__slide.is-active { opacity: 1; }

/* —— 右下角指示点 —— */
.hy-hero--portfolio .hy-hero__dots {
    position: absolute;
    right: 32px;
    bottom: 64px;
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.hy-hero--portfolio .hy-hero__dots:not(:empty) {
    opacity: 1;
    pointer-events: auto;
}
.hy-hero--portfolio .hy-hero__dots span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .3s, width .3s;
    border-radius: 1px;
}
.hy-hero--portfolio .hy-hero__dots span:hover { background: rgba(255, 255, 255, .55); }
.hy-hero--portfolio .hy-hero__dots span.is-active {
    background: rgba(255, 255, 255, .9);
    width: 36px;
}

/* —— 滚屏指示器 —— */
.hy-hero--portfolio .hy-hero__scrollhint {
    position: absolute;
    left: 50%; bottom: 0; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px; letter-spacing: 4px;
}
.hy-hero--portfolio .hy-hero__scrollhint-line {
    width: 1px; height: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), transparent);
    position: relative;
    overflow: hidden;
}
.hy-hero--portfolio .hy-hero__scrollhint-line::after {
    content: "";
    position: absolute; top: -8px; left: 0;
    width: 1px; height: 8px;
    background: #ffffff;
    animation: hy-scrollDot 1.6s ease-in-out infinite;
}
@keyframes hy-scrollDot {
    0%   { top: -8px; opacity: 0; }
    50%  { top: 20px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* —— 响应式 —— */
@media (max-width: 1180px) {
    .hy-hero--portfolio .hy-hero__inner {
        padding: 99px 0 70px;
    }
    .hy-hero--portfolio .hy-hero__content { max-width: 600px; }
    .hy-hero--portfolio .hy-hero__dots { right: 24px; bottom: 56px; }
}
@media (max-width: 820px) {
    .hy-hero--portfolio {
        margin-top: -78px; /* topbar 在移动端折叠，仅扣除 header 高度 */
        padding-top: 78px;
        min-height: auto; /* 移动端不再强制全屏，按内容自然高度 */
    }
    .hy-hero--portfolio .hy-topbar.hy-topbar--overlay { display: none; }
    .hy-hero--portfolio .hy-hero__inner { padding: 80px 24px 50px; justify-content: center; align-items: flex-end; }
    .hy-hero--portfolio .hy-hero__content { max-width: 100%; padding-left: 0; padding-bottom: 24px; }
    .hy-hero--portfolio .hy-hero__title { font-size: 32px; }
    .hy-hero--portfolio .hy-hero__dots { right: 16px; bottom: 28px; }
    .hy-hero--portfolio .hy-hero__scrollhint { display: none; }
    .hy-topbar.hy-topbar--overlay { display: none; }
}
/* About 页面响应式 */
@media (max-width: 1180px) {
    .hy-about__intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .hy-about__services-grid { grid-template-columns: 240px 1fr; gap: 40px; }
    .hy-about__services-list { grid-template-columns: repeat(2, 1fr); }
    .hy-about__services-title { font-size: 40px; letter-spacing: 3px; }
}
@media (max-width: 820px) {
    .hy-about__intro { padding: 56px 0 48px; }
    .hy-about__intro-grid { gap: 24px; }
    .hy-about__intro-text .hy-sect-head__title { font-size: 30px; letter-spacing: 2px; }
    .hy-about__services { padding: 56px 0 48px; }
    .hy-about__services-grid { grid-template-columns: 1fr; gap: 28px; }
    .hy-about__services-intro { position: static; }
    .hy-about__services-title { font-size: 34px; letter-spacing: 2px; }
    .hy-about__services-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hy-about__service-title { font-size: 13px; }
    .hy-about__service-text { padding: 12px 14px; }

    /* 筛选浮动条：小屏贴边、隐藏已选摘要 */
    .hy-filter.is-float { width: calc(100% - 24px); top: 72px; padding: 0 12px; }
    .hy-filter.is-float .hy-filter__bar { gap: 10px; height: 54px; }
    .hy-filter.is-float .hy-filter__summary { display: none; }
    .hy-filter.is-float.is-open .hy-filter__body {
        position: fixed; top: 134px; left: 12px; right: 12px;
        max-height: calc(100vh - 150px); padding: 4px 16px;
    }
    .hy-filter__row { flex-direction: column; gap: 8px; }
    .hy-filter__label { width: auto; }
}

/* ---------- 预约页：独立咨询版块（电话 / 微信 / 营业时间） ---------- */
/* 与下方 .hy-card 同款玻璃质感：白底模糊 + 细线分隔 */
.hy-ct-strip { padding: 30px 0 0; }
.hy-ct {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--hy-glass);
    -webkit-backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    backdrop-filter: blur(var(--hy-blur)) saturate(160%);
    border: 1px solid var(--hy-glass-border);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
}
.hy-ct__cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 32px 26px;
    color: var(--hy-text);
    transition: background .25s;
}
.hy-ct__cell:not(:last-child) { border-right: 1px solid var(--hy-glass-border); }
a.hy-ct__cell--link { text-decoration: none; }
.hy-ct__cell--link:hover { background: var(--hy-gold-soft); }
.hy-ct__cell--link:hover .hy-ct__v { color: var(--hy-text); }
.hy-ct__k {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--hy-text-weak);
}
.hy-ct__v {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--hy-text);
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}
.hy-ct__tip {
    font-size: 12px;
    color: var(--hy-text-weak);
    letter-spacing: 1px;
}

@media (max-width: 860px) {
    .hy-ct-strip { padding: 22px 0 0; }
    .hy-ct { grid-template-columns: 1fr; }
    .hy-ct__cell { padding: 20px 24px; }
    .hy-ct__cell:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--hy-glass-border); }
    .hy-ct__v { font-size: 24px; }
}

/* ---------- 主题筛选：选中父级后出现的「主题细分」缩进行 ---------- */
.hy-filter__row--sub { margin-left: 48px; }
.hy-filter__row--sub .hy-filter__label {
    color: var(--hy-text-weak);
    font-size: 13px;
    letter-spacing: 2px;
    padding-left: 14px;
    position: relative;
}
.hy-filter__row--sub .hy-filter__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--hy-text-weak);
    opacity: .6;
}
@media (max-width: 860px) {
    .hy-filter__row--sub { margin-left: 16px; }
}

/* ---------- 移动端顶栏：收起营业时间，防止窄屏断行/孤字 ---------- */
@media (max-width: 820px) {
    .hy-topbar .hy-wrap { gap: 12px; }
    .hy-topbar .hy-wrap span:last-child { display: none; }
    .hy-topbar .hy-wrap span:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
}

/* ---------- 移动端筛选：文档流内折叠（bar 常驻，点「筛选」展开完整面板） ---------- */
@media (max-width: 820px) {
    .hy-filter.is-compact .hy-filter__bar {
        display: flex;
        align-items: center;
        gap: 10px;
        height: 54px;
        padding: 0 14px;
    }
    .hy-filter.is-compact .hy-filter__summary { display: none; }
    .hy-filter.is-compact .hy-filter__body { display: none; }
    .hy-filter.is-compact.is-open .hy-filter__body { display: block; }
}

/* ---------- 移动端基地/场景卡：名称允许换行，徽标收紧，避免截断 ---------- */
@media (max-width: 820px) {
    .hy-base__name, .hy-scene__name { white-space: normal; font-size: 13.5px; line-height: 1.35; }
    .hy-base__body, .hy-scene__body { padding: 10px 12px; gap: 8px; }
    .hy-base__type { font-size: 10px; padding: 2px 7px; }
}
