@font-face {
	font-family: "Cardo";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/cardo-normal-400.woff2") format("woff2");
}

@font-face {
	font-family: "Cardo";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/cardo-normal-700.woff2") format("woff2");
}

@font-face {
	font-family: "Instrument Sans";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/instrument-sans-variable.woff2") format("woff2");
}

:root {
	--fhk-forest: #0f2f25;
	--fhk-canopy: #1f4a38;
	--fhk-ivory: #f7f2e8;
	--fhk-linen: #fffaf0;
	--fhk-gold: #b99a5b;
	--fhk-gold-soft: #d7c08b;
	--fhk-charcoal: #1f211e;
	--fhk-muted: #66736a;
	--fhk-mist: #dfe5df;
	--fhk-clay: #9f7258;
	--fhk-white: #ffffff;
	--fhk-radius: 6px;
	--fhk-shadow: 0 24px 70px rgba(15, 47, 37, 0.15);
	--fhk-container: 1160px;
	--fhk-wide: 1440px;
	--fhk-header-height: 76px;
	--fhk-space-1: 16px;
	--fhk-space-2: 20px;
	--fhk-space-3: 28px;
	--fhk-space-4: 40px;
	--fhk-space-5: 56px;
	--fhk-font-body: "Instrument Sans", Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
	--fhk-font-heading: "Cardo", Georgia, "Times New Roman", "Noto Serif CJK SC", SimSun, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--fhk-header-height) + 20px);
}

body {
	margin: 0;
	padding-top: var(--fhk-header-height);
	background: var(--fhk-ivory);
	color: var(--fhk-charcoal);
	font-family: var(--fhk-font-body);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar {
	padding-top: calc(var(--fhk-header-height) + 32px);
}

.fhk-lang-zh {
	font-family: "Instrument Sans", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	display: block;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--fhk-gold);
	outline-offset: 4px;
}

.screen-reader-text,
.fhk-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fhk-skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--fhk-forest);
	color: var(--fhk-linen);
	clip: auto;
	border-radius: var(--fhk-radius);
}

.fhk-site-main {
	min-height: 60vh;
	background: var(--fhk-ivory);
}

.wp-site-blocks > * {
	margin-block-start: 0;
}

.fhk-container {
	width: min(calc(100% - 32px), var(--fhk-container));
	margin-inline: auto;
}

.fhk-wide-container {
	width: min(calc(100% - 32px), var(--fhk-wide));
	margin-inline: auto;
}

.fhk-header {
	position: fixed;
	z-index: 500;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(247, 242, 232, 0.94);
	border-bottom: 1px solid rgba(31, 74, 56, 0.14);
	backdrop-filter: blur(16px);
}

body.admin-bar .fhk-header {
	top: 32px;
}

body.fhk-menu-open {
	overflow: hidden;
}

.fhk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--fhk-header-height);
	width: min(calc(100% - 32px), var(--fhk-wide));
	margin-inline: auto;
	gap: var(--fhk-space-2);
}

.fhk-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: var(--fhk-forest);
	text-decoration: none;
}

.fhk-brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border: 1px solid rgba(185, 154, 91, 0.72);
	border-radius: 50%;
	background: var(--fhk-forest);
	color: var(--fhk-gold-soft);
	font-family: var(--fhk-font-heading);
	font-size: 16px;
	line-height: 1;
}

.fhk-brand__text {
	display: grid;
	gap: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0;
}

.fhk-nav {
	display: none;
}

.fhk-nav__list {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.fhk-nav__list a {
	color: var(--fhk-forest);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.fhk-nav__list a:hover {
	color: var(--fhk-clay);
}

.fhk-language {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid rgba(31, 74, 56, 0.16);
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.72);
}

.fhk-language a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 4px 9px;
	border-radius: 999px;
	color: var(--fhk-forest);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.fhk-language a.is-active {
	background: var(--fhk-forest);
	color: var(--fhk-linen);
}

.fhk-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(31, 74, 56, 0.22);
	border-radius: 50%;
	background: transparent;
	color: var(--fhk-forest);
	cursor: pointer;
}

.fhk-menu-toggle__line,
.fhk-menu-toggle__line::before,
.fhk-menu-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.fhk-menu-toggle__line {
	position: relative;
}

.fhk-menu-toggle__line::before,
.fhk-menu-toggle__line::after {
	position: absolute;
	left: 0;
}

.fhk-menu-toggle__line::before {
	top: -6px;
}

.fhk-menu-toggle__line::after {
	top: 6px;
}

.fhk-header.is-menu-open .fhk-menu-toggle__line {
	background: transparent;
}

.fhk-header.is-menu-open .fhk-menu-toggle__line::before {
	transform: translateY(6px) rotate(45deg);
}

.fhk-header.is-menu-open .fhk-menu-toggle__line::after {
	transform: translateY(-6px) rotate(-45deg);
}

.fhk-button,
.fhk-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: var(--fhk-radius);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fhk-button:hover {
	transform: translateY(-1px);
}

.fhk-button--gold {
	background: var(--fhk-gold);
	color: var(--fhk-forest);
}

.fhk-button--forest {
	background: var(--fhk-forest);
	color: var(--fhk-linen);
}

.fhk-button--ivory {
	border-color: rgba(247, 242, 232, 0.9);
	background: var(--fhk-linen);
	color: var(--fhk-forest);
	box-shadow: 0 14px 34px rgba(15, 47, 37, 0.18);
}

.fhk-button--ghost {
	border-color: var(--fhk-linen);
	background: var(--fhk-linen);
	color: var(--fhk-forest);
	box-shadow: 0 14px 34px rgba(15, 47, 37, 0.18);
}

.fhk-button--small {
	min-height: 40px;
	padding: 10px 14px;
	font-size: 13px;
}

.fhk-floating-cta {
	position: fixed;
	z-index: 90;
	right: 16px;
	bottom: max(16px, env(safe-area-inset-bottom));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100vw - 32px);
	min-height: 44px;
	padding: 12px 16px;
	border-radius: 999px;
	background: var(--fhk-forest);
	box-shadow: 0 16px 40px rgba(15, 47, 37, 0.24);
	color: var(--fhk-linen);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.fhk-show-floating-cta .fhk-floating-cta {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body.fhk-menu-open .fhk-floating-cta {
	opacity: 0;
	pointer-events: none;
}

.fhk-section {
	position: relative;
	padding: var(--fhk-space-4) 0;
	overflow: hidden;
}

.fhk-section--light {
	background: var(--fhk-ivory);
}

.fhk-section--linen {
	background: var(--fhk-linen);
}

.fhk-section--forest {
	background: var(--fhk-forest);
	color: var(--fhk-linen);
}

.fhk-eyebrow {
	margin: 0 0 10px;
	color: var(--fhk-gold);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0;
	word-spacing: 0.16em;
}

.fhk-section h1,
.fhk-section h2,
.fhk-section h3,
.fhk-page-title {
	margin: 0;
	font-family: var(--fhk-font-heading);
	font-weight: 400;
	letter-spacing: 0;
	text-wrap: pretty;
}

.fhk-section h1 {
	font-size: 48px;
	line-height: 1;
}

.fhk-section h2,
.fhk-page-title {
	font-size: 36px;
	line-height: 1.08;
}

.fhk-section h3 {
	font-size: 24px;
	line-height: 1.16;
}

.fhk-lang-zh .fhk-section h2,
.fhk-lang-zh .fhk-section h3,
.fhk-lang-zh .fhk-page-title {
	font-family: var(--fhk-font-body);
	font-weight: 650;
	line-height: 1.18;
}

.fhk-lede {
	margin: 14px 0 0;
	max-width: 720px;
	color: rgba(31, 33, 30, 0.82);
	font-size: 18px;
	line-height: 1.65;
}

.fhk-section--forest .fhk-lede {
	color: rgba(255, 250, 240, 0.78);
}

.fhk-hero {
	min-height: 600px;
	padding: 0;
	background: var(--fhk-forest);
	color: var(--fhk-linen);
}

.fhk-hero__media {
	position: absolute;
	inset: 0;
}

.fhk-hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 47, 37, 0.9), rgba(15, 47, 37, 0.48) 54%, rgba(15, 47, 37, 0.2));
	content: "";
}

.fhk-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fhk-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	min-height: 600px;
	padding: 56px 0 42px;
}

.fhk-hero__content {
	max-width: 760px;
}

.fhk-hero h1 {
	max-width: 720px;
	font-size: 56px;
}

.fhk-hero h1 span {
	display: block;
}

.fhk-hero__subtitle {
	margin: 14px 0 0;
	max-width: 700px;
	color: rgba(255, 250, 240, 0.9);
	font-size: 20px;
	line-height: 1.55;
}

.fhk-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.fhk-hero__facts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: 820px;
	margin-top: 24px;
}

.fhk-hero__fact {
	padding: 16px;
	border: 1px solid rgba(255, 250, 240, 0.22);
	border-radius: var(--fhk-radius);
	background: rgba(15, 47, 37, 0.42);
	backdrop-filter: blur(10px);
}

.fhk-hero__fact strong {
	display: block;
	color: var(--fhk-gold-soft);
	font-family: var(--fhk-font-heading);
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.fhk-hero__fact span {
	display: block;
	margin-top: 7px;
	color: rgba(255, 250, 240, 0.82);
	font-size: 13px;
	font-weight: 700;
}

.fhk-intro-grid,
.fhk-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fhk-space-3);
	align-items: center;
}

.fhk-section-header {
	max-width: 760px;
}

.fhk-stat-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 24px;
}

.fhk-stat {
	min-width: 0;
	padding: 22px;
	border: 1px solid rgba(31, 74, 56, 0.16);
	border-radius: var(--fhk-radius);
	background: rgba(255, 250, 240, 0.74);
}

.fhk-stat strong {
	display: block;
	color: var(--fhk-forest);
	font-family: var(--fhk-font-heading);
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	overflow-wrap: normal;
}

.fhk-stat span {
	display: block;
	margin-top: 10px;
	color: var(--fhk-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: break-word;
}

.fhk-image-frame {
	position: relative;
	overflow: hidden;
	border-radius: var(--fhk-radius);
	background: var(--fhk-mist);
	box-shadow: var(--fhk-shadow);
}

.fhk-image-frame img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.fhk-image-frame figcaption {
	padding: 10px 12px;
	background: rgba(255, 250, 240, 0.9);
	color: var(--fhk-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.fhk-image-frame--portrait img {
	aspect-ratio: 4 / 5;
}

.fhk-image-frame--contain img {
	object-fit: contain;
	background: var(--fhk-linen);
}

.fhk-plan-visuals {
	display: grid;
	gap: 14px;
}

.fhk-proof-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.fhk-proof-list li {
	display: grid;
	gap: 4px;
	padding: 14px 0;
	border-top: 1px solid rgba(31, 74, 56, 0.16);
}

.fhk-proof-list strong {
	color: var(--fhk-forest);
	font-size: 18px;
	line-height: 1.2;
}

.fhk-proof-list span {
	color: var(--fhk-muted);
}

.fhk-section--forest .fhk-proof-list li {
	border-top-color: rgba(255, 250, 240, 0.2);
}

.fhk-section--forest .fhk-proof-list strong {
	color: var(--fhk-gold-soft);
}

.fhk-section--forest .fhk-proof-list span {
	color: rgba(255, 250, 240, 0.74);
}

.fhk-feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
}

.fhk-source-grid,
.fhk-principle-grid,
.fhk-land-use,
.fhk-timeline-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
}

.fhk-source-card,
.fhk-principle,
.fhk-land-card,
.fhk-timeline-card,
.fhk-impact-card {
	min-width: 0;
	padding: 20px;
	border-radius: var(--fhk-radius);
	background: rgba(255, 250, 240, 0.82);
	border: 1px solid rgba(31, 74, 56, 0.14);
}

.fhk-section--forest .fhk-source-card,
.fhk-section--forest .fhk-principle,
.fhk-section--forest .fhk-land-card,
.fhk-section--forest .fhk-timeline-card,
.fhk-section--forest .fhk-impact-card {
	background: rgba(255, 250, 240, 0.08);
	border-color: rgba(255, 250, 240, 0.16);
}

.fhk-source-card strong,
.fhk-principle h3,
.fhk-land-card h3,
.fhk-timeline-card h3,
.fhk-impact-card h3 {
	display: block;
	color: inherit;
	font-size: 20px;
	line-height: 1.18;
}

.fhk-source-card p,
.fhk-principle p,
.fhk-land-card p,
.fhk-timeline-card p,
.fhk-impact-card p {
	margin: 10px 0 0;
	color: var(--fhk-muted);
	font-size: 15.5px;
	line-height: 1.68;
}

.fhk-section--forest .fhk-source-card p,
.fhk-section--forest .fhk-principle p,
.fhk-section--forest .fhk-land-card p,
.fhk-section--forest .fhk-timeline-card p,
.fhk-section--forest .fhk-impact-card p {
	color: rgba(255, 250, 240, 0.72);
}

.fhk-land-card strong,
.fhk-timeline-card strong {
	display: block;
	color: var(--fhk-forest);
	font-family: var(--fhk-font-heading);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
}

.fhk-section--forest .fhk-land-card strong,
.fhk-section--forest .fhk-timeline-card strong {
	color: var(--fhk-gold-soft);
}

.fhk-phase-visual {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 420px;
	padding: 24px;
	border: 1px solid rgba(255, 250, 240, 0.18);
	border-radius: var(--fhk-radius-lg);
	background: rgba(255, 250, 240, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.04);
}

.fhk-phase-visual h3 {
	max-width: 520px;
	margin: 16px 0 0;
	color: var(--fhk-linen);
	font-size: 38px;
	line-height: 1.05;
}

.fhk-phase-visual__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 32px;
}

.fhk-phase-visual__grid div {
	min-width: 0;
	padding: 16px;
	border: 1px solid rgba(255, 250, 240, 0.14);
	border-radius: var(--fhk-radius);
	background: rgba(255, 250, 240, 0.08);
}

.fhk-phase-visual__grid strong,
.fhk-phase-visual__grid span {
	display: block;
}

.fhk-phase-visual__grid strong {
	color: var(--fhk-gold-soft);
	font-family: var(--fhk-font-heading);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
}

.fhk-phase-visual__grid span {
	margin-top: 8px;
	color: rgba(255, 250, 240, 0.72);
	font-size: 13px;
	line-height: 1.35;
}

.fhk-timeline-card {
	position: relative;
}

.fhk-timeline-card::before {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: var(--fhk-forest);
	color: var(--fhk-linen);
	font-size: 13px;
	font-weight: 850;
	content: attr(data-step);
}

.fhk-section--forest .fhk-timeline-card::before {
	background: var(--fhk-gold);
	color: var(--fhk-forest);
}

.fhk-feature {
	min-width: 0;
	padding: 20px;
	border-radius: var(--fhk-radius);
	background: rgba(255, 250, 240, 0.84);
	border: 1px solid rgba(31, 74, 56, 0.14);
}

.fhk-section--forest .fhk-feature {
	background: rgba(255, 250, 240, 0.08);
	border-color: rgba(255, 250, 240, 0.16);
}

.fhk-feature h3 {
	color: inherit;
	font-size: 22px;
}

.fhk-feature p {
	margin: 10px 0 0;
	color: var(--fhk-muted);
}

.fhk-section--forest .fhk-feature p {
	color: rgba(255, 250, 240, 0.72);
}

.fhk-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
}

.fhk-gallery figure {
	position: relative;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: var(--fhk-radius);
	background: var(--fhk-mist);
}

.fhk-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fhk-gallery__contain img {
	object-fit: contain;
	background: var(--fhk-linen);
}

.fhk-gallery figcaption {
	position: absolute;
	left: 12px;
	bottom: 12px;
	max-width: calc(100% - 24px);
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(15, 47, 37, 0.8);
	color: var(--fhk-linen);
	font-size: 12px;
	font-weight: 750;
}

.fhk-map-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fhk-space-3);
	align-items: stretch;
	margin-top: 24px;
}

.fhk-map {
	min-height: 300px;
	overflow: hidden;
	border: 1px solid rgba(31, 74, 56, 0.16);
	border-radius: var(--fhk-radius);
	background: var(--fhk-mist);
}

.fhk-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	border: 0;
}

.fhk-location-actions {
	margin-top: 20px;
}

.fhk-contact-panel {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fhk-space-3);
	align-items: start;
	padding: var(--fhk-space-3);
	border-radius: var(--fhk-radius);
	background: var(--fhk-linen);
	box-shadow: var(--fhk-shadow);
	color: var(--fhk-charcoal);
}

.fhk-contact-panel h2 {
	color: var(--fhk-forest);
}

.fhk-contact-panel .fhk-lede {
	color: rgba(31, 33, 30, 0.78);
}

.fhk-contact-panel .fhk-proof-list li {
	border-top-color: rgba(31, 74, 56, 0.16);
}

.fhk-contact-panel .fhk-proof-list strong {
	color: var(--fhk-forest);
}

.fhk-contact-panel .fhk-proof-list span {
	color: var(--fhk-muted);
}

.fhk-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.fhk-form-preview {
	display: grid;
	gap: 12px;
}

.fhk-form-preview label {
	display: grid;
	gap: 6px;
	color: var(--fhk-forest);
	font-size: 13px;
	font-weight: 800;
}

.fhk-form-preview input,
.fhk-form-preview select,
.fhk-form-preview textarea {
	width: 100%;
	min-height: 46px;
	padding: 12px;
	border: 1px solid rgba(31, 74, 56, 0.18);
	border-radius: var(--fhk-radius);
	background: var(--fhk-white);
	color: var(--fhk-charcoal);
	font: inherit;
}

.fhk-form-preview textarea {
	min-height: 98px;
	resize: vertical;
}

.fhk-note {
	margin-top: 12px;
	color: var(--fhk-muted);
	font-size: 13px;
	line-height: 1.5;
}

.fhk-footer {
	background: #0b221b;
	color: var(--fhk-linen);
}

.fhk-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fhk-space-3);
	width: min(calc(100% - 32px), var(--fhk-wide));
	margin-inline: auto;
	padding: var(--fhk-space-4) 0 40px;
}

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

.fhk-footer__brand p {
	max-width: 300px;
	margin: 18px 0 0;
	color: rgba(255, 250, 240, 0.72);
}

.fhk-footer h2 {
	margin: 0 0 14px;
	color: var(--fhk-gold-soft);
	font-family: var(--fhk-font-body);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.fhk-footer__column--social {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.fhk-footer ul {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.fhk-footer li,
.fhk-footer a,
.fhk-footer p {
	color: rgba(255, 250, 240, 0.78);
	font-size: 14px;
	line-height: 1.55;
}

.fhk-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.fhk-social a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 250, 240, 0.2);
	border-radius: 50%;
	color: var(--fhk-linen);
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fhk-social a:hover {
	background: var(--fhk-gold);
	border-color: var(--fhk-gold);
	color: var(--fhk-forest);
	transform: translateY(-1px);
}

.fhk-social svg {
	width: 20px;
	height: 20px;
}

.fhk-social svg rect,
.fhk-social svg circle,
.fhk-social svg path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.fhk-social a[aria-label="YouTube"] svg path:last-child,
.fhk-social a[aria-label="Facebook"] svg path,
.fhk-social a[aria-label="TikTok"] svg path {
	fill: currentColor;
	stroke: none;
}

.fhk-footer__brochure {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 11px 18px;
	margin-top: 18px;
	border: 1px solid rgba(198, 158, 83, 0.75);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--fhk-gold), var(--fhk-gold-soft));
	color: var(--fhk-forest);
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.fhk-footer__brochure:hover {
	transform: translateY(-1px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.fhk-footer__brochure-icon {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(10, 50, 38, 0.12);
}

.fhk-footer__brochure svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.fhk-language--footer {
	background: rgba(255, 250, 240, 0.08);
	border-color: rgba(255, 250, 240, 0.16);
}

.fhk-language--footer a {
	color: var(--fhk-linen);
}

.fhk-language--footer a.is-active {
	background: var(--fhk-gold);
	color: var(--fhk-forest);
}

.fhk-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: min(calc(100% - 32px), var(--fhk-wide));
	margin-inline: auto;
	padding: 18px 0 24px;
	border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.fhk-footer__bottom p {
	margin: 0;
	font-size: 12px;
}

.fhk-footer__column a,
.fhk-footer__bottom a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
}

.fhk-page__inner {
	padding: var(--fhk-space-4) 0;
}

@media (max-width: 1179px) {
	.fhk-header.is-menu-open .fhk-nav {
		display: grid;
	}

	.fhk-nav {
		position: absolute;
		top: var(--fhk-header-height);
		left: 0;
		right: 0;
		max-height: calc(100vh - var(--fhk-header-height));
		overflow-y: auto;
		gap: 18px;
		padding: 20px 16px 24px;
		background: var(--fhk-ivory);
		border-bottom: 1px solid rgba(31, 74, 56, 0.14);
		box-shadow: 0 18px 50px rgba(15, 47, 37, 0.12);
	}

	.fhk-nav__list {
		display: grid;
		gap: 0;
	}

	.fhk-nav__list a {
		display: block;
		padding: 12px 0;
	}
}

@media (max-width: 782px) {
	body.admin-bar {
		padding-top: calc(var(--fhk-header-height) + 46px);
	}

	body.admin-bar .fhk-header {
		top: 46px;
	}
}

@media (min-width: 640px) {
	.fhk-container,
	.fhk-wide-container,
	.fhk-header__inner,
	.fhk-footer__inner,
	.fhk-footer__bottom {
		width: min(calc(100% - 48px), var(--fhk-container));
	}

	.fhk-wide-container,
	.fhk-header__inner,
	.fhk-footer__inner,
	.fhk-footer__bottom {
		width: min(calc(100% - 48px), var(--fhk-wide));
	}

	.fhk-hero__facts,
	.fhk-stat-grid,
	.fhk-feature-grid,
	.fhk-source-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 639px) {
	.fhk-section h1,
	.fhk-hero h1 {
		max-width: 100%;
		font-size: clamp(40px, 10.5vw, 46px);
		overflow-wrap: break-word;
	}

	.fhk-hero__subtitle,
	.fhk-lede {
		font-size: 17px;
	}

	.fhk-hero__actions,
	.fhk-contact-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.fhk-hero__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 20px;
	}

	.fhk-hero__fact {
		padding: 13px 12px;
	}

	.fhk-hero__fact:nth-child(3) {
		grid-column: 1 / -1;
	}

	.fhk-hero__fact strong {
		font-size: 24px;
	}

	.fhk-hero__fact span {
		font-size: 12px;
		line-height: 1.25;
	}

	.fhk-phase-visual {
		min-height: 0;
		padding: 20px;
	}

	.fhk-phase-visual h3 {
		font-size: 30px;
	}

	.fhk-phase-visual__grid {
		grid-template-columns: 1fr;
		margin-top: 24px;
	}

	.fhk-button {
		width: 100%;
	}

	.fhk-floating-cta {
		left: auto;
		right: 16px;
		width: 54px;
		min-width: 54px;
		height: 54px;
		min-height: 54px;
		padding: 0;
		border-radius: 50%;
		font-size: 0;
	}

	.fhk-floating-cta::after {
		content: "WA";
		font-size: 13px;
		font-weight: 850;
		letter-spacing: 0;
	}
}

@media (min-width: 768px) {
	:root {
		--fhk-header-height: 82px;
	}

	.fhk-section {
		padding: var(--fhk-space-5) 0;
	}

	.fhk-section h1 {
		font-size: 64px;
	}

	.fhk-section h2,
	.fhk-page-title {
		font-size: 46px;
	}

	.fhk-hero,
	.fhk-hero__inner {
		min-height: 660px;
	}

	.fhk-hero h1 {
		font-size: 76px;
	}

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

	.fhk-intro-grid,
	.fhk-split,
	.fhk-map-grid,
	.fhk-contact-panel {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

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

	.fhk-stat {
		padding: 24px 18px;
	}

	.fhk-stat strong {
		font-size: 34px;
	}

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

	.fhk-source-grid,
	.fhk-principle-grid,
	.fhk-land-use,
	.fhk-timeline-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fhk-source-card strong,
	.fhk-principle h3,
	.fhk-land-card h3,
	.fhk-timeline-card h3,
	.fhk-impact-card h3 {
		font-size: 22px;
	}

	.fhk-source-card p,
	.fhk-principle p,
	.fhk-land-card p,
	.fhk-timeline-card p,
	.fhk-impact-card p {
		font-size: 16px;
	}

	.fhk-land-card strong,
	.fhk-timeline-card strong {
		font-size: 34px;
	}

	.fhk-gallery {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.fhk-gallery figure {
		min-height: 235px;
	}

	.fhk-gallery figure:nth-child(1),
	.fhk-gallery figure:nth-child(4) {
		grid-column: span 3;
	}

	.fhk-gallery figure:nth-child(2),
	.fhk-gallery figure:nth-child(3),
	.fhk-gallery figure:nth-child(5),
	.fhk-gallery figure:nth-child(6),
	.fhk-gallery figure:nth-child(7),
	.fhk-gallery figure:nth-child(8) {
		grid-column: span 3;
	}

	.fhk-footer__inner {
		grid-template-columns: 1.5fr 1fr 1fr 0.75fr;
	}

	.fhk-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.fhk-stat-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.fhk-source-grid,
	.fhk-principle-grid,
	.fhk-land-use,
	.fhk-timeline-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.fhk-menu-toggle {
		display: none;
	}

	.fhk-nav {
		display: flex;
		align-items: center;
		gap: 18px;
	}

	.fhk-floating-cta {
		display: none;
	}
}

@media (min-width: 1280px) {
	.fhk-section h1 {
		font-size: 72px;
	}

	.fhk-section h2,
	.fhk-page-title {
		font-size: 54px;
	}

	.fhk-hero h1 {
		font-size: 88px;
	}

	.fhk-gallery figure:nth-child(1),
	.fhk-gallery figure:nth-child(2) {
		grid-column: span 3;
		min-height: 300px;
	}

	.fhk-gallery figure:nth-child(n+3) {
		grid-column: span 2;
	}
}

@media (max-width: 380px) {
	.fhk-section h1 {
		font-size: 40px;
	}

	.fhk-section h2,
	.fhk-page-title {
		font-size: 31px;
	}

	.fhk-hero h1 {
		font-size: 40px;
	}

}

.fhk-gallery--compact {
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
}

.fhk-gallery--compact figure,
.fhk-gallery--compact figure:nth-child(n) {
	grid-column: auto;
	min-height: 0;
	aspect-ratio: 4 / 3;
}

.fhk-gallery--compact.fhk-gallery--modular figure,
.fhk-gallery--compact.fhk-gallery--modular figure:nth-child(n) {
	aspect-ratio: 4 / 5;
}

.fhk-gallery--compact .fhk-gallery__contain {
	background: #f8f5ee;
}

.fhk-gallery--compact .fhk-gallery__contain img {
	object-fit: contain;
	padding: 8px;
}

.fhk-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.fhk-social svg {
	display: block;
	flex: 0 0 auto;
	margin: auto;
}

.fhk-social a[aria-label="Facebook"] svg {
	transform: translate(1px, -1px) scale(0.92);
}

.fhk-social a[aria-label="TikTok"] svg {
	transform: translateX(1px);
}

.fhk-footer a.fhk-footer__brochure,
.fhk-footer a.fhk-footer__brochure:visited {
	border-color: transparent;
	background: var(--fhk-gold);
	color: var(--fhk-forest);
	box-shadow: none;
}

.fhk-footer a.fhk-footer__brochure:hover {
	color: var(--fhk-forest);
	box-shadow: none;
}

.fhk-footer__brochure-icon {
	background: rgba(15, 47, 37, 0.12);
}

@media (min-width: 768px) {
	.fhk-gallery--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.fhk-gallery--compact {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fhk-gallery--compact.fhk-gallery--modular {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
