/*
 * QHF&B — Home page styles (front-page.html patterns).
 * Consumes :root tokens defined in style.css — no token redefinitions here.
 * Mobile-first; shared classes (.qh-section, .qh-eyebrow, .qh-display,
 * .qh-btn, .qh-card, .qh-hero, .reveal) live in style.css.
 */

/* ============================== Hero ============================== */

.qh-home-hero {
	display: flex;
	align-items: center;
	justify-content: center;
}

.qh-home-hero .qh-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 920px;
	margin-inline: auto;
	padding: 120px 24px 130px;
}

.qh-home-hero .qh-hero-zh {
	color: var(--qh-gold);
	font-size: clamp(13px, 1.6vw, 16px);
	font-weight: 500;
	letter-spacing: .5em;
	text-indent: .5em;
	margin: 0 0 28px;
}

.qh-home-hero .qh-display {
	margin: 0;
}

.qh-home-hero .qh-hero-sub {
	font-family: var(--qh-font-body);
	font-weight: 300;
	font-size: 13px;
	letter-spacing: .35em;
	text-indent: .35em;
	text-transform: uppercase;
	color: var(--qh-cream);
	margin: 30px 0 0;
}

.qh-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 44px;
}

/* .qh-scroll-cue is shared — canonical rules live in style.css (§4 Hero). */

/* ============================== Stats ============================= */

.qh-stats {
	background: #0C0A07;
	border-top: 1px solid var(--qh-line-soft);
	border-bottom: 1px solid var(--qh-line-soft);
	padding: 30px 0;
}

.qh-stats-grid {
	display: grid;
	grid-template-columns: 1fr;
}

.qh-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	padding: 28px 24px;
}

.qh-stat + .qh-stat {
	border-top: 1px solid var(--qh-line-soft);
}

.qh-stat svg {
	width: 20px;
	height: 20px;
	color: var(--qh-gold);
}

.qh-stat-big {
	font-family: var(--qh-font-display);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.2;
	color: var(--qh-cream);
	margin: 0;
}

.qh-stat-small {
	font-family: var(--qh-font-body);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--qh-body);
	margin: 0;
}

@media (min-width: 721px) {
	.qh-stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.qh-stat + .qh-stat {
		border-top: 0;
		border-left: 1px solid var(--qh-line-soft);
	}
}

/* ============================== Story ============================= */

.qh-story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

.qh-story .qh-display {
	margin: 24px 0 0;
	/* keep "From Northeast China" on one line like the original */
	font-size: clamp(2.1rem, 3.1vw, 2.9rem);
}

.qh-story .qh-zh {
	font-size: 15px;
	letter-spacing: .06em;
	margin: 30px 0 18px;
}

.qh-story .qh-lead {
	margin: 0 0 18px;
}

.qh-story .qh-btn {
	margin-top: 18px;
}

.qh-collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: start;
	padding-bottom: 40px; /* breathing room for the offset column */
}

.qh-collage-col {
	display: grid;
	gap: 16px;
}

.qh-collage-col--offset {
	margin-top: 40px;
	margin-bottom: -40px;
}

.qh-collage figure {
	margin: 0;
	overflow: hidden;
}

.qh-collage img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

@media (min-width: 921px) {
	.qh-story-grid {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
	}
}

/* ============================ Signature =========================== */

.qh-signature-head {
	text-align: center;
	margin-bottom: 56px;
}

.qh-signature-head .qh-display {
	margin: 24px 0 0;
}

.qh-signature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.qh-sig-card {
	overflow: hidden;
	transition: border-color .3s ease;
}

.qh-sig-card:hover {
	border-color: var(--qh-line);
}

.qh-sig-media {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.qh-sig-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.qh-sig-card:hover .qh-sig-media img {
	transform: scale(1.05);
}

.qh-sig-body {
	padding: 26px;
}

.qh-sig-zh {
	font-size: 13px;
	color: var(--qh-gold);
	letter-spacing: .1em;
	margin: 0 0 8px;
}

.qh-sig-title {
	font-family: var(--qh-font-display);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.25;
	color: var(--qh-cream);
	margin: 0 0 10px;
}

.qh-sig-desc {
	font-family: var(--qh-font-body);
	font-size: 14px;
	line-height: 1.7;
	color: var(--qh-body);
	margin: 0;
}

.qh-signature-foot {
	text-align: center;
	margin-top: 56px;
}

@media (min-width: 781px) {
	.qh-signature-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* =========================== Experience =========================== */

.qh-experience {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.qh-experience::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--qh-overlay);
}

.qh-experience-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qh-experience .qh-display {
	margin: 24px 0 0;
	max-width: 820px;
}

.qh-experience .qh-lead {
	margin: 28px auto 0;
}

.qh-experience .qh-btn {
	margin-top: 40px;
}

/* ============================= Noodles ============================ */

.qh-noodles-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: stretch;
}

.qh-noodles-photo {
	margin: 0;
	overflow: hidden;
}

.qh-noodles-photo img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.qh-noodles-text {
	align-self: center;
}

.qh-noodles .qh-display {
	margin: 24px 0 0;
}

.qh-noodles .qh-lead {
	margin: 26px 0 0;
}

.qh-mini-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 34px 0 36px;
}

.qh-mini-card {
	padding: 18px;
}

.qh-mini-title {
	font-family: var(--qh-font-display);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	color: var(--qh-cream);
	margin: 0 0 6px;
}

.qh-mini-caption {
	font-family: var(--qh-font-body);
	font-size: 12px;
	line-height: 1.5;
	color: var(--qh-body);
	margin: 0;
}

@media (max-width: 459px) {
	.qh-mini-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 921px) {
	.qh-noodles-grid {
		grid-template-columns: 1fr 1.1fr;
		gap: 80px;
	}
	.qh-noodles-photo img {
		aspect-ratio: auto;
		min-height: 100%;
	}
}

/* ========================== Gallery strip ========================= */

.qh-hgal-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 48px;
}

.qh-hgal-headline .qh-display {
	margin: 24px 0 0;
}

.qh-hgal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.qh-hgal-grid figure {
	margin: 0;
	overflow: hidden;
}

.qh-hgal-grid img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform .6s ease;
}

.qh-hgal-grid figure:hover img {
	transform: scale(1.05);
}

@media (min-width: 821px) {
	.qh-hgal-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* =============================== CTA ============================== */

.qh-home-cta {
	background: var(--qh-bg-2);
	border-top: 1px solid var(--qh-line-soft);
	text-align: center;
}

.qh-home-cta .qh-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qh-home-cta .qh-display {
	margin: 24px 0 0;
}

.qh-cta-meta {
	font-family: var(--qh-font-body);
	font-size: 14px;
	line-height: 1.9;
	color: var(--qh-body);
	max-width: 640px;
	margin: 26px auto 0;
}

.qh-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 38px;
}

/* ======================== Reduced motion ========================== */

@media (prefers-reduced-motion: reduce) {
	.qh-sig-media img,
	.qh-hgal-grid img {
		transition: none;
	}
	.qh-sig-card:hover .qh-sig-media img,
	.qh-hgal-grid figure:hover img {
		transform: none;
	}
}
