:root {
	--color-ink: #15100c;
	--color-ink-2: #241913;
	--color-brown: #4a2118;
	--color-red: #8f271d;
	--color-red-bright: #c84a30;
	--color-gold: #c99a55;
	--color-gold-soft: #f2dcc0;
	--color-paper: #f7f2e8;
	--color-paper-2: #eee2cf;
	--color-line: rgba(201, 154, 85, 0.24);
	--color-muted: #75675a;
	--color-white: #fffaf1;
	--shadow-soft: 0 24px 70px rgba(23, 12, 7, 0.18);
	--shadow-dark: 0 22px 80px rgba(0, 0, 0, 0.36);
	--container: 1180px;
	--radius: 8px;
	--font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.manlongye-site {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
}

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

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

button,
input,
textarea {
	font: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(21, 16, 12, 0.92);
	color: var(--color-white);
	border-bottom: 1px solid rgba(242, 220, 192, 0.14);
	backdrop-filter: blur(18px);
}

.notice-bar {
	border-bottom: 1px solid rgba(242, 220, 192, 0.1);
	color: rgba(255, 250, 241, 0.74);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-align: center;
	padding: 7px 18px;
}

.nav-shell {
	width: min(var(--container), calc(100% - 40px));
	min-height: 72px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
}

.brand-mark {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, #c99a55, #743121);
	color: #190d09;
	border: 1px solid rgba(255, 240, 198, 0.45);
	border-radius: 50%;
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand strong {
	display: block;
	font-size: 15px;
	line-height: 1.1;
	letter-spacing: 0.18em;
}

.brand small {
	display: block;
	margin-top: 4px;
	color: rgba(255, 250, 241, 0.68);
	font-size: 12px;
	letter-spacing: 0.18em;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	flex: 1;
}

.primary-nav a {
	position: relative;
	color: rgba(255, 250, 241, 0.78);
	font-size: 14px;
	font-weight: 600;
	padding: 24px 0;
	white-space: nowrap;
}

.primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 1px;
	background: var(--color-gold);
	content: "";
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}

.primary-nav a[aria-current="page"],
.footer-grid a[aria-current="page"] {
	color: #e4b16c;
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(201, 154, 85, 0.56);
	border-radius: 999px;
	background: rgba(201, 154, 85, 0.12);
	color: #fbe6c6;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(242, 220, 192, 0.24);
	border-radius: 50%;
	background: transparent;
	color: var(--color-white);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 2px;
}

.site-main {
	overflow: hidden;
}

.section-inner {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

.hero-section {
	position: relative;
	min-height: 760px;
	background:
		radial-gradient(circle at 72% 42%, rgba(200, 74, 48, 0.24), transparent 30%),
		linear-gradient(135deg, #160f0b 0%, #22150f 46%, #0f0c09 100%);
	color: var(--color-white);
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 250, 241, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero-section::before {
	position: absolute;
	right: -80px;
	top: 110px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(201, 154, 85, 0.12);
	border-radius: 50%;
	content: "";
}

.hero-section::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	background: linear-gradient(180deg, transparent, var(--color-paper));
	content: "";
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: min(var(--container), calc(100% - 40px));
	min-height: 760px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	align-items: center;
	gap: 52px;
	padding: 86px 0 120px;
}

.hero-copy {
	max-width: 660px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--color-red-bright);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-section .eyebrow,
.quality-section .eyebrow,
.inquiry-section .eyebrow {
	color: #efb47a;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.page-hero h1,
.inquiry-copy h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.hero-copy h1 {
	max-width: 620px;
	font-size: clamp(58px, 8vw, 112px);
}

.hero-copy h1 span {
	display: block;
	margin-top: 14px;
	color: var(--color-gold);
	font-size: clamp(32px, 4.5vw, 58px);
	letter-spacing: 0.12em;
}

.hero-lead {
	max-width: 610px;
	margin: 30px 0 0;
	color: rgba(255, 250, 241, 0.78);
	font-size: 18px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn.primary {
	background: linear-gradient(135deg, #d8aa62, #9a3924);
	color: #1a0d08;
	box-shadow: 0 16px 36px rgba(154, 57, 36, 0.25);
}

.btn.secondary {
	border-color: rgba(242, 220, 192, 0.34);
	background: rgba(255, 250, 241, 0.06);
	color: #ffe7c1;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.hero-trust span {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	padding: 0 13px;
	border: 1px solid rgba(201, 154, 85, 0.28);
	border-radius: 999px;
	color: rgba(255, 250, 241, 0.78);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.hero-product-wrap {
	position: relative;
	min-height: 470px;
	display: grid;
	place-items: center;
}

.product-halo {
	position: absolute;
	width: min(100%, 520px);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(245, 193, 123, 0.24), transparent 58%),
		radial-gradient(circle at 50% 78%, rgba(174, 42, 30, 0.38), transparent 40%);
	filter: blur(2px);
}

.hero-product {
	position: relative;
	z-index: 2;
	width: min(100%, 650px);
	max-height: 480px;
	object-fit: contain;
	filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
	transform: scale(1.04);
	transform-origin: center;
}

.spec-plaque {
	position: absolute;
	right: 8%;
	bottom: 24px;
	z-index: 3;
	width: 216px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(201, 154, 85, 0.4);
	border-radius: var(--radius);
	background: rgba(24, 16, 12, 0.78);
	box-shadow: var(--shadow-dark);
	backdrop-filter: blur(18px);
}

.spec-plaque strong,
.spec-plaque span {
	display: block;
}

.spec-plaque strong {
	color: rgba(255, 250, 241, 0.62);
	font-size: 12px;
	font-weight: 700;
}

.spec-plaque span {
	margin-top: 4px;
	color: #f6ce91;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.intro-strip {
	position: relative;
	z-index: 3;
	margin-top: -54px;
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(201, 154, 85, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.92);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.stat-row div {
	min-height: 108px;
	padding: 24px 24px 22px;
	border-right: 1px solid rgba(201, 154, 85, 0.16);
}

.stat-row div:last-child {
	border-right: 0;
}

.stat-row strong,
.stat-row span {
	display: block;
}

.stat-row strong {
	font-family: var(--font-serif);
	font-size: 24px;
	line-height: 1.1;
}

.stat-row span {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 13px;
}

.product-section,
.formula-section,
.awards-section,
.faq-section {
	padding: 116px 0;
	background: var(--color-paper);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 70px;
}

.visual-panel {
	position: relative;
	border: 1px solid rgba(201, 154, 85, 0.2);
	border-radius: var(--radius);
	background: #f9f5ed;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.visual-panel::after {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(143, 39, 29, 0.18);
	border-radius: 6px;
	content: "";
	pointer-events: none;
}

.visual-panel img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-showcase {
	min-height: 520px;
	display: grid;
	place-items: center;
	padding: 56px;
	background:
		radial-gradient(circle at 50% 56%, rgba(201, 154, 85, 0.16), transparent 44%),
		linear-gradient(135deg, #fbf8f1, #eee2cf);
}

.product-showcase img {
	width: min(100%, 560px);
	aspect-ratio: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 38px rgba(54, 29, 14, 0.18));
}

.section-copy h2,
.section-heading h2,
.inquiry-copy h2 {
	font-size: clamp(38px, 5vw, 64px);
}

.section-copy p,
.section-heading p,
.inquiry-copy p,
.page-hero p {
	color: var(--color-muted);
	font-size: 17px;
}

.section-copy p {
	max-width: 620px;
	margin: 24px 0 0;
}

.detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.detail-grid div {
	min-height: 112px;
	padding: 20px;
	border: 1px solid rgba(201, 154, 85, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.58);
}

.detail-grid span {
	display: block;
	color: var(--color-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.detail-grid strong {
	display: block;
	margin-top: 10px;
	font-family: var(--font-serif);
	font-size: 24px;
	line-height: 1.12;
}

.section-heading {
	max-width: 770px;
	margin-bottom: 46px;
}

.section-heading.narrow {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.formula-grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
	align-items: stretch;
	gap: 28px;
}

.formula-image {
	border: 1px solid rgba(201, 154, 85, 0.2);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.formula-image img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.ingredient-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ingredient-card {
	display: flex;
	min-height: 132px;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	border: 1px solid rgba(201, 154, 85, 0.2);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(238, 226, 207, 0.52)),
		var(--color-paper);
}

.ingredient-card strong {
	font-family: var(--font-serif);
	font-size: 34px;
	line-height: 1;
}

.ingredient-card span {
	margin-top: 12px;
	color: var(--color-muted);
	font-size: 14px;
}

.quality-section {
	padding: 116px 0;
	background:
		linear-gradient(180deg, rgba(21, 16, 12, 0.96), rgba(36, 25, 19, 0.98)),
		var(--color-ink);
	color: var(--color-white);
}

.quality-section .section-heading p {
	color: rgba(255, 250, 241, 0.66);
}

.quality-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	grid-template-rows: repeat(2, 258px);
	gap: 18px;
}

.quality-item {
	position: relative;
	min-height: 240px;
	border: 1px solid rgba(201, 154, 85, 0.18);
	border-radius: var(--radius);
	background: #120d0a;
	overflow: hidden;
}

.quality-item.large {
	grid-row: 1 / span 2;
}

.quality-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
	transition: transform 260ms ease, opacity 260ms ease;
}

.quality-item:hover img {
	opacity: 0.86;
	transform: scale(1.03);
}

.quality-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 28%, rgba(13, 8, 6, 0.88));
	content: "";
}

.quality-item div {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
}

.quality-item span {
	color: #efb47a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.quality-item h3 {
	max-width: 520px;
	margin: 8px 0 0;
	font-family: var(--font-serif);
	font-size: 30px;
	line-height: 1.08;
}

.awards-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
	align-items: center;
	gap: 54px;
}

.award-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	gap: 16px;
}

.award-row img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border: 1px solid rgba(201, 154, 85, 0.22);
	border-radius: var(--radius);
	background: #fff8eb;
	box-shadow: 0 18px 42px rgba(46, 27, 15, 0.12);
}

.award-row img:nth-child(3) {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.faq-section {
	background:
		linear-gradient(180deg, rgba(238, 226, 207, 0.46), rgba(247, 242, 232, 1)),
		var(--color-paper);
}

.faq-layout {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 70px;
	align-items: start;
}

.sticky-heading {
	position: sticky;
	top: 122px;
	margin-bottom: 0;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid rgba(201, 154, 85, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.78);
	overflow: hidden;
}

.faq-item button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px;
	border: 0;
	background: transparent;
	color: var(--color-ink);
	text-align: left;
	font-weight: 800;
	cursor: pointer;
}

.faq-item button i {
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.faq-item button i::before,
.faq-item button i::after {
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--color-red);
	border-radius: 2px;
	content: "";
}

.faq-item button i::after {
	transform: rotate(90deg);
	transition: transform 180ms ease;
}

.faq-item.is-open button i::after {
	transform: rotate(0);
}

.faq-answer {
	display: none;
	padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-answer p {
	margin: 0;
	color: var(--color-muted);
}

body.manlongye-site .faq-item button {
	color: rgba(255, 250, 241, 0.9);
}

body.manlongye-site .faq-item:not(.is-open) button {
	color: rgba(255, 250, 241, 0.78);
}

.inquiry-section {
	padding: 116px 0;
	background:
		radial-gradient(circle at 20% 8%, rgba(201, 154, 85, 0.18), transparent 32%),
		linear-gradient(135deg, #15100c, #3a1b14);
	color: var(--color-white);
}

.inquiry-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	gap: 62px;
	align-items: start;
}

.inquiry-copy p {
	color: rgba(255, 250, 241, 0.72);
}

.inquiry-copy ul {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.inquiry-copy li {
	position: relative;
	padding-left: 24px;
	color: rgba(255, 250, 241, 0.82);
}

.inquiry-copy li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-gold);
	content: "";
}

.inquiry-form {
	display: grid;
	gap: 16px;
	padding: 30px;
	border: 1px solid rgba(242, 220, 192, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.08);
	box-shadow: var(--shadow-dark);
	backdrop-filter: blur(18px);
}

.inquiry-form label {
	display: grid;
	gap: 8px;
}

.inquiry-form span {
	color: rgba(255, 250, 241, 0.76);
	font-size: 13px;
	font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
	width: 100%;
	border: 1px solid rgba(242, 220, 192, 0.18);
	border-radius: 6px;
	background: rgba(10, 7, 5, 0.34);
	color: var(--color-white);
	outline: none;
}

.inquiry-form input {
	min-height: 50px;
	padding: 0 15px;
}

.inquiry-form textarea {
	min-height: 132px;
	padding: 13px 15px;
	resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
	color: rgba(255, 250, 241, 0.4);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
	border-color: rgba(201, 154, 85, 0.64);
	box-shadow: 0 0 0 3px rgba(201, 154, 85, 0.1);
}

.inquiry-form .btn {
	width: 100%;
	margin-top: 4px;
	cursor: pointer;
}

.form-note,
.form-success {
	margin: 0;
	color: rgba(255, 250, 241, 0.58);
	font-size: 12px;
}

.form-success {
	color: #f6ce91;
	font-weight: 800;
}

.site-footer {
	padding: 64px 0 28px;
	background: #100b08;
	color: rgba(255, 250, 241, 0.7);
}

.footer-grid,
.footer-bottom {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 0.9fr;
	gap: 54px;
	padding-bottom: 42px;
}

.footer-brand {
	color: var(--color-white);
}

.footer-grid h2 {
	margin: 0 0 14px;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 26px;
}

.footer-grid p {
	max-width: 420px;
	margin: 20px 0 0;
}

.footer-grid a:not(.brand) {
	display: block;
	padding: 4px 0;
	color: rgba(255, 250, 241, 0.7);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-top: 24px;
	border-top: 1px solid rgba(242, 220, 192, 0.12);
	font-size: 13px;
}

.page-hero {
	background: linear-gradient(135deg, #15100c, #3a1b14);
	color: var(--color-white);
}

.page-hero.compact {
	padding: 110px 0 76px;
}

.page-hero h1 {
	font-size: clamp(48px, 7vw, 86px);
}

.page-hero p {
	max-width: 680px;
	color: rgba(255, 250, 241, 0.68);
}

.content-section {
	padding: 84px 0;
}

.prose {
	max-width: 860px;
}

.prose h2,
.article-card h2 {
	font-family: var(--font-serif);
	font-size: 34px;
	line-height: 1.12;
}

.prose a {
	color: var(--color-red);
	font-weight: 800;
}

.article-list {
	display: grid;
	gap: 18px;
}

.article-card {
	padding: 28px;
	border: 1px solid rgba(201, 154, 85, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.66);
}

.article-card h2 {
	margin: 6px 0 10px;
}

.article-date {
	margin: 0;
	color: var(--color-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.primary-nav {
		gap: 14px;
	}

	.hero-inner,
	.split-layout,
	.formula-grid,
	.awards-layout,
	.faq-layout,
	.inquiry-layout {
		gap: 38px;
	}

	.hero-product {
		transform: scale(1);
	}
}

@media (max-width: 920px) {
	.notice-bar {
		display: none;
	}

	.nav-shell {
		min-height: 70px;
	}

	.primary-nav {
		position: absolute;
		top: 70px;
		right: 20px;
		left: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px;
		border: 1px solid rgba(201, 154, 85, 0.24);
		border-radius: var(--radius);
		background: rgba(21, 16, 12, 0.98);
		box-shadow: var(--shadow-dark);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		padding: 13px 10px;
	}

	.primary-nav a::after {
		display: none;
	}

	.nav-cta {
		margin-left: auto;
	}

	.menu-toggle {
		display: block;
	}

	.hero-inner,
	.split-layout,
	.formula-grid,
	.awards-layout,
	.faq-layout,
	.inquiry-layout {
		grid-template-columns: 1fr;
	}

	.hero-section,
	.hero-inner {
		min-height: auto;
	}

	.hero-inner {
		padding: 72px 0 118px;
	}

	.hero-product-wrap {
		min-height: 360px;
		order: -1;
	}

	.hero-product {
		width: min(94%, 540px);
		transform: scale(1);
	}

	.spec-plaque {
		right: 0;
		bottom: 0;
	}

	.stat-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-row div:nth-child(2) {
		border-right: 0;
	}

	.stat-row div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(201, 154, 85, 0.16);
	}

	.quality-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.quality-item,
	.quality-item.large {
		grid-row: auto;
		min-height: 320px;
	}

	.sticky-heading {
		position: static;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 640px) {
	.nav-shell,
	.section-inner,
	.hero-inner,
	.footer-grid,
	.footer-bottom {
		width: min(100% - 28px, var(--container));
	}

	.brand strong {
		font-size: 13px;
		letter-spacing: 0.12em;
	}

	.brand small {
		font-size: 11px;
		letter-spacing: 0.12em;
	}

	.brand-mark {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}

	.nav-cta {
		display: none;
	}

	.hero-copy h1 {
		font-size: 54px;
	}

	.hero-copy h1 span {
		font-size: 32px;
	}

	.hero-lead,
	.section-copy p,
	.section-heading p,
	.inquiry-copy p {
		font-size: 16px;
	}

	.hero-product-wrap {
		min-height: 300px;
	}

	.hero-product {
		width: min(100%, 420px);
		transform: scale(1);
	}

	.spec-plaque {
		width: 188px;
		padding: 14px;
	}

	.intro-strip {
		margin-top: -40px;
	}

	.stat-row,
	.detail-grid,
	.ingredient-list,
	.award-row {
		grid-template-columns: 1fr;
	}

	.stat-row div {
		border-right: 0;
		border-bottom: 1px solid rgba(201, 154, 85, 0.16);
	}

	.stat-row div:last-child {
		border-bottom: 0;
	}

	.product-section,
	.formula-section,
	.quality-section,
	.awards-section,
	.faq-section,
	.inquiry-section {
		padding: 78px 0;
	}

	.section-copy h2,
	.section-heading h2,
	.inquiry-copy h2 {
		font-size: 40px;
	}

	.formula-image img {
		min-height: 0;
	}

	.product-showcase {
		min-height: 360px;
		padding: 30px;
	}

	.inquiry-form {
		padding: 20px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	body.manlongye-site {
		font-size: 15px;
	}

	.site-header {
		position: sticky;
	}

	.nav-shell {
		gap: 12px;
		min-height: 70px;
	}

	.menu-toggle {
		flex: 0 0 44px;
	}

	.primary-nav {
		right: 14px;
		left: 14px;
	}

	.page-hero.compact {
		padding: 76px 0 92px;
	}

	.page-hero h1 {
		max-width: 100%;
		font-size: clamp(42px, 13vw, 56px);
		line-height: 0.98;
	}

	.page-hero p {
		max-width: 100%;
		font-size: 16px;
	}

	.wp-block-columns.story-grid,
	.wp-block-columns.awards-layout,
	.wp-block-columns.faq-layout,
	.wp-block-columns.inquiry-layout,
	.product-editor-page .wp-block-columns.landing-hero-grid,
	.product-editor-page .wp-block-columns.dossier-grid,
	.product-editor-page .wp-block-columns.formula-grid,
	.product-editor-page .wp-block-columns.inquiry-layout {
		gap: 28px;
	}

	.landing-hero {
		padding: 74px 0 82px;
	}

	.product-editor-page .landing-hero h1,
	.landing-hero h1 {
		font-size: clamp(54px, 16vw, 66px);
		line-height: 0.94;
	}

	.product-editor-page .landing-hero h1 span,
	.landing-hero h1 span {
		font-size: clamp(28px, 8vw, 34px);
	}

	.product-editor-page .landing-product-card img {
		aspect-ratio: 4 / 3;
		object-fit: contain;
	}

	.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link {
		min-width: 0;
	}

	.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link::after {
		width: 23px;
		height: 23px;
		margin-left: 10px;
	}

	.section-copy h2,
	.section-heading h2,
	.inquiry-copy h2,
	.product-editor-page .section-copy h2,
	.product-editor-page .inquiry-copy h2 {
		font-size: clamp(38px, 12vw, 48px);
		line-height: 1.02;
	}

	.contact-inquiry-section::before,
	.product-editor-page .product-inquiry-section::before {
		left: 50%;
		width: min(310px, 78vw);
		opacity: 0.07;
		transform: translate(-50%, -50%);
	}

	.contact-inquiry-section::after,
	.product-editor-page .product-inquiry-section::after {
		background:
			linear-gradient(180deg, rgba(9, 6, 4, 0.72), rgba(9, 6, 4, 0.24)),
			linear-gradient(rgba(255, 250, 241, 0.022) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255, 250, 241, 0.02) 1px, transparent 1px);
		background-size: auto, 48px 48px, 48px 48px;
	}

	.manlongye-zc-form.zc-inquiry-block,
	.zc-inquiry-block.manlongye-zc-form {
		padding: 20px;
	}

	.manlongye-zc-form .zc-inquiry-block__intro h2 {
		font-size: 30px;
	}

	.manlongye-zc-form .zc-inquiry-form__grid {
		grid-template-columns: 1fr;
	}

	.manlongye-zc-form .zc-inquiry-field input,
	.manlongye-zc-form .zc-inquiry-field textarea,
	.manlongye-zc-form .zc-file-input {
		min-height: 46px;
	}

	.site-footer {
		padding-top: 44px;
	}
}

/* Reference-style homepage replication */
body.home {
	background: #050504;
}

body.home .notice-bar {
	display: none;
}

body.home .site-header {
	background: rgba(4, 4, 3, 0.96);
	border-bottom: 1px solid rgba(202, 145, 70, 0.35);
}

body.home .nav-shell {
	width: min(1320px, calc(100% - 48px));
	min-height: 94px;
}

body.home .brand-mark {
	width: 52px;
	height: 52px;
	background: transparent;
	border: 2px solid #c58b45;
	color: #d6a15c;
	font-size: 28px;
	box-shadow: none;
}

body.home .brand strong {
	color: #e0ad66;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	letter-spacing: 0.06em;
}

body.home .brand small {
	color: #c9934f;
	font-size: 17px;
	letter-spacing: 0.18em;
}

body.home .primary-nav a {
	color: #f5e8d3;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	font-weight: 500;
}

body.home .primary-nav a:first-child {
	color: #e1b06c;
}

body.home .primary-nav a:first-child::after {
	opacity: 1;
	transform: scaleX(1);
	background: #b82019;
}

body.home .nav-cta {
	min-width: 112px;
	border-radius: 5px;
	color: #e0ad66;
	background: transparent;
}

.ref-container {
	width: min(1240px, calc(100% - 72px));
	margin: 0 auto;
}

.ref-eyebrow {
	margin: 0 0 14px;
	color: #d1a15e;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.ref-hero {
	position: relative;
	min-height: 650px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
		radial-gradient(circle at 62% 52%, rgba(202, 145, 70, 0.12), transparent 34%),
		linear-gradient(90deg, rgba(5, 5, 4, 0.94), rgba(11, 10, 8, 0.82) 44%, rgba(5, 5, 4, 0.94)),
		#050504;
	border-bottom: 1px solid rgba(202, 145, 70, 0.62);
	color: #f9ead4;
	overflow: hidden;
}

.ref-hero::before {
	position: absolute;
	left: 9%;
	top: 86px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(202, 145, 70, 0.08);
	border-radius: 50%;
	content: "";
	filter: blur(0.3px);
}

.ref-hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
	background-size: 78px 78px;
	opacity: 0.35;
	content: "";
	pointer-events: none;
}

.ref-hero__mist {
	position: absolute;
	right: -80px;
	top: 65px;
	width: 380px;
	height: 460px;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.09), transparent 60%);
	filter: blur(18px);
	opacity: 0.65;
	pointer-events: none;
}

.ref-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
	align-items: center;
	gap: 50px;
	padding: 52px 0;
}

.ref-hero__copy h1 {
	margin: 0;
	color: #e2aa63;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(64px, 8vw, 96px);
	font-weight: 600;
	line-height: 0.94;
	letter-spacing: 0;
}

.ref-hero__copy h1 span {
	display: block;
	margin-top: 20px;
	color: #f2bb70;
	font-size: 38px;
	letter-spacing: 0.15em;
}

.ref-hero__copy p:not(.ref-eyebrow) {
	max-width: 430px;
	margin: 26px 0 0;
	color: rgba(249, 234, 212, 0.82);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	line-height: 1.65;
}

.ref-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

.ref-btn {
	display: inline-flex;
	min-width: 150px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 22px;
	border: 1px solid #c58b45;
	border-radius: 4px;
	color: #f2c17a;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	transition: transform 160ms ease, background 160ms ease;
}

.ref-btn:hover,
.ref-btn:focus-visible {
	transform: translateY(-2px);
}

.ref-btn--primary {
	border-color: rgba(221, 77, 57, 0.72);
	background: linear-gradient(180deg, #942018, #5f120e);
	color: #f8e5c8;
}

.ref-btn--ghost {
	background: rgba(5, 5, 4, 0.35);
}

.ref-hero__product {
	position: relative;
	margin-right: -26px;
}

.ref-hero__product img {
	display: block;
	width: min(100%, 700px);
	height: auto;
	max-width: 100%;
	margin-left: auto;
	object-fit: contain;
	filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.52));
	mix-blend-mode: normal;
}

.ref-trust {
	background: #070706;
	border-bottom: 1px solid rgba(202, 145, 70, 0.62);
	color: #f7e6cd;
}

.ref-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.ref-trust__item {
	min-height: 106px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 42px;
	border-right: 1px solid rgba(202, 145, 70, 0.52);
}

.ref-trust__item:last-child {
	border-right: 0;
}

.ref-trust__icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	flex: 0 0 58px;
	border: 1px solid #c58b45;
	border-radius: 50%;
	color: #e6b76f;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
}

.ref-trust__item strong,
.ref-trust__item small {
	display: block;
}

.ref-trust__item strong {
	color: #e4b16c;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
}

.ref-trust__item small {
	margin-top: 4px;
	color: rgba(249, 234, 212, 0.7);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
}

.ref-product-overview,
.ref-ingredients,
.ref-quality,
.ref-awards {
	background:
		radial-gradient(circle at 92% 35%, rgba(120, 73, 29, 0.18), transparent 28%),
		linear-gradient(180deg, #070706, #0d0c0a);
	border-bottom: 1px solid rgba(202, 145, 70, 0.28);
	color: #f7e6cd;
}

.ref-product-overview__grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: 72px;
	min-height: 395px;
	padding: 42px 0;
}

.ref-product-overview__image {
	min-height: 310px;
	display: grid;
	place-items: end center;
	background:
		radial-gradient(circle at 50% 68%, rgba(202, 145, 70, 0.18), transparent 46%),
		linear-gradient(90deg, rgba(202, 145, 70, 0.09), transparent);
	overflow: hidden;
}

.ref-product-overview__image img {
	width: min(85%, 430px);
	filter: drop-shadow(0 28px 34px rgba(0,0,0,0.55));
}

.ref-product-overview__content h2,
.ref-section-heading h2,
.ref-faq-panel h2,
.ref-inquiry-panel h2 {
	margin: 0;
	color: #f8e7cf;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 500;
	line-height: 1.1;
}

.ref-title-mark {
	width: 44px;
	height: 2px;
	margin: 20px 0 26px;
	background: #b32019;
}

.ref-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.ref-feature-card,
.ref-ingredient-card,
.ref-quality-card,
.ref-award-frame {
	border: 1px solid rgba(202, 145, 70, 0.72);
	border-radius: 5px;
	background: linear-gradient(180deg, rgba(255, 237, 202, 0.055), rgba(255, 237, 202, 0.018));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 35px rgba(0,0,0,0.26);
}

.ref-feature-card {
	min-height: 170px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 15px;
	text-align: center;
}

.ref-feature-card span {
	color: #e0ad66;
	font-size: 42px;
	line-height: 1;
}

.ref-feature-card strong {
	margin-top: 18px;
	color: #e4b16c;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
}

.ref-feature-card small {
	max-width: 120px;
	margin-top: 6px;
	color: rgba(249, 234, 212, 0.72);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	line-height: 1.35;
}

.ref-ingredients {
	padding: 52px 0 68px;
}

.ref-section-heading {
	margin: 0 auto 34px;
	text-align: center;
}

.ref-section-heading .ref-title-mark {
	margin-right: auto;
	margin-left: auto;
}

.ref-ingredient-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.ref-ingredient-card {
	padding: 10px 10px 20px;
	text-align: center;
}

.ref-ingredient-card img {
	width: 100%;
	aspect-ratio: 1.08 / 0.82;
	object-fit: cover;
	border-radius: 3px;
	filter: saturate(0.92) contrast(1.06) brightness(1);
}

.ref-ingredient-card h3 {
	margin: 18px 0 8px;
	color: #e4b16c;
	font-family: "KaiTi", "STKaiti", Georgia, serif;
	font-size: 31px;
	font-weight: 500;
	line-height: 1;
}

.ref-ingredient-card p {
	margin: 0;
	color: rgba(249, 234, 212, 0.72);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	line-height: 1.35;
}

.ref-quality {
	padding: 52px 0 62px;
}

.ref-quality-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.ref-quality-card {
	overflow: hidden;
}

.ref-quality-card img {
	width: 100%;
	aspect-ratio: 1.55 / 0.66;
	object-fit: cover;
	filter: saturate(0.82) contrast(1.05) brightness(0.82);
}

.ref-quality-card div {
	padding: 18px 14px 20px;
	text-align: center;
}

.ref-quality-card h3 {
	margin: 0;
	color: #f6e2c4;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 500;
}

.ref-quality-card p {
	margin: 5px 0 0;
	color: rgba(249, 234, 212, 0.68);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
}

.ref-awards {
	padding: 52px 0 58px;
}

.ref-award-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
	align-items: end;
}

.ref-award-frame {
	padding: 8px;
	background:
		linear-gradient(145deg, #3a1f12, #120b07 50%, #4e2a16);
}

.ref-award-frame img {
	width: 100%;
	aspect-ratio: 1.42 / 0.9;
	object-fit: cover;
	border: 5px solid #3e2416;
	background: #ead3a2;
}

.ref-bottom {
	background: #070706;
	border-bottom: 1px solid rgba(202, 145, 70, 0.28);
	color: #f7e6cd;
}

.ref-bottom__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	min-height: 402px;
}

.ref-faq-panel,
.ref-inquiry-panel {
	padding: 56px 70px;
}

.ref-faq-panel {
	border-right: 1px solid rgba(202, 145, 70, 0.42);
}

.ref-inquiry-panel {
	background:
		radial-gradient(circle at 100% 0, rgba(160, 47, 35, 0.24), transparent 34%),
		linear-gradient(135deg, #361009, #761b14 55%, #220b08);
}

.ref-faq-list {
	display: grid;
	gap: 8px;
	margin-top: 26px;
}

.ref-faq-item {
	border: 1px solid rgba(202, 145, 70, 0.58);
	border-radius: 4px;
	background: rgba(5, 5, 4, 0.4);
}

.ref-faq-item button {
	min-height: 42px;
	padding: 0 14px;
	color: #f6e2c4;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.ref-faq-item .faq-answer {
	padding: 0 14px 14px;
}

.ref-faq-link {
	min-width: 170px;
	margin-top: 24px;
}

.ref-inquiry-panel > p:not(.ref-eyebrow) {
	max-width: 420px;
	margin: 12px 0 18px;
	color: rgba(249, 234, 212, 0.72);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.ref-zc-form.zc-inquiry-block {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.ref-zc-form .zc-inquiry-block__intro {
	display: none;
}

.ref-zc-form .zc-inquiry-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.ref-zc-form .zc-inquiry-field label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.ref-zc-form .zc-inquiry-field:nth-child(2),
.ref-zc-form .zc-inquiry-field:nth-child(5),
.ref-zc-form .zc-inquiry-field:nth-child(6) {
	grid-column: 1 / -1;
}

.ref-zc-form .zc-inquiry-field input,
.ref-zc-form .zc-inquiry-field textarea {
	min-height: 42px;
	border-color: rgba(202, 145, 70, 0.46);
	border-radius: 4px;
	background: rgba(18, 8, 5, 0.58);
	color: #f6e2c4;
	font-family: Georgia, "Times New Roman", serif;
}

.ref-zc-form .zc-inquiry-field textarea {
	min-height: 96px;
}

.ref-zc-form .zc-btn {
	width: 100%;
	min-height: 48px;
	margin-top: 12px;
	border-color: rgba(221, 77, 57, 0.78);
	border-radius: 4px;
	background: linear-gradient(180deg, #b3221a, #75140f);
	color: #f8e5c8;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 500;
}

body.home .site-footer {
	padding: 34px 0 18px;
	background: #050504;
	border-top: 1px solid rgba(202, 145, 70, 0.36);
}

body.home .footer-grid {
	grid-template-columns: 1.1fr 0.9fr 0.8fr;
	gap: 42px;
	padding-bottom: 24px;
}

body.home .footer-grid p,
body.home .footer-grid a:not(.brand),
body.home .footer-bottom {
	color: rgba(249, 234, 212, 0.62);
	font-family: Georgia, "Times New Roman", serif;
}

body.home .footer-grid h2 {
	color: #f6e2c4;
	font-size: 19px;
}

@media (max-width: 1100px) {
	.ref-hero__grid,
	.ref-product-overview__grid,
	.ref-bottom__grid {
		grid-template-columns: 1fr;
	}

	.ref-hero__product {
		order: -1;
	}

	.ref-feature-grid,
	.ref-quality-grid,
	.ref-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ref-ingredient-grid,
	.ref-award-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.ref-faq-panel {
		border-right: 0;
		border-bottom: 1px solid rgba(202, 145, 70, 0.42);
	}
}

@media (max-width: 920px) {
	body.home .notice-bar {
		display: none;
	}

	body.home .nav-shell {
		min-height: 72px;
	}

	.ref-hero__grid {
		padding-top: 44px;
	}
}

@media (max-width: 640px) {
	.ref-container {
		width: min(100% - 28px, 1240px);
	}

	.ref-hero {
		min-height: auto;
	}

	.ref-hero__grid {
		grid-template-columns: 1fr;
		padding: 34px 0 54px;
	}

	.ref-hero__copy h1 {
		font-size: 58px;
	}

	.ref-hero__copy h1 span {
		font-size: 28px;
	}

	.ref-trust__grid,
	.ref-feature-grid,
	.ref-quality-grid,
	.ref-ingredient-grid,
	.ref-award-row,
	.ref-zc-form .zc-inquiry-form__grid {
		grid-template-columns: 1fr;
	}

	.ref-trust__item {
		border-right: 0;
		border-bottom: 1px solid rgba(202, 145, 70, 0.42);
		padding: 18px 4px;
	}

	.ref-product-overview__grid,
	.ref-ingredients,
	.ref-quality,
	.ref-awards {
		padding: 40px 0;
	}

	.ref-faq-panel,
	.ref-inquiry-panel {
		padding: 36px 22px;
	}
}

/* Dark luxury system extension */
body.manlongye-site {
	background: #0f0a08;
	color: var(--color-white);
}

.hero-section::after {
	background: linear-gradient(180deg, transparent, #0f0a08);
}

.intro-strip {
	background: #0f0a08;
}

.stat-row,
.detail-grid div,
.ingredient-card,
.faq-item,
.article-card {
	border-color: rgba(201, 154, 85, 0.22);
	background: rgba(255, 250, 241, 0.055);
	color: var(--color-white);
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.stat-row span,
.section-copy p,
.section-heading p,
.inquiry-copy p,
.faq-answer p,
.article-card p,
.page-hero p,
.prose p,
.ingredient-card span,
.ingredient-card p {
	color: rgba(255, 250, 241, 0.66);
}

.product-section,
.formula-section,
.awards-section,
.faq-section,
.content-section,
.dark-section {
	padding: 112px 0;
	background:
		radial-gradient(circle at 78% 18%, rgba(143, 39, 29, 0.14), transparent 34%),
		linear-gradient(180deg, #0f0a08, #17100c 48%, #0f0a08);
	color: var(--color-white);
}

.dark-section.subdued,
.formula-section,
.faq-section,
.faq-page-section {
	background:
		linear-gradient(rgba(255, 250, 241, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 250, 241, 0.025) 1px, transparent 1px),
		linear-gradient(180deg, #130d0a, #0f0a08);
	background-size: 52px 52px, 52px 52px, auto;
}

.product-showcase,
.visual-panel,
.formula-image,
.dark-media-frame,
.landing-product-card {
	border: 1px solid rgba(201, 154, 85, 0.24);
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 50% 58%, rgba(201, 154, 85, 0.12), transparent 42%),
		linear-gradient(135deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.025));
	box-shadow: var(--shadow-dark);
	overflow: hidden;
}

.visual-panel::after {
	border-color: rgba(201, 154, 85, 0.18);
}

.product-showcase img {
	filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.34));
}

.ingredient-card {
	background:
		linear-gradient(135deg, rgba(255, 250, 241, 0.07), rgba(143, 39, 29, 0.07)),
		#15100c;
}

.ingredient-card strong,
.detail-grid strong,
.stat-row strong,
.footer-grid h2,
.prose h2,
.article-card h2 {
	color: var(--color-white);
}

.ingredient-card p {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.5;
}

.award-row img {
	background: #17100c;
	border-color: rgba(201, 154, 85, 0.28);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.page-hero {
	background:
		radial-gradient(circle at 72% 32%, rgba(143, 39, 29, 0.22), transparent 32%),
		linear-gradient(135deg, #15100c, #29140f 58%, #0e0907);
}

.landing-hero {
	position: relative;
	padding: 126px 0 108px;
	background:
		radial-gradient(circle at 72% 42%, rgba(200, 74, 48, 0.22), transparent 30%),
		linear-gradient(135deg, #130d0a 0%, #28140e 52%, #0f0a08 100%);
	color: var(--color-white);
	overflow: hidden;
}

.landing-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
	align-items: center;
	gap: 66px;
}

.landing-hero h1 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(58px, 8vw, 112px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.landing-hero h1 span {
	display: block;
	margin-top: 14px;
	color: var(--color-gold);
	font-size: clamp(34px, 4vw, 58px);
	letter-spacing: 0.12em;
}

.landing-hero p {
	max-width: 650px;
	color: rgba(255, 250, 241, 0.7);
	font-size: 18px;
}

.landing-product-card {
	position: relative;
	padding: 38px;
	background:
		radial-gradient(circle at 50% 55%, rgba(201, 154, 85, 0.13), transparent 42%),
		linear-gradient(135deg, rgba(255, 250, 241, 0.06), rgba(143, 39, 29, 0.1)),
		#100b08;
}

.landing-product-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background: #050403;
}

.landing-product-meta {
	position: absolute;
	right: 34px;
	bottom: 26px;
	width: min(260px, calc(100% - 68px));
	padding: 18px;
	border: 1px solid rgba(201, 154, 85, 0.34);
	border-radius: var(--radius);
	background: rgba(16, 11, 8, 0.82);
	backdrop-filter: blur(16px);
}

.landing-product-meta span,
.dossier-cards span,
.pillar-card span {
	display: block;
	color: rgba(255, 250, 241, 0.62);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.landing-product-meta strong {
	display: block;
	margin-top: 5px;
	color: #f4c886;
	font-size: 22px;
	letter-spacing: 0.08em;
}

.dossier-grid,
.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	align-items: center;
	gap: 56px;
}

.wp-block-columns.story-grid,
.wp-block-columns.awards-layout,
.wp-block-columns.faq-layout,
.wp-block-columns.inquiry-layout {
	display: grid !important;
}

.wp-block-columns.story-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	align-items: center;
}

.wp-block-columns.awards-layout {
	grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
	align-items: center;
}

.wp-block-columns.faq-layout {
	grid-template-columns: 0.82fr 1.18fr;
	align-items: start;
}

.wp-block-columns.inquiry-layout {
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	align-items: start;
}

.wp-block-columns.story-grid > .wp-block-column,
.wp-block-columns.awards-layout > .wp-block-column,
.wp-block-columns.faq-layout > .wp-block-column,
.wp-block-columns.inquiry-layout > .wp-block-column {
	min-width: 0;
}

.dossier-cards,
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.dossier-cards div,
.pillar-card {
	min-height: 156px;
	padding: 24px;
	border: 1px solid rgba(201, 154, 85, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.055);
}

.dossier-cards strong,
.pillar-card h2 {
	display: block;
	margin-top: 12px;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 29px;
	line-height: 1.08;
}

.pillar-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-card p {
	color: rgba(255, 250, 241, 0.64);
}

.dark-media-frame img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #050403;
}

.compact-quality {
	padding-top: 108px;
}

.inquiry-form-panel {
	min-width: 0;
}

.manlongye-zc-form.zc-inquiry-block,
.zc-inquiry-block.manlongye-zc-form {
	margin: 0;
	padding: 30px;
	border: 1px solid rgba(201, 154, 85, 0.28);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(255, 250, 241, 0.08), rgba(143, 39, 29, 0.08)),
		rgba(16, 11, 8, 0.76);
	color: var(--color-white);
	box-shadow: var(--shadow-dark);
	backdrop-filter: blur(18px);
}

.manlongye-zc-form .zc-inquiry-block__intro h2 {
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 34px;
	line-height: 1.08;
}

.manlongye-zc-form .zc-inquiry-block__intro p,
.manlongye-zc-form .zc-file-input__name {
	color: rgba(255, 250, 241, 0.62);
}

.manlongye-zc-form .zc-inquiry-field label {
	color: rgba(255, 250, 241, 0.76);
	font-size: 13px;
	font-weight: 800;
}

.manlongye-zc-form .zc-inquiry-field input,
.manlongye-zc-form .zc-inquiry-field textarea,
.manlongye-zc-form .zc-file-input {
	border: 1px solid rgba(242, 220, 192, 0.18);
	border-radius: 6px;
	background: rgba(10, 7, 5, 0.44);
	color: var(--color-white);
}

.manlongye-zc-form .zc-inquiry-field input:focus,
.manlongye-zc-form .zc-inquiry-field textarea:focus {
	border-color: rgba(201, 154, 85, 0.68);
	outline: none;
	box-shadow: 0 0 0 3px rgba(201, 154, 85, 0.12);
}

.manlongye-zc-form .zc-inquiry-field input::placeholder,
.manlongye-zc-form .zc-inquiry-field textarea::placeholder {
	color: rgba(255, 250, 241, 0.38);
}

.manlongye-zc-form .zc-btn,
.manlongye-zc-form button[type="submit"] {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid rgba(244, 200, 134, 0.45);
	border-radius: 999px;
	background: linear-gradient(135deg, #d8aa62, #9a3924);
	color: #1a0d08;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 16px 36px rgba(154, 57, 36, 0.25);
}

.manlongye-zc-form .zc-inquiry-form__grid {
	gap: 16px;
}

.zc-modal__backdrop {
	background: rgba(0, 0, 0, 0.72);
}

.zc-modal__dialog {
	border: 1px solid rgba(201, 154, 85, 0.28);
	background: #120c09;
	color: var(--color-white);
}

.plugin-missing-note {
	padding: 18px;
	border: 1px solid rgba(201, 154, 85, 0.3);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.06);
	color: #f4c886;
}

.dark-content {
	background: #0f0a08;
	color: var(--color-white);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
	border-radius: 999px;
	background: linear-gradient(135deg, #d8aa62, #9a3924);
	color: #160c08;
	font-weight: 800;
}

@media (max-width: 920px) {
	.landing-hero-grid,
	.dossier-grid,
	.story-grid {
		grid-template-columns: 1fr;
	}

	.wp-block-columns.story-grid,
	.wp-block-columns.awards-layout,
	.wp-block-columns.faq-layout,
	.wp-block-columns.inquiry-layout {
		grid-template-columns: 1fr !important;
	}

	.landing-product-card {
		order: -1;
	}

	.pillar-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.product-section,
	.formula-section,
	.awards-section,
	.faq-section,
	.content-section,
	.dark-section,
	.landing-hero {
		padding: 78px 0;
	}

	.landing-hero h1 {
		font-size: 52px;
	}

	.landing-hero h1 span {
		font-size: 30px;
	}

	.landing-product-card,
	.manlongye-zc-form.zc-inquiry-block,
	.zc-inquiry-block.manlongye-zc-form {
		padding: 20px;
	}

	.dossier-cards {
		grid-template-columns: 1fr;
	}

	.landing-product-meta {
		position: static;
		width: auto;
		margin-top: 16px;
	}
}

/* Final homepage reference overrides */
body.home .ref-faq-item.faq-item {
	border: 1px solid rgba(202, 145, 70, 0.58);
	border-radius: 4px;
	background: rgba(5, 5, 4, 0.4);
	box-shadow: none;
	backdrop-filter: none;
}

body.home .ref-faq-item button {
	min-height: 42px;
	padding: 0 14px;
	color: #f6e2c4;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 500;
}

body.home .ref-faq-item .faq-answer {
	padding: 0 14px 14px;
}

body.home .ref-faq-item .faq-answer p {
	color: rgba(249, 234, 212, 0.68);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	line-height: 1.5;
}

body.home .ref-faq-item button i::before,
body.home .ref-faq-item button i::after {
	background: #d1a15e;
}

body.home .ref-zc-form.zc-inquiry-block,
body.home .zc-inquiry-block.ref-zc-form {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

body.home .ref-zc-form .zc-inquiry-block__intro {
	display: none;
}

body.home .ref-zc-form .zc-inquiry-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

body.home .ref-zc-form .zc-inquiry-field {
	min-width: 0;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(1) {
	order: 1;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(3) {
	order: 2;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(2) {
	order: 3;
	grid-column: 1 / -1;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(4) {
	order: 4;
	grid-column: auto;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(5) {
	order: 5;
	grid-column: auto;
}

body.home .ref-zc-form .zc-inquiry-field:nth-child(6) {
	order: 6;
	grid-column: 1 / -1;
}

body.home .ref-zc-form .zc-inquiry-field label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

body.home .ref-zc-form .zc-inquiry-field input,
body.home .ref-zc-form .zc-inquiry-field textarea {
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(202, 145, 70, 0.46);
	border-radius: 4px;
	background: rgba(18, 8, 5, 0.58);
	color: #f6e2c4;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	box-shadow: none;
}

body.home .ref-zc-form .zc-inquiry-field textarea {
	min-height: 96px;
	padding-top: 12px;
	resize: vertical;
}

body.home .ref-zc-form .zc-inquiry-field input::placeholder,
body.home .ref-zc-form .zc-inquiry-field textarea::placeholder {
	color: rgba(249, 234, 212, 0.56);
}

body.home .ref-zc-form .zc-btn,
body.home .ref-zc-form button[type="submit"] {
	width: 100%;
	min-height: 48px;
	margin-top: 12px;
	border: 1px solid rgba(221, 77, 57, 0.78);
	border-radius: 4px;
	background: linear-gradient(180deg, #b3221a, #75140f);
	color: #f8e5c8;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 500;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
	body.home .ref-zc-form .zc-inquiry-form__grid {
		grid-template-columns: 1fr;
	}

	body.home .ref-zc-form .zc-inquiry-field {
		grid-column: 1 / -1;
	}

	body.home .ref-hero__product {
		margin-right: 0;
	}

	body.home .ref-hero__product img {
		width: 100%;
	}

	body.home .ref-hero__mist {
		display: none;
	}

	body.home .footer-grid {
		grid-template-columns: 1fr;
		width: min(100% - 32px, 1240px);
	}
}

/* Browser-comment refinements: richer overview, awards, and formula visuals */
body.home .ref-product-overview__image {
	min-height: 340px;
	display: block;
	border: 1px solid rgba(202, 145, 70, 0.42);
	border-radius: 6px;
	background: #050403;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 24px 50px rgba(0, 0, 0, 0.32);
}

body.home .ref-product-overview__image img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	filter: none;
}

body.home .ref-feature-card {
	background:
		radial-gradient(circle at 50% 22%, rgba(202, 145, 70, 0.12), transparent 38%),
		linear-gradient(180deg, rgba(255, 237, 202, 0.06), rgba(255, 237, 202, 0.02));
}

body.home .ref-feature-icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(202, 145, 70, 0.44);
	border-radius: 50%;
	color: #e0ad66;
	background: rgba(5, 5, 4, 0.24);
}

body.home .ref-feature-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.home .ref-feature-card strong {
	margin-top: 16px;
}

body.home .ref-award-row {
	align-items: center;
	gap: 14px;
}

body.home .ref-award-frame {
	padding: 0;
	border-color: rgba(202, 145, 70, 0.58);
	background: transparent;
	overflow: hidden;
}

body.home .ref-award-frame img {
	width: 100%;
	aspect-ratio: 1.4 / 1;
	object-fit: cover;
	border: 0;
	background: #100b08;
}

.formula-image--premium {
	background:
		radial-gradient(circle at 58% 60%, rgba(201, 154, 85, 0.08), transparent 42%),
		#050403;
}

.formula-image--premium img {
	min-height: 540px;
	aspect-ratio: 0.94 / 1;
	object-fit: cover;
	background: #050403;
}

.about-awards-section {
	padding: 96px 0;
}

.about-awards-layout {
	grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.32fr);
	gap: 42px;
}

.about-awards-layout .section-copy h2 {
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.04;
}

.about-award-stage.dark-media-frame {
	padding: 0;
	border-color: rgba(201, 154, 85, 0.32);
	background: #050403;
	box-shadow: var(--shadow-dark);
}

.about-award-stage img {
	width: 100%;
	aspect-ratio: 2.58 / 1;
	object-fit: cover;
	background: #050403;
}

@media (max-width: 920px) {
	.about-awards-layout {
		grid-template-columns: 1fr;
	}

	.formula-image--premium img {
		min-height: 360px;
	}
}

@media (max-width: 640px) {
	body.home .ref-product-overview__image,
	body.home .ref-product-overview__image img {
		min-height: 220px;
	}

	.about-award-stage img {
		aspect-ratio: 1.35 / 1;
	}
}

/* Round of browser-comment refinements */
.brand-mark--dragon {
	padding: 5px;
	background: radial-gradient(circle at 50% 35%, rgba(236, 186, 109, 0.14), rgba(0, 0, 0, 0.12));
	border-color: rgba(214, 161, 92, 0.84);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 0 1px rgba(214, 161, 92, 0.12);
}

.brand-mark--dragon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45));
}

body.home .brand-mark--dragon {
	padding: 6px;
}

.ref-trust__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ref-trust__item {
	padding-right: 34px;
	padding-left: 34px;
}

.ref-trust__item strong {
	font-size: 18px;
	line-height: 1.2;
}

.ref-trust__item small {
	max-width: 170px;
	line-height: 1.35;
}

body.home .ref-product-overview__image img {
	object-position: center;
}

body.home .ref-feature-grid {
	align-items: stretch;
}

body.home .ref-feature-card {
	min-height: 205px;
	justify-content: flex-start;
	padding: 23px 14px 18px;
}

body.home .ref-feature-icon {
	flex: 0 0 54px;
	margin-bottom: 14px;
}

body.home .ref-feature-card strong {
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	line-height: 1.25;
}

body.home .ref-feature-card small {
	min-height: 42px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.product-editor-page {
	background: #0f0a08;
	color: var(--color-white);
}

.product-editor-page > .wp-block-group {
	margin-block-start: 0;
}

.product-editor-page .wp-block-columns,
.product-editor-page .wp-block-image,
.product-editor-page .wp-block-group {
	margin-top: 0;
	margin-bottom: 0;
}

.product-editor-page .wp-block-columns.landing-hero-grid,
.product-editor-page .wp-block-columns.dossier-grid,
.product-editor-page .wp-block-columns.formula-grid,
.product-editor-page .wp-block-columns.inquiry-layout {
	display: grid !important;
}

.product-editor-page .wp-block-columns.landing-hero-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
	align-items: center;
}

.product-editor-page .wp-block-columns.dossier-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	align-items: center;
}

.product-editor-page .wp-block-columns.formula-grid {
	grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
	align-items: stretch;
}

.product-editor-page .wp-block-columns.inquiry-layout {
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: start;
}

.product-editor-page .wp-block-columns > .wp-block-column {
	min-width: 0;
}

.product-editor-page #formula,
.product-editor-page #inquiry,
.product-editor-page #product-inquiry,
.product-editor-page .product-dossier,
.product-editor-page .quality-section {
	scroll-margin-top: 132px;
}

.contact-inquiry-section,
.product-editor-page .product-inquiry-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 52%, rgba(224, 173, 102, 0.13), transparent 34%),
		radial-gradient(circle at 78% 28%, rgba(143, 39, 29, 0.18), transparent 32%),
		linear-gradient(135deg, #15100c, #331812 58%, #130d0a);
}

.contact-inquiry-section::before,
.product-editor-page .product-inquiry-section::before {
	position: absolute;
	top: 50%;
	left: clamp(18px, 6vw, 92px);
	width: min(460px, 44vw);
	aspect-ratio: 218 / 330;
	background-image: url("../images/logo-dragon.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	content: "";
	filter: sepia(1) saturate(1.35) brightness(1.05);
	opacity: 0.08;
	transform: translateY(-50%);
	pointer-events: none;
}

.contact-inquiry-section::after,
.product-editor-page .product-inquiry-section::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 6, 4, 0.72), transparent 42%, rgba(9, 6, 4, 0.18)),
		linear-gradient(rgba(255, 250, 241, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 250, 241, 0.02) 1px, transparent 1px);
	background-size: auto, 56px 56px, 56px 56px;
	content: "";
	pointer-events: none;
}

.contact-inquiry-section > .section-inner,
.product-editor-page .product-inquiry-section > .wp-block-group__inner-container {
	position: relative;
	z-index: 1;
}

.product-editor-page .wp-block-button__link {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 24px;
	font-weight: 800;
	text-decoration: none;
}

.product-editor-page .wp-block-button.btn.primary .wp-block-button__link {
	background: linear-gradient(135deg, #d8aa62, #9a3924);
	color: #1a0d08;
	box-shadow: 0 16px 36px rgba(154, 57, 36, 0.25);
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link {
	position: relative;
	min-width: 186px;
	border: 1px solid rgba(224, 173, 102, 0.72);
	background:
		linear-gradient(135deg, rgba(224, 173, 102, 0.14), rgba(143, 39, 29, 0.08)),
		rgba(8, 6, 5, 0.46);
	color: #f6cf91;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.18);
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link::after {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 14px;
	border: 1px solid rgba(224, 173, 102, 0.52);
	border-radius: 50%;
	color: #f6cf91;
	font-size: 15px;
	line-height: 1;
	content: "↓";
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link:hover,
.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link:focus-visible {
	border-color: rgba(255, 218, 150, 0.95);
	background:
		linear-gradient(135deg, rgba(224, 173, 102, 0.2), rgba(143, 39, 29, 0.18)),
		rgba(8, 6, 5, 0.62);
	color: #ffe2ad;
}

.product-editor-page .landing-product-card .wp-block-image {
	margin: 0;
}

.product-editor-page .landing-product-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #050403;
}

.product-editor-page .landing-product-meta p {
	margin: 0;
	color: rgba(255, 250, 241, 0.62);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-editor-page .landing-product-meta h3 {
	margin: 5px 0 0;
	color: #f4c886;
	font-size: 22px;
	letter-spacing: 0.08em;
}

.product-editor-page .dossier-card .dossier-label {
	margin: 0;
	color: rgba(255, 250, 241, 0.62);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-editor-page .dossier-card .dossier-title {
	margin: 12px 0 0;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 29px;
	line-height: 1.08;
}

.product-editor-page .dossier-cards,
.product-editor-page .ingredient-list,
.product-editor-page .quality-grid {
	display: block;
	width: 100%;
}

.product-editor-page .dossier-cards > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.product-editor-page .dossier-card {
	min-height: 156px;
	display: flex;
	align-items: center;
	padding: 24px;
	border: 1px solid rgba(201, 154, 85, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 250, 241, 0.055);
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.product-editor-page .dossier-card > .wp-block-group__inner-container,
.product-editor-page .ingredient-card > .wp-block-group__inner-container {
	width: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.product-editor-page .ingredient-card h3 {
	margin: 0;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 34px;
	line-height: 1;
}

.product-editor-page .ingredient-card .ingredient-latin {
	margin: 12px 0 0;
	color: rgba(255, 250, 241, 0.66);
	font-size: 14px;
}

.product-editor-page .ingredient-list > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.product-editor-page .formula-image--premium {
	margin: 0;
}

.product-editor-page .formula-image--premium img {
	width: 100%;
	min-height: 520px;
	padding: 14px;
	object-fit: contain;
	background: #050403;
}

.product-editor-page .quality-grid > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	grid-template-rows: repeat(2, 258px);
	gap: 18px;
}

.product-editor-page .quality-grid > .wp-block-group__inner-container > .quality-item.large {
	grid-row: 1 / span 2;
}

.product-editor-page .quality-item > .wp-block-group__inner-container {
	position: static;
	inset: auto;
	width: 100%;
	height: 100%;
}

.product-editor-page .quality-item > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container {
	position: static;
	inset: auto;
	width: auto;
	height: auto;
}

.product-editor-page .quality-item figure,
.product-editor-page .quality-item .wp-block-image {
	width: 100%;
	height: 100%;
	margin: 0;
}

.product-editor-page .quality-item > .wp-block-group__inner-container > .wp-block-group {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
}

.product-editor-page .quality-item > .wp-block-group__inner-container > .wp-block-group p {
	margin: 0;
	color: #efb47a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.product-editor-page .quality-item > .wp-block-group__inner-container > .wp-block-group h3 {
	max-width: 520px;
	margin: 8px 0 0;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 30px;
	line-height: 1.08;
}

@media (max-width: 920px) {
	.product-editor-page .wp-block-columns.landing-hero-grid,
	.product-editor-page .wp-block-columns.dossier-grid,
	.product-editor-page .wp-block-columns.formula-grid,
	.product-editor-page .wp-block-columns.inquiry-layout {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 640px) {
	body.home .ref-feature-card {
		min-height: 178px;
	}

	.ref-trust__item {
		padding-right: 8px;
		padding-left: 8px;
	}

	.product-editor-page .dossier-cards > .wp-block-group__inner-container,
	.product-editor-page .ingredient-list > .wp-block-group__inner-container,
	.product-editor-page .quality-grid > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.product-editor-page .quality-grid > .wp-block-group__inner-container {
		grid-template-rows: none;
	}

	.product-editor-page .quality-grid > .wp-block-group__inner-container > .quality-item.large {
		grid-row: auto;
	}
}

body.home .ref-award-frame {
	width: 100%;
	appearance: none;
	border: 1px solid rgba(202, 145, 70, 0.72);
	color: inherit;
	cursor: zoom-in;
	font: inherit;
	text-align: inherit;
}

body.home .ref-award-frame:hover,
body.home .ref-award-frame:focus-visible {
	border-color: rgba(236, 185, 106, 0.95);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 44px rgba(176, 54, 31, 0.22);
	outline: none;
}

body.home .ref-award-frame img {
	display: block;
	transition: filter 180ms ease, transform 180ms ease;
}

body.home .ref-award-frame:hover img,
body.home .ref-award-frame:focus-visible img {
	filter: saturate(1.05) contrast(1.06) brightness(1.08);
	transform: scale(1.018);
}

body.is-award-lightbox-open {
	overflow: hidden;
}

.award-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 48px);
	background: rgba(3, 2, 1, 0.86);
}

.award-lightbox[hidden] {
	display: none;
}

.award-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(198, 128, 48, 0.18), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74));
	backdrop-filter: blur(9px);
}

.award-lightbox__panel {
	position: relative;
	z-index: 1;
	max-width: min(1080px, 94vw);
	max-height: 88vh;
	padding: clamp(10px, 1.6vw, 18px);
	overflow: visible;
	border: 1px solid rgba(226, 166, 86, 0.86);
	border-radius: 6px;
	background:
		linear-gradient(90deg, rgba(226, 166, 86, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(226, 166, 86, 0.1) 1px, transparent 1px),
		linear-gradient(145deg, #2d180e, #080605 56%, #3d2113);
	background-size: 28px 28px, 28px 28px, auto;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.74), 0 0 44px rgba(184, 57, 30, 0.18);
}

.award-lightbox__panel img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(820px, calc(94vw - 36px));
	max-width: calc(94vw - 36px);
	max-height: calc(88vh - 36px);
	object-fit: contain;
	border: clamp(5px, 0.8vw, 9px) solid #3e2416;
	background: #e4d2aa;
}

.award-lightbox__close {
	position: absolute;
	top: -18px;
	right: -18px;
	z-index: 2;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(226, 166, 86, 0.8);
	border-radius: 50%;
	background: linear-gradient(145deg, #5b1d17, #15100d);
	color: #ffe0a9;
	cursor: pointer;
	font: 700 22px/1 var(--font-sans);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.award-lightbox__close:hover,
.award-lightbox__close:focus-visible {
	border-color: rgba(255, 220, 155, 0.98);
	outline: none;
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.award-lightbox {
		padding: 16px;
	}

	.award-lightbox__panel img {
		max-width: calc(100vw - 48px);
		max-height: calc(86vh - 48px);
	}

	.award-lightbox__close {
		top: -12px;
		right: -10px;
		width: 38px;
		height: 38px;
		font-size: 19px;
	}
}

@media (max-width: 640px) {
	.contact-inquiry-section::before,
	.product-editor-page .product-inquiry-section::before {
		left: 50%;
		width: min(310px, 78vw);
		opacity: 0.07;
		transform: translate(-50%, -50%);
	}

	.contact-inquiry-section::after,
	.product-editor-page .product-inquiry-section::after {
		background:
			linear-gradient(180deg, rgba(9, 6, 4, 0.72), rgba(9, 6, 4, 0.24)),
			linear-gradient(rgba(255, 250, 241, 0.022) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255, 250, 241, 0.02) 1px, transparent 1px);
		background-size: auto, 48px 48px, 48px 48px;
	}

	.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link {
		min-width: 0;
	}

	.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link::after {
		width: 23px;
		height: 23px;
		margin-left: 10px;
	}

	.manlongye-zc-form .zc-inquiry-form__grid {
		grid-template-columns: 1fr;
	}
}

/* Product-design review refinements */
.product-editor-page .landing-hero-grid {
	gap: clamp(42px, 5.6vw, 76px);
}

.product-editor-page .landing-hero .eyebrow {
	color: #efb47a;
}

.product-editor-page .landing-hero p {
	max-width: 620px;
	color: rgba(255, 250, 241, 0.76);
	font-size: clamp(17px, 1.45vw, 19px);
	line-height: 1.72;
}

.product-editor-page .hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.product-editor-page .hero-actions .wp-block-button {
	margin: 0;
}

.product-editor-page .hero-actions .wp-block-button.btn {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link {
	min-width: 190px;
	min-height: 54px;
	padding: 0 18px 0 24px;
	border-color: rgba(224, 173, 102, 0.82);
	background:
		linear-gradient(135deg, rgba(224, 173, 102, 0.16), rgba(75, 27, 18, 0.18)),
		rgba(7, 5, 4, 0.7);
	color: #ffe1ad;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 16px 42px rgba(0, 0, 0, 0.28);
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link::after {
	width: 28px;
	height: 28px;
	margin-left: 14px;
	border-color: rgba(224, 173, 102, 0.64);
	background: rgba(224, 173, 102, 0.1);
	color: #ffe5b8;
	content: "↓";
}

.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link:hover,
.product-editor-page .wp-block-button.btn.secondary .wp-block-button__link:focus-visible {
	border-color: rgba(255, 224, 165, 0.98);
	background:
		linear-gradient(135deg, rgba(224, 173, 102, 0.24), rgba(143, 39, 29, 0.2)),
		rgba(7, 5, 4, 0.82);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 20px 48px rgba(0, 0, 0, 0.34);
}

.product-editor-page .landing-product-card {
	padding: clamp(20px, 3vw, 38px);
	border-color: rgba(214, 161, 92, 0.42);
	background:
		radial-gradient(circle at 72% 26%, rgba(214, 161, 92, 0.14), transparent 30%),
		radial-gradient(circle at 18% 82%, rgba(143, 39, 29, 0.16), transparent 34%),
		linear-gradient(135deg, rgba(255, 250, 241, 0.06), rgba(255, 250, 241, 0.018)),
		#100b08;
}

.product-editor-page .landing-product-card img {
	padding: clamp(10px, 1.8vw, 18px);
	object-fit: contain;
	background:
		radial-gradient(circle at 68% 46%, rgba(80, 110, 130, 0.18), transparent 34%),
		linear-gradient(135deg, #06131d, #0b1117 58%, #060504);
}

.product-editor-page .landing-product-meta {
	right: clamp(16px, 3vw, 34px);
	bottom: clamp(16px, 2.4vw, 28px);
	width: min(318px, calc(100% - 32px));
	padding: 16px 18px;
	border-color: rgba(224, 173, 102, 0.45);
	background:
		linear-gradient(135deg, rgba(18, 29, 43, 0.92), rgba(9, 7, 5, 0.86));
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.product-editor-page .landing-product-meta p {
	color: rgba(255, 224, 178, 0.78);
	font-size: 11px;
	letter-spacing: 0.16em;
}

.product-editor-page .landing-product-meta h3 {
	margin-top: 8px;
	color: #f7d49b;
	font-size: clamp(22px, 2.2vw, 29px);
	letter-spacing: 0.1em;
}

.pillar-grid {
	display: block;
}

.pillar-grid > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pillar-grid .pillar-card {
	position: relative;
	min-height: 238px;
	overflow: hidden;
	padding: 30px;
	border-color: rgba(214, 161, 92, 0.34);
	background:
		linear-gradient(160deg, rgba(255, 250, 241, 0.075), rgba(143, 39, 29, 0.07)),
		rgba(10, 8, 7, 0.54);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.pillar-grid .pillar-card::before {
	position: absolute;
	top: -52px;
	right: -46px;
	width: 148px;
	height: 148px;
	border: 1px solid rgba(224, 173, 102, 0.22);
	border-radius: 50%;
	content: "";
}

.pillar-grid .pillar-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(224, 173, 102, 0.44);
	border-radius: 50%;
	color: #efb47a;
	background: rgba(224, 173, 102, 0.08);
	letter-spacing: 0.06em;
}

.pillar-grid .pillar-card h2 {
	margin: 28px 0 0;
	font-size: clamp(26px, 2.35vw, 36px);
	line-height: 1.04;
}

.pillar-grid .pillar-card p {
	max-width: 320px;
	margin: 18px 0 0;
	color: rgba(255, 250, 241, 0.68);
	font-size: 16px;
	line-height: 1.68;
}

@media (min-width: 921px) and (max-width: 1100px) {
	.product-editor-page .wp-block-columns.landing-hero-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr) !important;
		align-items: flex-start !important;
		gap: 34px;
	}

	.product-editor-page .landing-hero h1 {
		font-size: clamp(52px, 6.8vw, 64px);
	}

	.product-editor-page .landing-hero h1 span {
		font-size: clamp(28px, 3.8vw, 38px);
	}

	.product-editor-page .landing-hero p {
		font-size: 16px;
		line-height: 1.62;
	}

	.product-editor-page .landing-product-card {
		padding: 24px;
	}

	.product-editor-page .landing-product-meta {
		width: min(284px, calc(100% - 32px));
		padding: 14px 16px;
	}
}

@media (max-width: 920px) {
	.product-editor-page .landing-hero-grid > .wp-block-column:nth-child(2) {
		order: -1;
	}

	.pillar-grid > .wp-block-group__inner-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.product-editor-page .hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.product-editor-page .hero-actions .wp-block-button,
	.product-editor-page .hero-actions .wp-block-button__link {
		width: 100%;
	}

	.product-editor-page .landing-product-meta {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		margin-top: 14px;
	}

	.pillar-grid > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.pillar-grid .pillar-card {
		min-height: 0;
		padding: 24px;
	}
}
