/* ==========================================================================
   欢颜摄影官网 PC 版样式
   设计基调：奶油白底 + 暖金点缀，弱化促销感，突出作品本身
   仅面向 PC（min-width 1200 主布局），小屏做基础收敛
   ========================================================================== */

:root {
    --hy-bg: #fbf9f6;
    --hy-bg-alt: #f5f1ea;
    --hy-white: #ffffff;
    --hy-text: #2c2925;
    --hy-text-sub: #6b645c;
    --hy-text-weak: #9a938a;
    --hy-line: #e8e2d8;
    --hy-gold: #b08d57;
    --hy-gold-deep: #8c6d3f;
    --hy-gold-soft: #f2e9dc;
    --hy-radius: 4px;
    --hy-radius-lg: 10px;
    --hy-shadow: 0 6px 24px rgba(44, 41, 37, .06);
    --hy-shadow-hover: 0 14px 40px rgba(44, 41, 37, .14);
    --hy-max: 1280px;
}

* { box-sizing: border-box; }

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

body {
    background: var(--hy-bg);
    color: var(--hy-text);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- 顶部 ---------- */
.hy-topbar {
    background: #2c2925;
    color: #cfc7bb;
    font-size: 13px;
    line-height: 38px;
}
.hy-topbar .hy-wrap { display: flex; justify-content: space-between; }
.hy-topbar b { color: var(--hy-gold); font-weight: 500; }

.hy-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(251, 249, 246, .96);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--hy-line);
}
.hy-header .hy-wrap {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 40px;
}
.hy-logo { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.hy-logo__name { font-size: 24px; letter-spacing: 4px; font-weight: 500; }
.hy-logo__slogan { font-size: 12px; color: var(--hy-text-weak); letter-spacing: 1px; }
.hy-logo img { height: 40px; }

.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: 2px;
    background: var(--hy-gold);
    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-gold);
    border-radius: var(--hy-radius);
    background: var(--hy-gold);
    color: #fff;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}
.hy-btn:hover { background: var(--hy-gold-deep); border-color: var(--hy-gold-deep); color: #fff; }
.hy-btn--ghost { background: transparent; color: var(--hy-gold); }
.hy-btn--ghost:hover { background: var(--hy-gold); color: #fff; }
.hy-btn--light { background: #fff; border-color: var(--hy-line); color: var(--hy-text); }
.hy-btn--light:hover { border-color: var(--hy-gold); color: var(--hy-gold); background: #fff; }
.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 {
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(176, 141, 87, .10), transparent 60%),
        linear-gradient(180deg, #f7f1e8 0%, var(--hy-bg) 100%);
    border-bottom: 1px solid var(--hy-line);
}
    position: relative;
    padding: 92px 0 76px;
    background: linear-gradient(180deg, #f7f1e7 0%, var(--hy-bg) 100%);
    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: 3px;
    color: var(--hy-gold-deep);
    background: var(--hy-gold-soft);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.hy-hero__title { font-size: 54px; line-height: 1.3; letter-spacing: 2px; margin-bottom: 22px; font-weight: 500; }
.hy-hero__sub { font-size: 16px; color: var(--hy-text-sub); letter-spacing: 2px; margin-bottom: 34px; }
.hy-hero__acts { display: flex; gap: 14px; margin-bottom: 34px; }
.hy-hero__tips { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 14px; color: var(--hy-text-sub); }
.hy-hero__tips span::before { content: "· "; color: var(--hy-gold); }

/* 标题上方的金色花体装饰线 */
.hy-hero__eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 16px 0 0;
    background: linear-gradient(90deg, var(--hy-gold), 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);
    background: var(--hy-bg-alt);
}
.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-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; }
.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-gold-deep); 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; }

/* ---------- 品牌数据条（4 项大数字）---------- */
.hy-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hy-line); border-bottom: 1px solid var(--hy-line); }
.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-gold-deep); letter-spacing: 1px; font-weight: 500; }
.hy-stats__label { font-size: 13px; color: var(--hy-text-weak); margin-top: 8px; letter-spacing: 2px; }

/* ---------- 卖点（首页 3 列大卡）---------- */
.hy-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hy-point {
    background: var(--hy-white);
    border: 1px solid var(--hy-line);
    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-gold-soft); }
.hy-point__no { font-size: 13px; letter-spacing: 2px; color: var(--hy-gold); margin-bottom: 16px; }
.hy-point__title { font-size: 20px; line-height: 1.5; margin-bottom: 12px; }
.hy-point__sub { font-size: 13px; color: var(--hy-gold-deep); margin-bottom: 16px; }
.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-tag {
    font-size: 12px;
    color: var(--hy-text-sub);
    background: var(--hy-bg-alt);
    border-radius: 100px;
    padding: 3px 10px;
}
.hy-tag--gold { background: var(--hy-gold-soft); color: var(--hy-gold-deep); }

/* ---------- 作品卡片（首页 3 列大图）---------- */
.hy-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hy-works--3 { grid-template-columns: repeat(3, 1fr); }
.hy-work {
    display: block;
    background: var(--hy-white);
    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); }
.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; }
/* hover 时底部渐显"查看整组"引导条 */
.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,.55));
    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(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 100px;
}
.hy-work__body { padding: 16px 18px 18px; }
.hy-work__title { font-size: 16px; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.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: 42px;
}
.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(176, 141, 87, .14), transparent 65%);
}

/* ---------- 场景卡片（首页 3 列横图）---------- */
.hy-scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hy-scene { position: relative; display: block; border-radius: var(--hy-radius-lg); overflow: hidden; box-shadow: var(--hy-shadow); }
.hy-scene__pic { position: relative; padding-top: 64%; background: var(--hy-bg-alt); }
.hy-scene__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.hy-scene:hover .hy-scene__pic img { transform: scale(1.07); }
.hy-scene__mask {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .62) 100%);
}
.hy-scene__name { font-size: 18px; letter-spacing: 1px; }
.hy-scene__count { font-size: 12px; opacity: .85; }
/* 暂无作品的场景占位卡 */
.hy-scene--coming { cursor: default; border: 1px dashed var(--hy-line); box-shadow: none; }
.hy-scene--coming .hy-scene__pic { background:
    repeating-linear-gradient(45deg, var(--hy-bg-alt) 0 12px, var(--hy-white) 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;
}

/* 场景筹备中面板 —— 替代大量 dashed 占位卡，改为紧凑的芯片面板 */
.hy-scene-coming {
    margin-top: 52px;
    padding: 46px 48px;
    background: var(--hy-white);
    border: 1px solid var(--hy-line);
    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(176, 141, 87, .12), transparent 60%);
    pointer-events: none;
}
.hy-scene-coming__title {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}
.hy-scene-coming__title em {
    color: var(--hy-gold-deep);
    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-line);
    border-radius: 100px;
    background: var(--hy-bg);
    color: var(--hy-text-sub);
    font-size: 14px;
    letter-spacing: 1px;
    transition: all .25s;
}
.hy-scene-chip:hover {
    color: var(--hy-gold-deep);
    border-color: var(--hy-gold);
    background: var(--hy-gold-soft);
}

/* ---------- 筛选 ---------- */
.hy-filter { background: var(--hy-white); border: 1px solid var(--hy-line); border-radius: var(--hy-radius-lg); padding: 6px 24px; position: sticky; top: 90px; z-index: 40; box-shadow: var(--hy-shadow); }
.hy-filter__row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--hy-line); }
.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-gold-deep); background: var(--hy-gold-soft); }
.hy-filter__items a.is-active { color: #fff; background: var(--hy-gold); border-color: var(--hy-gold); }
.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-line);
    border-radius: var(--hy-radius);
    background: var(--hy-bg);
}
.hy-filter__search input:focus { border-color: var(--hy-gold); }

/* ---------- 面包屑 / 页头 ---------- */
.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; }
.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-line);
    border-radius: var(--hy-radius);
    background: var(--hy-white);
    font-size: 14px;
    color: var(--hy-text-sub);
}
.hy-pager__item:hover { border-color: var(--hy-gold); color: var(--hy-gold); }
.hy-pager__item.is-active { background: var(--hy-gold); border-color: var(--hy-gold); 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-white);
    border: 1px solid var(--hy-line);
    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-line); }
.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; }
.hy-art {
    display: block;
    background: var(--hy-white);
    border: 1px solid var(--hy-line);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    transition: all .3s;
}
.hy-art:hover { box-shadow: var(--hy-shadow-hover); transform: translateY(-4px); }
.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; }
.hy-art__cate { font-size: 12px; color: var(--hy-gold-deep); }
.hy-art__title { font-size: 17px; margin: 8px 0 10px; line-height: 1.5; }
.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-line);
    border-radius: 100px;
    background: var(--hy-white);
    font-size: 14px;
    color: var(--hy-text-sub);
}
.hy-tabs a.is-active, .hy-tabs a:hover { border-color: var(--hy-gold); color: var(--hy-gold-deep); background: var(--hy-gold-soft); }

.hy-side-list li { padding: 12px 0; border-bottom: 1px dashed var(--hy-line); 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; }
.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: #3c3833; }
.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-gold); }
.hy-article__body h3 { font-size: 18px; margin: 26px 0 12px; }
.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-bottom: 42px; }
html { scroll-behavior: smooth; }
.hy-city-tab:hover { border-color: var(--hy-gold); color: var(--hy-gold-deep); }
.hy-city__name { font-size: 20px; letter-spacing: 2px; margin-bottom: 18px; padding-left: 12px; border-left: 3px solid var(--hy-gold); }
.hy-stores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hy-store {
    background: var(--hy-white);
    border: 1px solid var(--hy-line);
    border-radius: var(--hy-radius-lg);
    overflow: hidden;
    transition: all .3s;
}
.hy-store:hover { box-shadow: var(--hy-shadow-hover); }
.hy-store__pic { position: relative; padding-top: 56%; background: var(--hy-bg-alt); }
.hy-store__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-store__body { padding: 20px 22px 22px; }
.hy-store__name { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hy-store__badge { font-size: 11px; background: var(--hy-gold); color: #fff; border-radius: 3px; padding: 1px 6px; }
.hy-store__row { display: flex; gap: 8px; font-size: 14px; color: var(--hy-text-sub); padding: 3px 0; }
.hy-store__row b { flex-shrink: 0; color: var(--hy-text-weak); font-weight: 400; width: 40px; }
.hy-store__acts { margin-top: 16px; display: flex; gap: 10px; }

/* 门店卡片顶部金色细线（hover 显现），为纯文字门店卡增添质感 */
.hy-store { position: relative; }
.hy-store::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--hy-gold), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.hy-store:hover::after { opacity: 1; }

/* 门店列表（单列全宽）—— 用于 1 家/城市的门店页，避免右侧大块留白 */
.hy-stores--single { grid-template-columns: 1fr; gap: 16px; }
.hy-stores--single .hy-store {
    padding-left: 22px;
    border-left: 3px solid var(--hy-gold);
    background-image: linear-gradient(90deg, rgba(242, 233, 220, .6), transparent 45%);
}
.hy-stores--single .hy-store:hover { box-shadow: var(--hy-shadow-hover); }

/* ---------- 表单 ---------- */
.hy-form-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 46px; align-items: start; }
.hy-form { background: var(--hy-white); border: 1px solid var(--hy-line); 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); }
.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-line);
    border-radius: var(--hy-radius);
    background: var(--hy-bg);
    color: var(--hy-text);
    transition: border-color .25s;
}
.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-gold); background: #fff; }
.hy-form__radios { display: flex; flex-wrap: wrap; gap: 10px; }
.hy-form__radios label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--hy-line);
    border-radius: 100px;
    background: var(--hy-bg);
    font-size: 14px;
    color: var(--hy-text-sub);
    cursor: pointer;
}
.hy-form__radios label:hover { border-color: var(--hy-gold); }
.hy-form__radios input { display: none; }
.hy-form__radios input:checked + span { color: var(--hy-gold-deep); font-weight: 500; }
.hy-form__radios label:has(input:checked) { border-color: var(--hy-gold); background: var(--hy-gold-soft); }
.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: #1e7d4f; background: #e9f6ef; }
.hy-form__msg.is-err { display: block; color: #b03a2e; background: #fbeceb; }
.hy-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* 旧浏览器不支持 :has() 时的兜底：被选中项直接高亮 */
.hy-form__radios input:checked + span { color: var(--hy-gold-deep); font-weight: 500; }
.hy-form__radios input:checked ~ span { color: var(--hy-gold-deep); font-weight: 500; }

/* ---------- CTA ---------- */
.hy-cta {
    background:
        radial-gradient(900px 300px at 20% 0%, rgba(176, 141, 87, .18), transparent 60%),
        linear-gradient(120deg, #2f2b26 0%, #46402f 100%);
    color: #f3ece1;
    padding: 68px 0;
    border-top: 1px solid rgba(176, 141, 87, .35);
}
.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; }
.hy-cta__sub { color: #cbc2b3; }
.hy-cta .hy-btn--light { background: var(--hy-gold); border-color: var(--hy-gold); color: #fff; }
.hy-cta .hy-btn--light:hover { background: #c39c60; border-color: #c39c60; }

/* ---------- 页脚 ---------- */
.hy-footer { background: #26231f; color: #9e968a; font-size: 14px; padding: 56px 0 0; }
.hy-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #35312b; }
.hy-footer__title { color: #e8e0d3; font-size: 16px; margin-bottom: 18px; letter-spacing: 1px; }
.hy-footer__brand { font-size: 22px; color: #f0e8db; letter-spacing: 4px; margin-bottom: 14px; }
.hy-footer a:hover { color: var(--hy-gold); }
.hy-footer li { padding: 5px 0; }
.hy-footer__phone { font-size: 24px; color: var(--hy-gold); letter-spacing: 1px; margin: 6px 0 10px; }
.hy-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 13px; color: #7d766c; }

/* ---------- 空态 / 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: var(--hy-gold-soft); letter-spacing: 6px; line-height: 1; }
.hy-404__title { font-size: 24px; margin: 18px 0 12px; }

/* ---------- 灯箱 ---------- */
.hy-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 18, 16, .92);
}
.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);
    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: #cfc7bb; 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-white);
    border: 1px solid var(--hy-line);
    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-gold); color: var(--hy-gold-deep); }

/* ---------- 小屏收敛（官网以 PC 为主，此处仅保证可读） ---------- */
@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-line);
        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: var(--hy-white);
        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-gold-deep); font-weight: 500; }
    .hy-drawer__nav a.hy-drawer__cta {
        margin-top: 12px;
        text-align: center;
        border: 1px solid var(--hy-gold);
        border-radius: var(--hy-radius);
        color: var(--hy-white);
        background: var(--hy-gold);
    }

    .hy-hero__title { font-size: 32px; }
    .hy-works, .hy-scenes, .hy-arts, .hy-stores, .hy-points { grid-template-columns: repeat(2, 1fr); }
    .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-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; }
}
