* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --black: #111111;
    --white: #ffffff;
    --yellow: #ffd23f;
    --gray: #f5f5f3;
    --text: #222;
    --shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
    --transition: all 0.4s ease;
}
body { font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; background: var(--white); color: var(--text); line-height: 1.8; overflow-x: hidden; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: var(--black); border-bottom: 4px solid var(--yellow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 22px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: 2px; }
.logo::after { content: '●'; color: var(--yellow); font-size: 14px; vertical-align: middle; }
.nav-menu { display: flex; list-style: none; gap: 8px; }
.nav-menu a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; padding: 8px 18px; letter-spacing: 1px; transition: var(--transition); position: relative; }
.nav-menu a::before { content: '◢'; opacity: 0; margin-right: 4px; color: var(--yellow); transition: var(--transition); }
.nav-menu a:hover::before, .nav-menu a.active::before { opacity: 1; }
.nav-menu a:hover, .nav-menu a.active { color: var(--yellow); background: rgba(255,210,63,0.08); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--yellow); transition: var(--transition); }

.hero { padding-top: 72px; min-height: 100vh; display: flex; align-items: center; position: relative; background: var(--white); overflow: hidden; }
.geo-shape { position: absolute; z-index: 0; }
.geo-arc { width: 260px; height: 260px; background: var(--black); border-radius: 50% 0 0 50%; top: 12%; right: 0; }
.geo-tri { width: 0; height: 0; border-left: 160px solid transparent; border-right: 0 solid transparent; border-bottom: 220px solid var(--black); opacity: 0.92; bottom: 8%; left: 6%; }
.geo-circle { width: 140px; height: 140px; border: 14px solid var(--yellow); border-radius: 50%; top: 20%; left: 14%; }
.geo-quarter { width: 200px; height: 200px; background: var(--gray); border-radius: 0 0 100% 0; bottom: 0; right: 22%; border: 2px solid #ddd; }
.hero-inner { position: relative; z-index: 2; padding: 80px 0; }
.hero-tag { display: inline-block; background: var(--yellow); color: var(--black); padding: 8px 26px; font-size: 13px; font-weight: 800; letter-spacing: 3px; margin-bottom: 30px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); }
.hero h1 { font-size: clamp(52px, 8vw, 110px); font-weight: 900; color: var(--black); line-height: 1; letter-spacing: -2px; }
.hero h1 .geo-line { color: var(--white); -webkit-text-stroke: 3px var(--black); letter-spacing: 6px; }
.hero p { font-size: 18px; color: #666; margin: 24px 0 36px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 15px 34px; text-decoration: none; font-weight: 800; font-size: 14px; letter-spacing: 2px; transition: var(--transition); border: none; cursor: pointer; }
.btn-yellow { background: var(--yellow); color: var(--black); clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%); }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,210,63,0.5); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #2a2a2a; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 44px; margin-top: 56px; }
.hs-item b { font-size: 34px; color: var(--black); display: block; }
.hs-item span { font-size: 13px; color: #999; letter-spacing: 2px; }

.manifesto { background: var(--gray); padding: 30px 0 80px; }
.mani-head { display: flex; align-items: center; gap: 18px; padding: 60px 0 20px; }
.geo-icon { font-size: 30px; color: var(--yellow); display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--black); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.mani-head h2, .section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--black); }
.mani-head h2 em, .section-head h2 em { font-style: normal; font-size: 0.5em; color: var(--yellow); -webkit-text-stroke: 1px var(--black); margin-left: 10px; }
.mani-text { font-size: 20px; line-height: 2; color: #444; max-width: 900px; border-left: 6px solid var(--yellow); padding-left: 28px; margin: 24px 0 48px; }
.mani-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--black); }
.mg-item { padding: 32px; background: var(--white); border-right: 2px solid var(--black); }
.mg-item:last-child { border-right: none; background: var(--black); color: var(--white); }
.mg-num { font-size: 40px; font-weight: 900; color: var(--yellow); display: block; margin-bottom: 10px; }
.mg-item h3 { font-size: 20px; margin-bottom: 8px; }
.mg-item p { font-size: 14px; color: #888; }
.mg-item:last-child p { color: rgba(255,255,255,0.7); }

.services { padding: 0 0 80px; }
.section-head { display: flex; align-items: center; gap: 18px; padding: 64px 0 36px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sv-card { display: flex; border: 2px solid var(--black); background: var(--white); transition: var(--transition); }
.sv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sv-checker { width: 130px; flex-shrink: 0; background-image: linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%), linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%); background-size: 20px 20px; background-position: 0 0, 10px 10px; }
.sv-card:nth-child(even) .sv-checker { background-image: linear-gradient(45deg, var(--yellow) 25%, transparent 25%, transparent 75%, var(--yellow) 75%), linear-gradient(45deg, var(--yellow) 25%, transparent 25%, transparent 75%, var(--yellow) 75%); }
.sv-body { padding: 28px; }
.sv-tag { font-size: 12px; font-weight: 800; color: var(--yellow); background: var(--black); padding: 3px 12px; letter-spacing: 2px; }
.sv-body h3 { font-size: 20px; margin: 12px 0 8px; }
.sv-body p { font-size: 14px; color: #777; }

.cases { background: var(--black); padding: 20px 0 80px; }
.cases .section-head h2 { color: var(--white); }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.case-card { position: relative; overflow: hidden; border: 3px solid var(--white); }
.case-card:hover { border-color: var(--yellow); }
.case-main { grid-column: span 2; grid-row: span 2; }
.case-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.case-card:hover .case-img { transform: scale(1.08); }
.case-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; background: var(--black); border-top: 3px solid var(--yellow); }
.case-label h3 { color: var(--yellow); font-size: 16px; }
.case-label p { color: rgba(255,255,255,0.7); font-size: 13px; }

.news-list { padding-bottom: 70px; }
.news-item { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 2px solid #e5e5e5; transition: var(--transition); }
.news-item:hover { padding-left: 14px; }
.news-date { font-size: 13px; font-weight: 800; background: var(--yellow); color: var(--black); padding: 4px 14px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); }
.news-item h3 { flex: 1; font-size: 18px; }
.news-more { color: var(--yellow); text-decoration: none; font-size: 14px; font-weight: 700; }
.news-more:hover { color: var(--black); }

.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 56px 0 0; border-top: 6px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 36px; }
.footer-brand h3 { color: var(--yellow); font-size: 20px; margin-bottom: 8px; }
.footer-links h4, .footer-contact h4 { color: var(--yellow); font-size: 15px; margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 8px; }
.footer-contact p { font-size: 14px; padding: 3px 0; opacity: 0.6; }
.footer-bottom { border-top: 1px solid rgba(255,210,63,0.15); padding: 18px 0; text-align: center; font-size: 13px; opacity: 0.4; }

.page-hero { padding-top: 72px; min-height: 52vh; display: flex; align-items: center; position: relative; background: var(--black); overflow: hidden; }
.page-hero .geo-shape { opacity: 0.35; }
.php-content { position: relative; z-index: 2; padding: 60px 0; }
.php-content h1 { font-size: clamp(40px, 6vw, 64px); color: var(--white); font-weight: 900; line-height: 1.1; }
.php-content h1 span { color: var(--yellow); }
.php-content p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 12px; }

.about-mani { padding: 70px 0; }
.about-mani p { font-size: 16px; color: #666; max-width: 860px; line-height: 2; margin-bottom: 18px; }
.about-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 70px; }
.fact-card { border: 2px solid var(--black); padding: 30px; text-align: center; background: var(--white); }
.fact-card:nth-child(2) { background: var(--yellow); border-color: var(--black); }
.fact-card b { font-size: 36px; display: block; }
.fact-card span { font-size: 14px; color: #777; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 70px; }
.team-card { border: 2px solid var(--black); background: var(--white); text-align: center; overflow: hidden; }
.team-avatar { height: 220px; background-size: cover; background-position: center; position: relative; }
.team-avatar::after { content: '◢'; position: absolute; bottom: -2px; right: 10px; color: var(--yellow); font-size: 40px; text-shadow: 2px 2px 0 var(--black); }
.team-card h3 { font-size: 16px; margin-top: 16px; }
.team-card p { font-size: 13px; color: #999; padding-bottom: 18px; }

.prod-list { padding: 70px 0; }
.prod-item { display: grid; grid-template-columns: 220px 1fr; border: 2px solid var(--black); margin-bottom: 24px; background: var(--white); }
.prod-img { min-height: 190px; background-size: cover; background-position: center; border-right: 2px solid var(--black); }
.prod-item:nth-child(even) .prod-img { order: 2; border-right: none; border-left: 2px solid var(--black); background-image: linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%), linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%); background-size: 20px 20px; }
.prod-body { padding: 30px; }
.prod-body h3 { font-size: 22px; margin-bottom: 10px; }
.prod-body p { font-size: 14px; color: #777; }
.prod-price { display: inline-block; background: var(--yellow); color: var(--black); font-weight: 900; padding: 4px 16px; margin-top: 14px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); }

.news-full { padding: 70px 0; }
.nf-item { display: flex; gap: 24px; border: 2px solid var(--black); padding: 18px; margin-bottom: 18px; transition: var(--transition); }
.nf-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.nf-thumb { width: 180px; height: 130px; background-size: cover; background-position: center; flex-shrink: 0; border: 2px solid var(--black); }
.nf-body h3 { font-size: 19px; margin-bottom: 8px; }
.nf-body p { font-size: 14px; color: #888; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; padding: 70px 0; }
.ci-card { border: 2px solid var(--black); padding: 22px 26px; margin-bottom: 14px; background: var(--white); }
.ci-card:nth-child(2) { background: var(--yellow); }
.ci-card h4 { font-size: 16px; margin-bottom: 6px; }
.ci-card p { font-size: 14px; color: #666; }
.cpz-form { border: 3px solid var(--black); padding: 34px; background: var(--gray); }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid #ccc; background: var(--white); font-size: 14px; transition: var(--transition); outline: none; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--black); box-shadow: 6px 6px 0 rgba(17,17,17,0.15); }

/* ================= 主题新增板块 ================= */

/* 设计流程 */
.process { padding: 20px 0 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 10px; }
.process-step { border: 2px solid var(--black); background: var(--white); padding: 26px; position: relative; transition: var(--transition); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-step .p-num { font-size: 34px; font-weight: 900; color: var(--yellow); -webkit-text-stroke: 1px var(--black); display: block; margin-bottom: 8px; }
.process-step h3 { font-size: 18px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: #888; }

/* 关于 · 发展历程 */
.about-road { background: var(--gray); padding: 20px 0 70px; }
.road-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 10px; }
.road { border: 2px solid var(--black); background: var(--white); padding: 26px; position: relative; transition: var(--transition); }
.road:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.road b { display: inline-block; background: var(--yellow); color: var(--black); font-size: 13px; font-weight: 800; padding: 3px 14px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); margin-bottom: 10px; }
.road h4 { font-size: 18px; margin-bottom: 6px; }
.road p { font-size: 13px; color: #888; }

/* 关于 · 团队与荣誉 */
.about-team { padding: 70px 0 0; }
.about-culture { padding: 10px 0 70px; }
.about-honors { padding: 10px 0 70px; }
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 10px; }
.honor-card { border: 2px solid var(--black); background: var(--white); padding: 0 0 22px; text-align: center; overflow: hidden; transition: var(--transition); }
.honor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.honor-card img { width: 100%; height: 150px; object-fit: cover; border-bottom: 2px solid var(--black); margin-bottom: 12px; }
.honor-card .h-date { display: inline-block; background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 800; padding: 2px 12px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); margin-bottom: 8px; }
.honor-card h3 { font-size: 15px; padding: 0 16px; margin-bottom: 6px; }
.honor-card p { font-size: 13px; color: #888; padding: 0 16px; }

/* 首页/列表页 section 间距 */
.news-sec { padding: 10px 0 0; }
.contact-cta { padding: 20px 0 40px; }
.contact-sec { padding: 10px 0 40px; }
.about-facts-sec { padding: 10px 0 0; }

/* 图片填充 */
.sv-checker img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 链接配色 */
.news-item h3 a { color: inherit; text-decoration: none; }
.news-item h3 a:hover { color: var(--black); }
.nf-body h3 a { color: inherit; text-decoration: none; }
.nf-body h3 a:hover { color: var(--black); }
.prod-body h3 a { color: inherit; text-decoration: none; }
.prod-body h3 a:hover { color: #000; text-decoration: underline; }

/* 内页面包屑 */
.page-hero .crumbs { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.5); }
.page-hero .crumbs a { color: var(--yellow); text-decoration: underline; }

/* 表单扩展 */
.cpz-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.cpz-form label em { color: #e11d48; font-style: normal; }
.cpz-form input, .cpz-form textarea, .cpz-form select { width: 100%; padding: 13px 18px; border: 2px solid #ccc; background: var(--white); font-size: 14px; transition: var(--transition); outline: none; font-family: inherit; }
.cpz-form input:focus, .cpz-form textarea:focus, .cpz-form select:focus { border-color: var(--black); box-shadow: 6px 6px 0 rgba(17,17,17,0.15); }
.cpz-form input.cv-invalid, .cpz-form textarea.cv-invalid, .cpz-form select.cv-invalid { border-color: #e11d48 !important; box-shadow: none; }
.form-sub { font-size: 14px; color: #777; margin-bottom: 16px; }
.form-success { display: none; background: #e8f7ee; border: 1px solid #a5e0bd; color: #1e7a44; padding: 12px 16px; margin-bottom: 16px; font-size: 14px; }
.form-success.show { display: block; }
.form-alert-err { background: #fdecea; border: 1px solid #f3c6c0; color: #b23b35; padding: 12px 16px; margin-bottom: 16px; font-size: 14px; }
.form-alert-err li { color: #b23b35; }

/* 分类筛选 */
.cat-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-tab { padding: 10px 24px; border: 2px solid var(--black); background: #fff; color: var(--black); cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: 1px; transition: var(--transition); font-family: inherit; }
.cat-tab.active, .cat-tab:hover { background: var(--black); color: var(--yellow); }

/* 返回顶部 */
.back-top { position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; background: var(--yellow); color: var(--black); border: 2px solid var(--black); font-size: 1.2rem; font-weight: 800; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(16px); transition: .35s; z-index: 999; box-shadow: 0 8px 20px rgba(17,17,17,0.2); }
.back-top.show { opacity: 1; visibility: visible; transform: none; }

/* ================= CMS 适配 ================= */
.cms-section { padding: 70px 24px; }
.cms-detail { max-width: 900px; margin: 0 auto; }
.cms-detail > img { display: block; max-width: 100%; margin: 0 auto 20px; border: 2px solid var(--black); }
.cms-detail h1 { font-size: 2rem; margin: 16px 0; color: var(--black); }
.cms-detail .lead { color: #666; margin-bottom: 20px; font-size: 1.05rem; }
.cms-detail .news-date-label { display: inline-block; font-size: 13px; font-weight: 800; background: var(--yellow); color: var(--black); padding: 4px 14px; clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%); margin-bottom: 14px; }
.cms-content h2 { font-size: 1.5rem; margin: 24px 0 12px; color: var(--black); }
.cms-content h3 { font-size: 1.25rem; margin: 20px 0 10px; color: var(--black); }
.cms-content p, .cms-content ul, .cms-content li { color: #555; margin-bottom: 15px; line-height: 1.9; }
.cms-content ul { padding-left: 18px; list-style: disc; }
.cms-content img { max-width: 100%; }
.cms-back { display: inline-block; color: var(--yellow); font-weight: 700; font-size: 14px; margin-bottom: 20px; text-decoration: none; background: var(--black); padding: 6px 18px; clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%); transition: var(--transition); }
.cms-back:hover { opacity: .85; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { color: #555; padding: 10px 0; border-bottom: 2px dashed #e5e5e5; font-size: 14px; }
.spec-list li b { color: var(--black); }
.cms-pager { padding: 30px 0; text-align: center; }
.cms-pager .pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.cms-pager .page-link { padding: 10px 16px; border: 2px solid var(--black); background: #fff; color: var(--black); font-size: 14px; font-weight: 600; transition: .3s; display: inline-block; }
.cms-pager .page-link:hover { border-color: var(--yellow); color: var(--black); }
.cms-pager .page-item.active .page-link { background: var(--yellow); border-color: var(--black); color: var(--black); }
.cms-pager .page-item.disabled .page-link { opacity: .5; pointer-events: none; }
.cms-card { display: block; border: 2px solid var(--black); background: var(--white); padding: 22px 26px; margin-bottom: 16px; text-decoration: none; color: inherit; transition: var(--transition); }
.cms-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cms-card h3 { font-size: 18px; color: var(--black); margin-bottom: 6px; }
.cms-card p { font-size: 14px; color: #777; }

/* 动画 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
    .hero h1 { font-size: clamp(44px, 7vw, 80px); }
    .case-grid { grid-template-columns: 1fr 1fr; }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .road-grid { grid-template-columns: 1fr 1fr; }
    .honor-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 72px; left: -100%; width: 78%; height: calc(100vh - 72px); background: var(--black); flex-direction: column; padding: 36px; gap: 16px; transition: 0.3s; border-right: 4px solid var(--yellow); }
    .nav-menu.active { left: 0; }
    .nav-menu a { color: var(--white); }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .mani-grid { grid-template-columns: 1fr; }
    .mg-item { border-right: none; border-bottom: 2px solid var(--black); }
    .service-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .case-main { grid-column: span 1; grid-row: span 1; }
    .hero-stats { flex-direction: column; gap: 18px; }
    .prod-item { grid-template-columns: 1fr; }
    .prod-item .prod-img, .prod-item:nth-child(even) .prod-img { order: 0; border: none; border-bottom: 2px solid var(--black); height: 180px; }
    .nf-item { flex-direction: column; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-grid, .road-grid, .honor-grid { grid-template-columns: 1fr; }
}

/* ===== CMS global link-color reset (fixes default blue/underline) ===== */
a:has(h1), a:has(h2), a:has(h3), a:has(h4), a:has(img),
a.logo, a.logo *, .logo, .logo *,
a.news-thumb, a.news-thumb *, a.prod-thumb, a.prod-thumb *,
a.img-wrap, a.img-wrap *, a.thumb, a.thumb *, a.cover, a.cover *,
a[style*='background-image'], a[style*='background'],
a.card, a.card *, a.work-card, a.work-card *, a.product-card, a.product-card *,
a.news-card, a.news-card *, a.news-item, a.news-item *, a.case-card, a.case-card *,
a.service-card, a.service-card *, a.svc-card, a.svc-card *, a.item-card, a.item-card * {
  color: inherit !important;
  text-decoration: none !important;
}
a:has(h1):hover, a:has(h2):hover, a:has(h3):hover, a:has(h4):hover,
a.logo:hover, .logo:hover, a.card:hover, a.card *:hover,
a.news-thumb:hover, a.prod-thumb:hover, a.work-card:hover, a.product-card:hover,
a.news-card:hover, a.news-item:hover, a.case-card:hover, a.service-card:hover { color: inherit !important; }
a.prod-img-link, a.prod-img-link *,
a.img-link, a.img-link *, a.thumb-link, a.thumb-link *,
a.cover-link, a.cover-link *, a.media-link, a.media-link *,
a[class*='-thumb'], a[class*='-img'], a[class*='-cover'],
a[class*='thumb-'], a[class*='img-'],
a.img-side, a.img-side *, a.pic, a.pic *, a.pic-link, a.pic-link * {
  color: inherit !important;
  text-decoration: none !important;
}
/* ===== CMS heading-link reset (anchor inside heading) ===== */
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit !important;
  text-decoration: none !important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover { color: inherit !important; }
