/*
Theme Name: Colored Deer
Theme URI: https://googledulizhan.com
Author: Wuyou Studio
Author URI: https://github.com/wuyoustudio
Description: 五色鹿 COLORED DEER 官网 WordPress 主题 —— 高端外贸独立站、外贸 GEO、Google 广告陪跑。
Version: 1.3.0
License: GNU General Public License v2 or later
Text Domain: colored-deer
*/

:root {
	--ink: #102a22;
	--green: #1c5d45;
	--green-700: #15493a;
	--green-600: #1f6b4f;
	--amber: #e0a02f;
	--amber-600: #cf8c1f;
	--cream: #f7f4ee;
	--paper: #ffffff;
	--muted: #6b7c74;
	--line: #e7e2d8;
	--max: 1200px;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(16, 42, 34, 0.08);
	font-synthesis: none;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5em; font-weight: 700; }

.container, .l-wrap {
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--amber-600);
	font-weight: 700;
	margin-bottom: 14px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { box-shadow: 0 12px 24px rgba(16, 42, 34, 0.25); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { box-shadow: 0 12px 24px rgba(224, 160, 47, 0.35); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.head-top {
	background: var(--ink);
	color: #cfe0d8;
	font-size: 13px;
}
.head-top .l-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
}
.head-top a:hover { color: var(--amber); }
.head-contact { display: flex; gap: 22px; }
.head-contact span { display: inline-flex; align-items: center; gap: 6px; }

.head-main .l-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
}
.brand { display: flex; align-items: center; width: 205px; height: 68px; overflow: visible; }
.brand-logo-wrap { position: relative; display: block; width: 205px; height: 68px; }
.brand-logo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
	transition: opacity .3s ease, transform .3s ease;
}
.brand-logo--white { opacity: 0; }
.brand-logo--orange { opacity: 1; }
.brand:hover .brand-logo--orange,
.brand:focus-visible .brand-logo--orange { opacity: 1; transform: translateY(-2px); }

.main-nav ul {
	list-style: none; display: flex; gap: 28px; margin: 0; padding: 0;
}
.main-nav > .nav-ul { align-items: center; }
.main-nav a {
	font-weight: 600; font-size: 15px; color: var(--ink); position: relative; padding: 6px 0;
}
.main-nav > .nav-ul > li > a { display: block; line-height: 21px; }
.main-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
	background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav li.current-menu-item > a::after { transform: scaleX(1); }
.main-nav .menu-item-has-children { position: relative; display: block; }
.main-nav .menu-item-has-children > a { padding-right: 18px; }
.nav-submenu-toggle { border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 15px; padding: 4px; }
.main-nav .menu-item-has-children > .nav-submenu-toggle { position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
.main-nav .nav-submenu { display: none; position: absolute; top: calc(100% + 12px); left: -18px; z-index: 30; min-width: 152px; padding: 10px 16px !important; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.main-nav .nav-submenu::before { content: ""; position: absolute; top: -13px; left: 0; right: 0; height: 13px; }
.main-nav .menu-item-has-children:hover .nav-submenu, .main-nav .menu-item-has-children:focus-within .nav-submenu, .menu-item-has-children.is-open .nav-submenu { display: block; }
.nav-submenu li { list-style: none; }.nav-submenu a { display: block; padding: 7px 0; white-space: nowrap; }

.m-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.m-menu span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }
.m-nav-panel { display: none; }

/* ---------- Hero ---------- */
.hero {
	position: relative; isolation: isolate; overflow: hidden; min-height: 548px;
	display: flex; align-items: center; color: #fff; padding: 92px 0 110px;
}
.hero-slides, .hero-slides::after { position: absolute; inset: 0; }
.hero-slides { z-index: -2; background: #0e2a21; }
.hero-slides::after {
	content: ""; z-index: 1; pointer-events: none;
	background: linear-gradient(90deg, rgba(7, 30, 23, 0.94) 0%, rgba(9, 37, 28, 0.79) 42%, rgba(8, 30, 23, 0.18) 82%),
		linear-gradient(0deg, rgba(7, 30, 23, 0.52), transparent 48%);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active img { animation: hero-kenburns 8s ease-out both; }
.hero .l-wrap { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 640px; animation: hero-copy-in 0.7s ease-out both; }
.hero h1 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.12; margin-bottom: 18px; }
.hero h1 .hl { color: var(--amber); }
.hero-lead { font-size: 18px; color: #d7e6df; max-width: 30em; }
.hero-services { margin: 14px 0 26px; color: #b9cfc5; font-size: 15px; }
.hero-services i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); margin: 0 10px; vertical-align: middle; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; z-index: 2; bottom: 32px; left: max(24px, calc((100% - var(--max)) / 2 + 24px)); display: flex; gap: 9px; }
.hero-dots button { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 99px; background: rgba(255, 255, 255, 0.45); cursor: pointer; transition: width 0.25s ease, background 0.25s ease; }
.hero-dots button.is-active { width: 52px; background: var(--amber); }
.hero-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
@keyframes hero-kenburns { from { transform: scale(1); } to { transform: scale(1.055); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-visual { position: relative; min-height: 320px; }
.globe {
	position: absolute; inset: 0; margin: auto; width: 300px; height: 300px; border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(224, 160, 47, 0.35), transparent 55%),
		radial-gradient(circle at 70% 70%, rgba(31, 107, 79, 0.5), transparent 60%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}
.globe i { position: absolute; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 50%; }
.globe i:nth-child(1) { inset: 30px; }
.globe i:nth-child(2) { inset: 60px; transform: rotate(20deg); }
.globe i:nth-child(3) { inset: 90px; transform: rotate(-15deg); }
.globe i:nth-child(4) { inset: 120px; }
.browser-card {
	position: absolute; top: 30px; right: 0; width: 230px; background: #fff; color: var(--ink);
	border-radius: 12px; padding: 12px; box-shadow: var(--shadow); font-size: 12px;
}
.browser-bar { display: flex; gap: 5px; margin-bottom: 8px; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #d8d8d8; }
.browser-card span { color: var(--muted); letter-spacing: 0.12em; font-size: 10px; }
.browser-card b { display: block; font-size: 13px; margin-top: 4px; }
.search-chip {
	position: absolute; bottom: 40px; left: 0; background: #fff; color: var(--ink);
	padding: 8px 14px; border-radius: 999px; font-size: 12px; box-shadow: var(--shadow);
}
.metric-card {
	position: absolute; bottom: 10px; right: 20px; background: var(--amber); color: var(--ink);
	padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow);
}
.metric-card span { display: block; font-size: 10px; letter-spacing: 0.1em; }
.metric-card b { font-size: 22px; }

/* ---------- Stats ---------- */
.stats { padding: 64px 0; background: var(--cream); }
.stats .l-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.stats h2 { font-size: clamp(24px, 3vw, 34px); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stats-grid article {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
	box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.stats-grid article:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(16, 42, 34, 0.14); }
.stats-grid b { font-size: 34px; color: var(--green); }
.stats-grid em { font-style: normal; font-size: 18px; color: var(--amber-600); }
.stats-grid span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Section shell ---------- */
.section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(24px, 3vw, 36px); }
.section-head p { color: var(--muted); }

/* ---------- News listing ---------- */
.page-banner {
	background: linear-gradient(180deg, #0e2a21, #143629);
	color: #fff; padding: 64px 0 56px;
}
.page-banner .crumbs { font-size: 13px; color: #bcd2c9; }
.page-banner .crumbs a:hover { color: var(--amber); }
.page-banner h1 { font-size: clamp(28px, 3.6vw, 44px); margin: 10px 0 6px; }
.page-banner p { color: #cfe0d8; margin: 0; }
.info-banner {
	position: relative; overflow: hidden;
	background: #18312b url('assets/images/info-banner-harbor.jpg') center center / cover no-repeat;
}
.info-banner::before { content: ""; position: absolute; inset: 0; background: rgba(9, 34, 26, 0.55); }
.info-banner .l-wrap { position: relative; z-index: 1; }
.info-banner .crumbs, .info-banner h1, .info-banner p { animation: info-banner-in 0.7s ease-out both; }
.info-banner h1 { animation-delay: 0.08s; }
.info-banner p { animation-delay: 0.16s; }
@keyframes info-banner-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 56px 0; align-items: start; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.news-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 42, 34, 0.14); }
.news-thumb {
	aspect-ratio: 16 / 10; display: grid; place-items: center; color: #fff; font-size: 40px; font-weight: 800;
	background: linear-gradient(135deg, var(--green), var(--green-600));
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb img.cd-news-default-fallback { object-fit: contain; background: #fff; padding: 16px; box-sizing: border-box; }
.news-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--muted); }
.news-cat { color: var(--amber-600); font-weight: 700; letter-spacing: 0.04em; }
.news-card h3 { font-size: 19px; margin: 0; }
.news-card h2 { font-size: 19px; margin: 0; }
.news-card h2 a:hover { color: var(--green); }
.news-card p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.news-more { font-size: 13px; font-weight: 700; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }
.news-more:hover { color: var(--amber-600); }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 96px; }
.widget { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.widget-title { font-size: 16px; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--amber); display: inline-block; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 9px 0; border-bottom: 1px dashed var(--line); }
.widget li:last-child { border-bottom: none; }
.widget li a { font-size: 14px; color: var(--ink); }
.widget li a:hover { color: var(--green); }
.recent-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.recent-item:last-child { border-bottom: none; }
.recent-thumb { width: 64px; height: 64px; border-radius: 8px; flex: none; overflow: hidden; background: linear-gradient(135deg, var(--green), var(--green-600)); }
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-thumb img.cd-news-default-fallback { object-fit: contain; background: #fff; padding: 6px; box-sizing: border-box; }
.recent-item .t { font-size: 14px; font-weight: 600; line-height: 1.4; }
.recent-item .d { font-size: 12px; color: var(--muted); }
.widget-cta { background: var(--green); color: #fff; border: none; }
.widget-cta .widget-title { color: #fff; border-color: var(--amber); }
.widget-cta p { font-size: 14px; color: #d7e6df; }
.widget-cta .btn { margin-top: 8px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; align-items: center; margin-top: 34px; }
.pagination a, .pagination span {
	min-width: 38px; height: 38px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--line); border-radius: 10px; font-size: 14px; color: var(--ink); background: #fff;
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- Information hub ---------- */
.info-page { padding: 56px 24px 68px; }
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-pagination { justify-content: center; }
.info-pagination .page-numbers { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.info-pagination .page-numbers a,
.info-pagination .page-numbers span {
	min-width: 38px; height: 38px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--line); border-radius: 10px; font-size: 14px; color: var(--ink); background: #fff;
}
.info-pagination .page-numbers .current { background: var(--green); color: #fff; border-color: var(--green); }
.info-pagination .page-numbers a:hover { border-color: var(--amber); color: var(--amber-600); }
.info-empty { max-width: 620px; margin: 64px auto; padding: 46px 32px; text-align: center; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.info-empty h2 { font-size: 26px; }
.info-empty p { color: var(--muted); margin: 0 0 24px; }
html.info-motion-ready .info-page .news-card,
html.info-motion-ready .info-page .info-pagination,
html.info-motion-ready .info-page .info-empty { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.info-motion-ready .info-page .news-card.is-visible,
html.info-motion-ready .info-page .info-pagination.is-visible,
html.info-motion-ready .info-page .info-empty.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Single news ---------- */
.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 48px 0 64px; align-items: start; }
.single-main { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow); }
.single-main h1 { font-size: clamp(24px, 3vw, 34px); }
.single-meta { display: flex; gap: 18px; align-items: center; color: var(--muted); font-size: 13px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.single-meta a { color: var(--amber-600); font-weight: 600; }
.single-featured { margin: 0 0 26px; border-radius: 10px; overflow: hidden; background: var(--cream); text-align: center; }
.single-featured img { display: block; width: 100%; max-height: 520px; object-fit: cover; }
.single-featured img.cd-content-image { object-fit: contain; max-height: 520px; }
.single-featured img.cd-news-default-fallback { width: 100%; height: auto; margin: 0 auto; object-fit: contain; padding: 24px; box-sizing: border-box; background: #fff; }
.single-content { font-size: 16px; color: #25332d; }
.single-content p { margin: 0 0 1.1em; }
.single-content h2, .single-content h3 { margin-top: 1.4em; }
.single-content img { border-radius: 10px; margin: 18px 0; }
.share { display: flex; gap: 10px; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.share span { font-size: 13px; color: var(--muted); }
.share a { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--green); font-size: 13px; }
.share a:hover { background: var(--green); color: #fff; }
.pagelink { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.pagelink a { border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; display: block; }
.pagelink a:hover { border-color: var(--green); }
.pagelink .btn-lab { font-size: 12px; color: var(--muted); }
.pagelink .ttl { font-weight: 600; font-size: 14px; }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--green), var(--green-700)); color: #fff; padding: 60px 0; }
.cta-band .l-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin: 0; }
.cta-band p { color: #d7e6df; margin: 6px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfe0d8; padding: 56px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.35fr .75fr 1.35fr .7fr; gap: 42px; }
.foot-title { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 700; }
.foot-col p { font-size: 14px; margin: 0 0 8px; color: #b9cfc5; }
.foot-col a:hover { color: var(--amber); }
.foot-contact { margin-top: 20px; }
.foot-contact p { display: grid; grid-template-columns: 88px 1fr; gap: 10px; }
.foot-contact p span { color: #759187; font-size: 12px; }
.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list li { padding: 6px 0; font-size: 14px; }
.foot-list li a:hover { color: var(--amber); }
.foot-office-list li { padding: 0 0 12px; }
.foot-office-list strong { display: block; color: #d7e5df; font-size: 13px; }
.foot-office-list span { display: block; margin-top: 2px; color: #8fa89f; font-size: 11px; line-height: 1.55; }
.foot-col--qr img { width: 92px; height: 92px; padding: 7px; object-fit: contain; background: #fff; border-radius: 8px; }
.foot-col--qr p { margin-top: 10px; font-size: 12px; line-height: 1.55; }
.foot-contact-link { display: inline-flex; gap: 7px; margin-top: 7px; color: var(--amber); font-size: 12px; font-weight: 700; }
.foot-copy { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 40px; padding: 20px 0; font-size: 13px; color: #8faaa0; text-align: center; }

/* ---------- Global contact dock ---------- */
.cd-contact-dock {
	position: fixed;
	z-index: 60;
	right: 18px;
	top: 50%;
	display: flex;
	flex-direction: column;
	gap: 1px;
	transform: translateY(-50%);
	filter: drop-shadow(0 12px 26px rgba(16, 42, 34, .18));
}
.cd-contact-dock__item {
	width: 58px;
	min-height: 58px;
	padding: 7px 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: #eaf2ef;
	background: rgba(16, 42, 34, .96);
	border: 0;
	font: inherit;
	cursor: pointer;
	transition: color .18s ease, background .18s ease;
}
.cd-contact-dock__item:first-child { border-radius: 10px 10px 0 0; }
.cd-contact-dock__message { border-radius: 0 0 10px 10px; }
.cd-contact-dock.show-return-top .cd-contact-dock__message { border-radius: 0; }
.cd-contact-dock__item svg { width: 21px; height: 21px; }
.cd-contact-dock__item span { font-size: 10px; line-height: 1.2; }
.cd-contact-dock__item:hover,
.cd-contact-dock__item:focus-visible,
.cd-contact-dock__item[aria-expanded="true"] { color: var(--ink); background: var(--amber); }
.cd-contact-dock__item:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.cd-contact-dock__top {
	min-height: 0;
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px) scale(.94);
	overflow: hidden;
	border-radius: 0 0 10px 10px;
	transition: max-height .24s ease, min-height .24s ease, padding .24s ease, opacity .18s ease, visibility .18s ease, transform .24s ease, color .18s ease, background .18s ease;
}
.cd-contact-dock.show-return-top .cd-contact-dock__top {
	min-height: 58px;
	max-height: 58px;
	padding-top: 7px;
	padding-bottom: 7px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}
.cd-contact-dock__qr {
	position: absolute;
	right: 70px;
	top: 45px;
	width: 190px;
	padding: 18px;
	color: var(--ink);
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(16, 42, 34, .2);
}
.cd-contact-dock__qr::after { content: ""; position: absolute; right: -7px; top: 44px; width: 12px; height: 12px; background: #fff; border-top: 1px solid var(--line); border-right: 1px solid var(--line); transform: rotate(45deg); }
.cd-contact-dock__qr img { width: 132px; height: 132px; margin: 0 auto 10px; padding: 8px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.cd-contact-dock__qr strong,
.cd-contact-dock__qr span,
.cd-contact-dock__qr small { display: block; }
.cd-contact-dock__qr strong { font-size: 14px; }
.cd-contact-dock__qr span { color: var(--green); font-size: 14px; font-weight: 700; }
.cd-contact-dock__qr small { color: var(--muted); font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.hero .l-wrap, .stats .l-wrap, .news-layout, .single-layout { grid-template-columns: 1fr; }
	.news-grid { grid-template-columns: repeat(2, 1fr); }
	.info-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-visual { min-height: 260px; }
	.main-nav { display: none; }
	.m-menu { display: flex; }
	.m-nav-panel.is-open { display: block; }
	.m-nav-panel { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 14px 28px rgba(16, 42, 34, 0.1); }
	.m-nav-panel .nav-ul { list-style: none; margin: 0; padding: 10px 24px 18px; }
	.m-nav-panel .menu-item-has-children { display: grid; grid-template-columns: 1fr auto; align-items: center; }
	.m-nav-panel .nav-submenu { position: static; grid-column: 1 / -1; box-shadow: none; border: 0; padding: 0 0 8px 16px !important; }
	.m-nav-panel .menu-item-has-children.is-open .nav-submenu { display: block; }
	.m-nav-panel li { border-bottom: 1px solid var(--line); }
	.m-nav-panel li:last-child { border-bottom: 0; }
	.m-nav-panel a { display: block; padding: 12px 0; font-size: 16px; font-weight: 600; }
	.m-nav-panel .current-menu-item a { color: var(--amber-600); }
	.sidebar { position: static; }
	.foot-grid { grid-template-columns: 1fr 1fr; }
	.hero-dots { left: 24px; }
}
@media (max-width: 700px) {
	body { padding-bottom: 64px; }
	.cd-contact-dock {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
		transform: none;
		background: var(--ink);
		filter: drop-shadow(0 -8px 20px rgba(16, 42, 34, .18));
	}
	.cd-contact-dock:not(.show-return-top) { grid-template-columns: repeat(3, 1fr); }
	.cd-contact-dock:not(.show-return-top) .cd-contact-dock__top { display: none; }
	.cd-contact-dock__item {
		width: auto;
		min-height: 64px;
		border-radius: 0 !important;
		background: transparent;
	}
	.cd-contact-dock__item--email { display: none; }
	.cd-contact-dock__item:hover,
	.cd-contact-dock__item:focus-visible,
	.cd-contact-dock__item[aria-expanded="true"] { color: var(--amber); background: rgba(255, 255, 255, .06); }
	.cd-contact-dock__qr {
		right: auto;
		top: auto;
		bottom: 76px;
		left: 50%;
		transform: translateX(-50%);
	}
	.cd-contact-dock__qr::after { top: auto; right: auto; bottom: -7px; left: calc(50% - 6px); border-top: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
	.container, .l-wrap { padding: 0 18px; }
	.head-top { display: none; }
	.head-main .l-wrap { height: 66px; }
	.brand { width: 154px; height: 58px; }
	.brand-logo-wrap { width: 154px; height: 58px; }
	.hero { min-height: 520px; padding: 72px 0 96px; }
	.hero-dots { left: 18px; bottom: 24px; }
	.stats-grid { grid-template-columns: 1fr; }
	.news-grid, .info-grid { grid-template-columns: 1fr; }
	.info-page { padding: 38px 18px 52px; }
	.foot-grid { grid-template-columns: 1fr; }
	.cta-band .l-wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
