/**
 * EuroHub consulting — index.html design system + 实例/app fluid hero
 */
:root {
	--eh-ink-dark: #1b3a2a;
	--eh-ink-mid: #2d5a3d;
	--eh-ink-light: #4a7c5f;
	--eh-cream: #f4ede0;
	--eh-cream-2: #ede4d3;
	--eh-cream-3: #e5dac4;
	--eh-copper: #b5642f;
	--eh-copper-2: #c87f48;
	--eh-copper-pale: #e3b483;
	--eh-tx: #23291f;
	--eh-tx-mid: #46483f;
	--eh-tx-mute: #6c6a5f;
	--eh-line: rgba(181, 100, 47, 0.22);
	--eh-container: 1200px;
	--eh-serif: "Cormorant Garamond", Georgia, serif;
	--eh-serif-sc: "Noto Serif SC", serif;
	--eh-sans: "Inter", "Noto Sans SC", -apple-system, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.eh-consulting {
	margin: 0;
	font-family: var(--eh-sans);
	background: var(--eh-cream);
	color: var(--eh-tx);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	scroll-padding-top: 88px;
}

.eh-container {
	width: min(100% - 2.75rem, var(--eh-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* —— Nav (index.html .nav) —— */
.eh-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(244, 237, 224, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--eh-line);
}

.eh-header__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-height: 76px;
	padding: 0;
}

.eh-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	text-decoration: none;
	color: var(--eh-ink-dark);
}

.eh-brand__mark {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--eh-ink-dark), var(--eh-ink-light));
	border-radius: 8px;
}

.eh-brand__img {
	height: 64px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	display: block;
}

.eh-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.eh-brand__text strong {
	font-family: var(--eh-serif);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--eh-ink-dark);
}

.eh-brand__text small {
	font-family: var(--eh-serif-sc);
	font-style: normal;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 2px;
	color: var(--eh-copper);
	margin-top: 3px;
	text-transform: uppercase;
}

.eh-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin-left: auto;
	border: 1px solid var(--eh-line);
	background: transparent;
	cursor: pointer;
}

.eh-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	background: var(--eh-ink-dark);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.eh-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.eh-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.eh-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.eh-nav {
	display: none;
}

.eh-nav.is-open {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--eh-cream);
	padding: 1rem 1.25rem 1.25rem;
	border-bottom: 1px solid var(--eh-line);
	box-shadow: 0 18px 50px rgba(27, 58, 42, 0.12);
}

.eh-nav__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.eh-nav__list a {
	display: block;
	padding: 0.55rem 0;
	font-size: 13.5px;
	color: var(--eh-tx-mid);
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: color 0.2s;
}

.eh-nav__list a:hover {
	color: var(--eh-copper);
}

.eh-nav__list a.is-current,
.eh-nav__list li.is-current > a {
	color: var(--eh-copper);
}

.eh-nav__list a span {
	display: block;
	font-size: 11px;
	color: var(--eh-tx-mute);
	font-family: var(--eh-serif-sc);
	margin-top: 2px;
}

.eh-nav__cta {
	width: 100%;
	text-align: center;
}

@media (min-width: 992px) {
	.eh-menu-toggle {
		display: none;
	}

	.eh-nav {
		display: flex;
		align-items: center;
		gap: 1.5rem;
		margin-left: auto;
		position: static;
		padding: 0;
		background: transparent;
		border: none;
		box-shadow: none;
	}

	.eh-nav__list {
		display: flex;
		align-items: center;
		gap: 1.75rem;
		margin: 0;
	}

	.eh-nav__list a {
		padding: 1.75rem 0;
	}

	.eh-nav__list a span {
		display: none;
	}

	.eh-nav__cta {
		width: auto;
		flex-shrink: 0;
	}
}

/* —— Buttons —— */
.eh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 34px;
	font-size: 13px;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
	font-family: var(--eh-sans);
	font-weight: 400;
}

.eh-btn--primary {
	background: var(--eh-copper);
	color: var(--eh-cream);
}

.eh-btn--primary:hover {
	background: var(--eh-ink-dark);
}

.eh-nav__cta.eh-btn--primary {
	padding: 11px 22px;
	font-size: 12.5px;
	letter-spacing: 0.6px;
}

.eh-btn--ghost {
	border: 1px solid var(--eh-ink-dark);
	color: var(--eh-ink-dark);
	background: transparent;
	padding: 14px 30px;
}

.eh-btn--ghost:hover {
	background: var(--eh-ink-dark);
	color: var(--eh-cream);
}

/* —— Hero + fluid (index layout, 实例/app animation) —— */
.eh-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--eh-cream);
	padding: 0;
}

.eh-hero__fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	z-index: 0;
}

.eh-hero__fallback.is-hidden {
	display: none;
}

.eh-hero--fluid .eh-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
	object-fit: cover;
}

.eh-hero--fluid .eh-hero__canvas.is-hidden {
	display: none;
}

.eh-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		100deg,
		var(--eh-cream) 0%,
		rgba(244, 237, 224, 0.92) 30%,
		rgba(244, 237, 224, 0.55) 52%,
		rgba(244, 237, 224, 0) 72%
	);
}

.eh-hero__grid {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 4rem 0;
}

.eh-hero__content {
	max-width: 600px;
}

.eh-eyebrow {
	font-family: var(--eh-serif);
	font-size: 14px;
	letter-spacing: 4px;
	color: var(--eh-copper);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}

.eh-eyebrow::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--eh-copper);
	flex-shrink: 0;
}

.eh-eyebrow--center {
	justify-content: center;
}

.eh-hero__kicker,
.eh-hero .eh-eyebrow {
	font-family: var(--eh-serif);
	font-size: 14px;
	letter-spacing: 4px;
	color: var(--eh-copper);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}

.eh-hero__kicker::before,
.eh-hero .eh-eyebrow::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--eh-copper);
}

.eh-hero__title-zh {
	font-family: var(--eh-serif-sc);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 300;
	color: var(--eh-ink-dark);
	letter-spacing: 3px;
	line-height: 1.35;
	margin: 0;
}

.eh-hero__title-en {
	font-family: var(--eh-serif);
	font-size: clamp(22px, 3vw, 34px);
	font-style: italic;
	color: var(--eh-copper);
	margin: 6px 0 0;
	letter-spacing: 0.5px;
	font-weight: 400;
	line-height: 1.3;
}

.eh-hero__tagline {
	font-family: var(--eh-serif-sc);
	font-size: 14px;
	color: var(--eh-tx-mid);
	margin: 10px 0 0;
	line-height: 1.7;
	max-width: 520px;
}

.eh-hero__desc {
	font-size: 15.5px;
	color: var(--eh-tx-mid);
	margin: 14px 0 38px;
	max-width: 480px;
	line-height: 1.9;
}

.eh-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.eh-hero__footnote {
	margin: 1.1rem 0 0;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--eh-tx-mute);
	max-width: 36rem;
	line-height: 1.6;
}

@media (max-width: 760px) {
	.eh-hero__shade {
		background: linear-gradient(180deg, rgba(244, 237, 224, 0.72), rgba(244, 237, 224, 0.92));
	}
}

/* —— Homepage section bands (distinct modules on scroll) —— */
.eh-home-band {
	position: relative;
	isolation: isolate;
}

.eh-home-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--eh-band-image);
	background-size: cover;
	background-position: center;
	opacity: 0.14;
	pointer-events: none;
}

.eh-home-band--plain::before,
.eh-home-band--insights::before,
.eh-home-band--contact::before {
	display: none;
}

.eh-home-band--services {
	background: var(--eh-cream-2);
}

.eh-home-band--services::before {
	opacity: 0.2;
}

.eh-home-band--about {
	background: var(--eh-cream);
}

.eh-home-band--about::before {
	opacity: 0.22;
}

.eh-home-band--faq {
	background: var(--eh-cream);
}

.eh-home-band--faq::before {
	opacity: 0.12;
}

.eh-home-band__inner {
	position: relative;
	z-index: 1;
}

.eh-home-about {
	padding: 96px 0;
}

.eh-home-about__body {
	max-width: 720px;
}

.eh-home-about__body p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--eh-tx-mid);
	margin: 0 0 1.25rem;
}

.eh-home-about__more {
	margin-top: 2rem;
}

.eh-home-contact {
	padding: 96px 0 108px;
	background: var(--eh-cream);
}

.eh-home-contact__head {
	margin-bottom: 2.5rem;
}

.eh-home-contact .eh-contact-layout {
	margin-bottom: 0;
}

.eh-home-contact__book {
	text-align: center;
	margin: 2.5rem 0 0;
}

.eh-section-head__title--display {
	font-size: clamp(42px, 7vw, 76px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-top: 12px;
	margin-bottom: 16px;
}

/* —— Services (index .services / .svc-grid) —— */
.eh-services {
	padding: 108px 0;
}

.eh-section-head {
	max-width: 760px;
	margin-bottom: 60px;
}

.eh-section-head--center {
	margin-inline: auto;
	text-align: center;
}

.eh-section-head__title {
	font-family: var(--eh-serif);
	font-size: clamp(30px, 4vw, 44px);
	color: var(--eh-ink-dark);
	font-weight: 500;
	letter-spacing: 0.3px;
	margin: 10px 0 6px;
}

.eh-section-head__zh {
	font-family: var(--eh-serif-sc);
	font-size: 16px;
	color: var(--eh-copper);
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
}

.eh-section-head__intro {
	font-size: 15px;
	color: var(--eh-tx-mid);
	margin-top: 18px;
	line-height: 1.95;
}

.eh-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	border: 1px solid var(--eh-line);
	background: var(--eh-line);
}

.eh-service-card {
	background: var(--eh-cream);
	padding: 46px 42px;
	position: relative;
	transition: background 0.25s;
	text-align: left;
}

.eh-service-card:hover {
	background: var(--eh-cream-3);
}

.eh-service-card__accent,
.eh-service-card__icon {
	display: none;
}

.eh-service-card__num {
	font-family: var(--eh-serif);
	font-size: 15px;
	color: var(--eh-copper);
	letter-spacing: 2px;
	display: block;
	margin-bottom: 0;
}

.eh-service-card__thumb {
	margin: -20px -20px 16px;
	overflow: hidden;
}

.eh-service-card__thumb img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
}

.eh-service-card__title {
	font-family: var(--eh-serif);
	font-size: 25px;
	color: var(--eh-ink-dark);
	font-weight: 600;
	margin: 14px 0 4px;
}

.eh-service-card__sub {
	font-family: var(--eh-serif-sc);
	font-size: 13.5px;
	color: var(--eh-copper-2);
	letter-spacing: 1px;
	margin: 0 0 18px;
}

.eh-service-card__desc {
	font-size: 14px;
	color: var(--eh-tx-mid);
	line-height: 1.9;
	margin: 0;
}

.eh-service-card--link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.eh-service-card--link:hover {
	background: var(--eh-cream-3);
}

.eh-service-card--link:focus-visible {
	outline: 2px solid var(--eh-copper);
	outline-offset: -2px;
}

.eh-service-card__more {
	display: inline-block;
	margin-top: 20px;
	font-size: 12px;
	color: var(--eh-copper);
	letter-spacing: 0.5px;
	border-top: 1px dashed var(--eh-line);
	padding-top: 16px;
	width: 100%;
}

/* —— Service article (single post) —— */
.eh-article-wrap {
	padding: 48px 0 108px;
	background: var(--eh-cream);
}

.eh-article__inner {
	max-width: 760px;
}

.eh-article__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--eh-copper);
	text-decoration: none;
	margin-bottom: 36px;
	letter-spacing: 0.4px;
}

.eh-article__back-zh {
	font-family: var(--eh-serif-sc);
	color: var(--eh-tx-mute);
	font-size: 12px;
}

.eh-article__num {
	font-family: var(--eh-serif);
	font-size: 15px;
	color: var(--eh-copper);
	letter-spacing: 2px;
	margin: 0 0 8px;
}

.eh-article__title {
	font-family: var(--eh-serif);
	font-size: clamp(32px, 4vw, 48px);
	color: var(--eh-ink-dark);
	font-weight: 600;
	line-height: 1.25;
	margin: 10px 0 6px;
}

.eh-article__title-zh {
	font-family: var(--eh-serif-sc);
	font-size: 16px;
	color: var(--eh-copper-2);
	letter-spacing: 2px;
	margin: 0 0 28px;
}

.eh-article__hero {
	margin: 0 0 36px;
	border: 1px solid var(--eh-line);
	overflow: hidden;
}

.eh-article__hero img {
	width: 100%;
	height: auto;
	display: block;
}

.eh-article__content {
	font-size: 15.5px;
	color: var(--eh-tx-mid);
	line-height: 1.95;
}

.eh-article__content h2,
.eh-article__content h3 {
	font-family: var(--eh-serif);
	color: var(--eh-ink-dark);
	font-weight: 600;
	margin: 2rem 0 0.75rem;
}

.eh-article__content p {
	margin: 0 0 1.25rem;
}

.eh-article__content ul {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.eh-article__content li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
}

.eh-article__content li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--eh-copper);
}

.eh-article__content .eh-lead {
	font-family: var(--eh-serif);
	font-size: 18px;
	color: var(--eh-ink-dark);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.eh-article__content .eh-lead-zh {
	font-family: var(--eh-serif-sc);
	font-size: 14px;
	color: var(--eh-tx-mute);
	margin: -0.5rem 0 1.25rem;
}

.eh-article__excerpt {
	font-size: 16px;
	color: var(--eh-tx-mid);
	margin: 0.75rem 0 0;
	line-height: 1.7;
}

.eh-article__footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--eh-line);
}

.eh-article__footer p {
	color: var(--eh-tx-mid);
	margin: 0 0 1.25rem;
}

.eh-article__footer--insights h2 {
	font-family: var(--eh-serif);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 0.75rem;
	color: var(--eh-ink-dark);
}

.eh-article__footer--insights .eh-faq-form {
	max-width: 560px;
}

/* —— WordPress pages (About, Contact, …) —— */
.eh-page-wrap {
	padding: 48px 0 108px;
	background: var(--eh-cream);
}

.eh-page__inner {
	max-width: 840px;
}

.eh-page__title {
	font-family: var(--eh-serif);
	font-size: clamp(32px, 4vw, 48px);
	color: var(--eh-ink-dark);
	font-weight: 600;
	line-height: 1.25;
	margin: 10px 0 6px;
}

.eh-page__title--display {
	font-size: clamp(42px, 7vw, 76px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-top: 12px;
	margin-bottom: 16px;
}

.eh-page__subtitle {
	font-family: var(--eh-serif-sc);
	font-size: 16px;
	color: var(--eh-copper-2);
	letter-spacing: 2px;
	margin: 0 0 28px;
}

.eh-page__hero {
	margin: 0 0 36px;
	border: 1px solid var(--eh-line);
	overflow: hidden;
}

.eh-page__hero img {
	width: 100%;
	height: auto;
	display: block;
}

.eh-page__content,
.eh-page__content.entry-content {
	font-size: 15.5px;
	color: var(--eh-tx-mid);
	line-height: 1.95;
}

.eh-page__content h2,
.eh-page__content h3,
.eh-page__content .eh-lead {
	font-family: var(--eh-serif);
	color: var(--eh-ink-dark);
	font-weight: 600;
}

.eh-page__content .eh-lead,
.eh-page__content p.eh-lead {
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.eh-page__content p {
	margin: 0 0 1.25rem;
}

.eh-page__content a {
	color: var(--eh-copper);
}

.eh-page__content ul {
	margin: 0 0 1.5rem;
	padding-left: 1.2rem;
}

/* —— Contact layout (split: panel + map, impact5r-style) —— */
.eh-contact-layout {
	margin: 0 0 3rem;
}

.eh-contact-layout--split {
	display: grid;
	gap: 2rem;
	align-items: stretch;
}

.eh-contact-layout__title {
	font-family: var(--eh-serif);
	font-size: clamp(32px, 4.5vw, 44px);
	font-weight: 600;
	color: var(--eh-ink-dark);
	margin: 0 0 1.75rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.eh-contact-details {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.eh-contact-details__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 1.35rem;
}

.eh-contact-details__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--eh-copper);
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
}

.eh-contact-details__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--eh-tx-mid);
}

.eh-contact-details__text strong {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--eh-tx-mute);
	font-weight: 500;
}

.eh-contact-details__text a {
	color: var(--eh-ink-dark);
	font-size: 17px;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid var(--eh-line);
}

.eh-contact-details__text a:hover {
	color: var(--eh-copper);
	border-color: var(--eh-copper);
}

.eh-contact-details__line {
	display: block;
}

.eh-contact-layout__panel .eh-contact-form {
	margin-top: 0.5rem;
}

.eh-contact-layout__map {
	width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.eh-contact-layout__map .eh-map {
	margin: 0;
	flex: 1;
	width: 100%;
	min-height: 280px;
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
}

.eh-contact-layout__map .eh-map--dual {
	position: relative;
	min-height: 280px;
	height: 100%;
}

.eh-contact-layout__map .eh-map__frame {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
}

.eh-contact-layout__map .eh-map__frame--osm {
	display: none;
}

.eh-map__open {
	margin: 0.75rem 0 0;
	font-size: 13px;
}

.eh-map__open a {
	color: var(--eh-copper);
	text-decoration: none;
	font-weight: 500;
}

.eh-map__open a:hover {
	text-decoration: underline;
}

@media (min-width: 960px) {
	.eh-contact-layout--split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 3rem;
	}

	.eh-contact-layout__map .eh-map--dual {
		min-height: 520px;
	}

	.eh-contact-layout__map .eh-map__frame {
		min-height: 520px;
	}
}

@media (max-width: 959px) {
	.eh-contact-layout--split {
		grid-template-columns: 1fr;
	}

	.eh-contact-layout__map {
		order: -1;
	}
}

/* Inline contact form (underline fields, reference layout) */
.eh-form--inline {
	margin: 0;
}

.eh-form--inline .eh-form__row {
	grid-template-columns: 1fr;
	gap: 0;
}

.eh-form--inline .eh-form__field label {
	font-family: var(--eh-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--eh-ink-dark);
	margin: 0 0 8px;
}

.eh-form--inline .eh-form__field label span {
	display: none;
}

.eh-form--inline .eh-form__field input,
.eh-form--inline .eh-form__field select,
.eh-form--inline .eh-form__field textarea {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--eh-line);
	border-radius: 0;
	padding: 10px 0 12px;
	font-size: 15px;
}

.eh-form--inline .eh-form__field input:focus,
.eh-form--inline .eh-form__field select:focus,
.eh-form--inline .eh-form__field textarea:focus {
	border-bottom-color: var(--eh-copper);
	box-shadow: none;
}

.eh-form--inline .eh-form__field textarea {
	min-height: 120px;
	resize: vertical;
}

.eh-form--inline .eh-form__field--enquiry {
	margin-top: 0.5rem;
}

.eh-form--inline .eh-form__note {
	margin: 1rem 0 1.25rem;
}

.eh-form--inline .eh-form__submit {
	width: 100%;
	background: transparent;
	color: var(--eh-ink-dark);
	border: 1px solid var(--eh-ink-dark);
	padding: 14px 24px;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.eh-form--inline .eh-form__submit:hover {
	background: var(--eh-ink-dark);
	color: var(--eh-cream);
	border-color: var(--eh-ink-dark);
}

/* Homepage / split contact — compact fields (reference: name, email, message) */
.eh-form--compact .eh-form__row,
.eh-form--compact .eh-form__field--enquiry {
	display: none;
}

.eh-form--compact .eh-form__field textarea {
	min-height: 140px;
}

.eh-home-contact .eh-contact-layout__panel {
	display: flex;
	flex-direction: column;
}

.eh-home-contact .eh-contact-details {
	margin-bottom: 1.5rem;
}

.eh-home-contact .eh-contact-layout__title {
	margin-bottom: 1.25rem;
}

.eh-map--dual.is-osm-fallback .eh-map__frame--google {
	display: none;
}

.eh-map--dual.is-osm-fallback .eh-map__frame--osm {
	display: block;
}

/* Contact page — single Get In Touch heading inside layout */
.eh-page--contact .eh-page__head {
	display: none;
}

.eh-page--contact .eh-page__inner {
	max-width: var(--eh-container, 1200px);
}

.eh-page--contact .eh-page__content {
	margin-top: 0;
}

.eh-contact-book {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--eh-line);
	text-align: center;
}

.eh-contact-book__title {
	font-family: var(--eh-serif);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 500;
	margin: 0 0 12px;
	color: var(--eh-ink-dark);
}

.eh-contact-book__lead {
	max-width: 560px;
	margin: 0 auto 1.5rem;
	font-size: 15px;
	line-height: 1.75;
	color: var(--eh-tx-mid);
}

/* Legacy contact info box (unused) */
.eh-contact-info {
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
	padding: 28px 32px;
	margin: 1.5rem 0 2rem;
}

.eh-contact-info p {
	margin-bottom: 1rem;
}

.eh-services--embedded {
	padding: 0;
	background: transparent;
	margin: 2rem 0 0;
}

.eh-services--embedded .eh-services__grid {
	margin-top: 0;
}

@media (min-width: 640px) {
	.eh-services__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.eh-services__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 980px) {
	.eh-services {
		padding: 72px 0;
	}
}

/* —— Stats (index .process steps) —— */
.eh-stats {
	padding: 108px 0;
	background: var(--eh-cream);
}

.eh-stats--trust {
	padding: 2.25rem 0;
	background: #142a1e;
	border-block: 1px solid rgba(181, 100, 47, 0.18);
}

.eh-stats--trust .eh-stat__value {
	color: var(--eh-copper-pale);
	font-size: clamp(28px, 4vw, 38px);
	opacity: 1;
}

.eh-stats--trust .eh-stat__label {
	color: rgba(244, 237, 224, 0.88);
	font-family: var(--eh-sans);
	font-size: 12px;
	letter-spacing: 0.03em;
}

.eh-stats--trust .eh-stat__label-zh {
	font-family: var(--eh-serif-sc);
	font-size: 11px;
	color: rgba(244, 237, 224, 0.55);
	margin-top: 2px;
}

.eh-stats--trust .eh-stat::after {
	background: rgba(181, 100, 47, 0.28);
}

.eh-stats__grid {
	display: grid;
	gap: 2.5rem;
}

.eh-stats__copy {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.eh-stats__lead {
	font-family: var(--eh-serif);
	font-size: clamp(22px, 3vw, 32px);
	color: var(--eh-ink-dark);
	line-height: 1.45;
	margin: 0 0 1rem;
	font-weight: 500;
}

.eh-stats__link {
	color: var(--eh-copper);
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.5px;
	border-bottom: 1px solid var(--eh-line);
}

.eh-stats__deco {
	display: none;
}

.eh-stats__metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.eh-stat {
	position: relative;
	text-align: left;
}

.eh-stat__value {
	font-family: var(--eh-serif);
	font-size: clamp(42px, 6vw, 54px);
	color: var(--eh-copper);
	opacity: 0.85;
	line-height: 1;
	font-weight: 300;
}

.eh-stat__label {
	font-family: var(--eh-serif-sc);
	font-size: 13px;
	color: var(--eh-copper-2);
	margin-top: 6px;
	margin-bottom: 8px;
}

@media (min-width: 900px) {
	.eh-stats__metrics {
		grid-template-columns: repeat(4, 1fr);
	}

	.eh-stat::after {
		content: "";
		position: absolute;
		top: 28px;
		right: -15px;
		width: 30px;
		height: 1px;
		background: var(--eh-line);
	}

	.eh-stat:last-child::after {
		display: none;
	}
}

/* —— Float —— */
.eh-float {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.5rem 0.45rem 0.9rem;
	background: var(--eh-cream);
	border-radius: 999px;
	border: 1px solid var(--eh-line);
	box-shadow: 0 10px 28px rgba(27, 58, 42, 0.12);
	max-width: calc(100% - 2rem);
}

.eh-float__text {
	font-size: 0.8rem;
	color: var(--eh-tx-mute);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px;
}

.eh-float__action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--eh-ink-dark);
	color: var(--eh-cream);
	text-decoration: none;
	font-size: 0.9rem;
}

.eh-float__action:hover {
	background: var(--eh-copper);
}

/* —— Footer (index .foot) —— */
.eh-footer {
	position: relative;
	background: #142a1e;
	color: rgba(244, 237, 224, 0.62);
	padding: 64px 0 30px;
	font-size: 13px;
	overflow: hidden;
}

.eh-footer__inner {
	position: relative;
	z-index: 2;
}

.eh-footer a {
	color: var(--eh-copper-pale);
	text-decoration: none;
	transition: color 0.2s;
}

.eh-footer a:hover {
	color: var(--eh-cream);
}

.eh-footer__inner p {
	margin: 0.35rem 0;
	line-height: 1.9;
}

.eh-footer__tag {
	font-family: var(--eh-serif-sc);
	font-size: 13px;
	color: var(--eh-copper-pale);
	letter-spacing: 3px;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(227, 180, 131, 0.15);
}

[data-eh-animate] {
	opacity: 0;
	transform: translateY(20px);
}

[data-eh-animate].is-inview {
	opacity: 1;
	transform: none;
}

/* —— Nav Service dropdown (index .has-sub) —— */
.eh-nav__item--has-sub {
	position: relative;
}

.eh-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 991px) {
	.eh-nav__sub {
		display: none;
		padding: 0.25rem 0 0.5rem 0.75rem;
		border-left: 2px solid var(--eh-line);
		margin: 0.25rem 0 0.5rem;
	}

	.eh-nav__item--has-sub.is-sub-open .eh-nav__sub {
		display: block;
	}

	.eh-nav__sub a {
		padding: 0.65rem 0;
	}
}

@media (min-width: 992px) {
	.eh-nav__sub {
		position: absolute;
		top: 72px;
		left: 50%;
		transform: translateX(-50%) translateY(8px);
		background: var(--eh-cream);
		border: 1px solid var(--eh-line);
		min-width: 280px;
		padding: 10px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
		box-shadow: 0 18px 50px rgba(27, 58, 42, 0.12);
		z-index: 120;
	}

	.eh-nav__item--has-sub:hover .eh-nav__sub {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	.eh-nav__sub a {
		display: block;
		padding: 12px 16px;
		border-left: 2px solid transparent;
		transition: background 0.18s, border-color 0.18s;
	}

	.eh-nav__sub a:hover {
		background: var(--eh-cream-2);
		border-left-color: var(--eh-copper);
	}

	.eh-nav__sub a b {
		display: block;
		font-weight: 500;
		font-size: 13.5px;
		color: var(--eh-ink-dark);
	}

	.eh-nav__sub a span {
		display: block !important;
		font-size: 11px;
		color: var(--eh-tx-mute);
		font-family: var(--eh-serif-sc);
		margin-top: 2px;
	}
}

/* —— Forms (Contact page) —— */
.eh-form {
	margin: 2rem 0;
}

.eh-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

@media (min-width: 640px) {
	.eh-form__row {
		grid-template-columns: 1fr 1fr;
	}
}

.eh-form__field label {
	display: block;
	font-family: var(--eh-serif);
	font-size: 11px;
	letter-spacing: 1.5px;
	color: var(--eh-copper);
	text-transform: uppercase;
	margin: 14px 0 6px;
}

.eh-form__field label span {
	font-family: var(--eh-serif-sc);
	text-transform: none;
	letter-spacing: 0;
	color: var(--eh-tx-mute);
	font-size: 10px;
	margin-left: 6px;
}

.eh-form__field input,
.eh-form__field select,
.eh-form__field textarea {
	width: 100%;
	background: var(--eh-cream-2);
	border: 1px solid var(--eh-line);
	color: var(--eh-tx);
	padding: 11px 14px;
	font-family: var(--eh-sans);
	font-size: 13.5px;
	transition: border-color 0.2s;
}

.eh-form__field input:focus,
.eh-form__field select:focus,
.eh-form__field textarea:focus {
	outline: none;
	border-color: var(--eh-copper);
}

.eh-form__note {
	font-size: 12px;
	color: var(--eh-tx-mute);
	margin: 1rem 0;
}

.eh-form__status {
	font-size: 14px;
	margin-top: 1rem;
	color: var(--eh-ink-dark);
}

.eh-form__status.is-error {
	color: #8b3a2a;
}

.eh-booking-inline {
	margin: 2rem 0;
	padding: 28px 32px;
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
}

.eh-booking-inline__lead {
	margin: 0 0 1.25rem;
	color: var(--eh-tx-mid);
	line-height: 1.85;
}

/* —— Booking modal (Calendly-style slots) —— */
body.eh-booking-open {
	overflow: hidden;
}

.eh-booking[hidden] {
	display: none !important;
}

.eh-booking {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.eh-booking__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(27, 58, 42, 0.55);
}

.eh-booking__dialog {
	position: relative;
	z-index: 2;
	width: min(100%, 560px);
	max-height: 90vh;
	overflow-y: auto;
	background: var(--eh-cream);
	border: 1px solid var(--eh-line);
	padding: 32px 28px 28px;
	box-shadow: 0 24px 64px rgba(27, 58, 42, 0.2);
}

.eh-booking__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--eh-line);
	background: transparent;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: var(--eh-ink-dark);
}

.eh-booking__title {
	font-family: var(--eh-serif);
	font-size: clamp(24px, 4vw, 32px);
	color: var(--eh-ink-dark);
	font-weight: 600;
	margin: 8px 0 6px;
}

.eh-booking__sub {
	font-size: 13px;
	color: var(--eh-tx-mute);
	margin: 0 0 1.5rem;
}

.eh-booking__label {
	font-family: var(--eh-serif);
	font-size: 12px;
	letter-spacing: 1.5px;
	color: var(--eh-copper);
	text-transform: uppercase;
	margin: 0 0 10px;
}

.eh-booking__label span {
	font-family: var(--eh-serif-sc);
	text-transform: none;
	letter-spacing: 0;
	color: var(--eh-tx-mute);
	margin-left: 8px;
}

.eh-booking__dates {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
	.eh-booking__dates {
		grid-template-columns: repeat(3, 1fr);
	}
}

.eh-booking__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px 8px;
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
	cursor: pointer;
	font-family: var(--eh-sans);
	transition: border-color 0.2s, background 0.2s;
}

.eh-booking__date:hover,
.eh-booking__date.is-selected {
	border-color: var(--eh-copper);
	background: var(--eh-cream-3);
}

.eh-booking__date-dow {
	font-size: 11px;
	color: var(--eh-tx-mute);
	text-transform: uppercase;
}

.eh-booking__date-num {
	font-size: 13px;
	color: var(--eh-ink-dark);
	font-weight: 500;
}

.eh-booking__times {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 1.25rem;
}

.eh-booking__time {
	padding: 10px 6px;
	border: 1px solid var(--eh-line);
	background: var(--eh-cream-2);
	font-size: 12px;
	cursor: pointer;
	font-family: var(--eh-sans);
	transition: border-color 0.2s, background 0.2s;
}

.eh-booking__time:hover,
.eh-booking__time.is-selected {
	border-color: var(--eh-copper);
	background: var(--eh-copper);
	color: var(--eh-cream);
}

.eh-booking__fields {
	border-top: 1px dashed var(--eh-line);
	padding-top: 1rem;
}

.eh-booking__submit {
	width: 100%;
	margin-top: 0.5rem;
}

.eh-nav__cta[data-eh-booking-open] {
	border: none;
	cursor: pointer;
	font-family: var(--eh-sans);
}

/* —— How We Work —— */
.eh-process {
	padding: 96px 0;
	background: var(--eh-cream-2);
}

.eh-process__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	border: 1px solid var(--eh-line);
	background: var(--eh-line);
	list-style: none;
	margin: 48px 0 0;
	padding: 0;
}

.eh-process__step {
	background: var(--eh-cream);
	padding: 36px 32px;
}

.eh-process__num {
	font-family: var(--eh-serif);
	font-size: 28px;
	color: var(--eh-copper);
	opacity: 0.7;
	display: block;
	margin-bottom: 12px;
}

.eh-process__title {
	font-family: var(--eh-serif);
	font-size: 20px;
	color: var(--eh-ink-dark);
	margin: 0 0 4px;
	font-weight: 500;
}

.eh-process__zh {
	font-size: 12px;
	color: var(--eh-tx-mute);
	margin: 0 0 10px;
}

.eh-process__desc {
	font-size: 14px;
	color: var(--eh-tx-mid);
	line-height: 1.7;
	margin: 0;
}

@media (min-width: 768px) {
	.eh-process__steps {
		grid-template-columns: repeat(4, 1fr);
	}
}

.eh-process__closing {
	max-width: 720px;
	margin: 2rem auto 0;
	text-align: center;
	font-size: 14px;
	color: var(--eh-tx-mid);
	line-height: 1.75;
}

/* —— CTA band —— */
.eh-cta-band {
	padding: 72px 0;
	background: linear-gradient(135deg, var(--eh-ink-dark), #1f4532);
	color: var(--eh-cream);
	text-align: center;
}

.eh-cta-band__inner {
	max-width: 680px;
	margin-inline: auto;
}

.eh-cta-band__title {
	font-family: var(--eh-serif);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 500;
	margin: 0 0 0.35rem;
	color: var(--eh-cream);
	line-height: 1.35;
}

.eh-cta-band__title-zh {
	font-family: var(--eh-serif-sc);
	font-size: 14px;
	color: rgba(244, 237, 224, 0.65);
	margin: 0 0 1rem;
}

.eh-cta-band__body {
	font-size: 15px;
	color: rgba(244, 237, 224, 0.78);
	margin: 0 0 1.5rem;
	line-height: 1.7;
}

/* —— FAQ —— */
.eh-faq {
	padding: 96px 0;
	background: var(--eh-cream);
}

.eh-faq__grid {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 960px) {
	.eh-faq__grid {
		grid-template-columns: minmax(200px, 280px) 1fr;
		align-items: start;
	}
}

.eh-faq__list {
	border: 1px solid var(--eh-line);
	margin-bottom: 2rem;
}

.eh-faq__item {
	border-bottom: 1px solid var(--eh-line);
}

.eh-faq__item:last-child {
	border-bottom: none;
}

.eh-faq__item summary {
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 500;
	color: var(--eh-ink-dark);
	list-style: none;
}

.eh-faq__item summary::-webkit-details-marker {
	display: none;
}

.eh-faq__item summary::after {
	content: "+";
	float: right;
	color: var(--eh-copper);
	font-weight: 400;
}

.eh-faq__item[open] summary::after {
	content: "−";
}

.eh-faq__item p {
	padding: 0 22px 18px;
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: var(--eh-tx-mid);
}

.eh-faq__capture {
	border: 1px solid var(--eh-line);
	padding: 28px 24px;
	background: var(--eh-cream-2);
}

.eh-faq__capture h3 {
	font-family: var(--eh-serif);
	font-size: 18px;
	margin: 0 0 1.25rem;
	font-weight: 500;
}

/* —— Insights teaser —— */
.eh-insights-teaser {
	padding: 96px 0 108px;
	background: var(--eh-ink-dark);
	color: var(--eh-cream);
}

.eh-insights-teaser .eh-eyebrow,
.eh-insights-teaser .eh-section-head__title,
.eh-insights-teaser .eh-section-head__intro {
	color: var(--eh-cream);
}

.eh-insights-teaser .eh-section-head__title--display {
	margin-top: 8px;
	margin-bottom: 20px;
}

.eh-insights-teaser .eh-section-head__intro {
	opacity: 0.85;
}

.eh-insights-teaser__list {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.eh-insights-teaser__list li {
	background: rgba(0, 0, 0, 0.12);
}

.eh-insights-teaser__list a {
	display: block;
	padding: 22px 26px;
	color: var(--eh-cream);
	text-decoration: none;
	transition: background 0.2s;
}

.eh-insights-teaser__list a:hover {
	background: rgba(255, 255, 255, 0.06);
}

.eh-insights-teaser__cat {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.65;
	margin-bottom: 6px;
}

.eh-insights-teaser__list strong {
	font-family: var(--eh-serif);
	font-size: 18px;
	font-weight: 500;
}

.eh-insights-teaser__empty {
	text-align: center;
	opacity: 0.8;
	margin: 2rem 0 0;
	font-size: 15px;
	line-height: 1.7;
}

.eh-insights-teaser__more {
	text-align: center;
	margin: 2rem 0 0;
}

.eh-insights-teaser .eh-btn--ghost {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--eh-cream);
}

/* —— Insights page list —— */
.eh-insights-list__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 2rem;
}

.eh-insights-list__cats a {
	padding: 8px 14px;
	border: 1px solid var(--eh-line);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: var(--eh-ink-dark);
}

.eh-insights-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--eh-line);
}

.eh-insights-list__items li {
	border-bottom: 1px solid var(--eh-line);
}

.eh-insights-list__items li:last-child {
	border-bottom: none;
}

.eh-insights-list__items a {
	display: block;
	padding: 22px 24px;
	text-decoration: none;
	color: inherit;
}

.eh-insights-list__items a:hover {
	background: var(--eh-cream-3);
}

.eh-insights-list__cat {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: var(--eh-copper);
	margin-bottom: 6px;
}

.eh-insights-list__items strong {
	display: block;
	font-family: var(--eh-serif);
	font-size: 18px;
	margin-bottom: 6px;
}

.eh-insights-list__items span {
	font-size: 14px;
	color: var(--eh-tx-mid);
	line-height: 1.6;
}

.eh-insights-list__empty {
	color: var(--eh-tx-mid);
	line-height: 1.75;
}

/* —— Contact map —— */
.eh-map {
	margin: 2rem 0;
	border: 1px solid var(--eh-line);
	overflow: hidden;
}

.eh-map iframe,
.eh-map .eh-map__frame {
	display: block;
	width: 100%;
	height: 320px;
	border: 0;
}

@media (min-width: 768px) {
	.eh-contact-info + .eh-map,
	.eh-map {
		height: auto;
	}

	.eh-map iframe {
		height: 360px;
	}
}
