:root {
	--weag-white: #ffffff;
	--weag-navy: #17324d;
	--weag-navy-deep: #092c4c;
	--weag-gold: #b28a3d;
	--weag-cool: #f4f7f8;
	--weag-text: #34495a;
	--weag-muted: #526575;
	--weag-line: #d9e1e7;
	--weag-error: #c62828;
	--weag-success: #1e6b36;
	--weag-serif: "Iowan Old Style", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
	--weag-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, "Noto Sans JP", sans-serif;
	--weag-container: 1240px;
	--weag-header-height: 76px;
	--weag-section-space: clamp(7rem, 9vw, 8.5rem);
	--weag-transition: 180ms ease;
}

html[lang="zh-Hans"] {
	--weag-serif: "Songti SC", STSong, "Noto Serif SC", "Source Han Serif SC", serif;
	--weag-sans: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", "Source Han Sans SC", "Segoe UI", sans-serif;
}

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

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

body {
	margin: 0;
	background: var(--weag-white);
	color: var(--weag-text);
	font-family: var(--weag-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

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

figure,
p,
h1,
h2,
h3,
dl,
dd,
ol,
ul {
	margin-top: 0;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid #2d73c5;
	outline-offset: 4px;
}

::selection {
	background: rgba(178, 138, 61, 0.24);
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	clip: auto;
	background: var(--weag-white);
	color: var(--weag-navy);
	font-weight: 700;
}

.site-main {
	display: block;
	min-height: 50vh;
}

.weag-home-content,
.weag-home-content .wp-block-group,
.weag-home-content .wp-block-image,
.weag-home-content .wp-block-buttons {
	margin-block: 0;
}

.weag-section {
	position: relative;
	scroll-margin-top: calc(var(--weag-header-height) + 24px);
}

.weag-section__inner,
.weag-page-shell,
.weag-archive-shell {
	width: min(calc(100% - 80px), var(--weag-container));
	margin-inline: auto;
}

.weag-section__title,
.weag-archive-header__title,
.weag-entry__title {
	margin-bottom: 2.5rem;
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.weag-section__title::after,
.weag-company-contact__title::after {
	display: block;
	width: 34px;
	height: 2px;
	margin-top: 16px;
	background: var(--weag-gold);
	content: "";
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--weag-header-height);
	background: var(--weag-white);
	border-bottom: 1px solid var(--weag-line);
}

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

.site-header__inner {
	display: flex;
	align-items: center;
	width: min(calc(100% - 64px), 1360px);
	height: 100%;
	margin-inline: auto;
}

.site-branding {
	flex: 0 0 auto;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	color: var(--weag-navy);
	text-decoration: none;
}

.site-branding__logo {
	display: block;
	width: 132px;
	height: 46px;
}

.site-branding__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.site-header__navigation {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 34px);
	margin-left: auto;
}

.site-navigation__list,
.site-footer__menu {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.65vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__list a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 0;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-decoration: none;
	white-space: nowrap;
}

.site-navigation__list a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: var(--weag-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform var(--weag-transition);
}

.site-navigation__list a:hover::after,
.site-navigation__list a:focus-visible::after,
.site-navigation__list a.is-current-section::after,
.site-navigation__list a[aria-current="location"]::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.site-navigation__list a.is-current-section,
.site-navigation__list a[aria-current="location"] {
	color: var(--weag-navy-deep);
}

html[lang="zh-Hans"] .site-navigation__list a {
	font-weight: 500;
	letter-spacing: 0.02em;
}

.site-header__utilities,
.weag-language-switcher {
	display: flex;
	align-items: center;
}

.site-header__utilities {
	align-self: center;
	gap: 18px;
}

.weag-language-switcher {
	gap: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.weag-language-switcher__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 10px;
	border-radius: 0;
	color: var(--weag-muted);
	text-decoration: none;
	transition: color var(--weag-transition);
}

.weag-language-switcher__link:hover,
.weag-language-switcher__link:focus-visible {
	background: transparent;
	color: var(--weag-navy-deep);
}

.weag-language-switcher__link.is-active,
.weag-language-switcher__link[aria-current="page"] {
	background: transparent;
	color: var(--weag-navy);
}

.weag-language-switcher__link.is-active::after,
.weag-language-switcher__link[aria-current="page"]::after {
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 18px;
	height: 1px;
	background: var(--weag-gold);
	content: "";
	transform: translateX(-50%);
}

.weag-language-switcher__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #b7c1c9;
	font-size: 0.72rem;
	font-weight: 400;
	line-height: 1;
}

.site-header__utilities > .weag-language-switcher {
	position: relative;
	margin-left: 10px;
}

.site-header__utilities > .weag-language-switcher::before {
	position: absolute;
	top: 50%;
	left: -15px;
	width: 1px;
	height: 24px;
	background: var(--weag-line);
	content: "";
	transform: translateY(-50%);
}

.site-header__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	min-width: 116px;
	min-height: 48px;
	padding: 10px 18px;
	border: 0;
	background: var(--weag-navy-deep);
	color: var(--weag-white);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: background var(--weag-transition), color var(--weag-transition);
}

.site-header__contact:hover,
.site-header__contact:focus-visible {
	background: #12456f;
	color: var(--weag-white);
}

.site-header__privacy,
.site-header__mobile-language,
.site-header__menu-toggle {
	display: none;
}

/* Buttons */
.weag-button,
.weag-block-button > .wp-block-button__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: background var(--weag-transition), border-color var(--weag-transition), color var(--weag-transition), transform var(--weag-transition);
}

.weag-button--primary,
.weag-button--primary:visited,
.weag-block-button--primary > .wp-block-button__link,
.weag-block-button--primary > .wp-block-button__link:visited {
	background: var(--weag-navy-deep);
	color: var(--weag-white);
}

.weag-button--primary:hover,
.weag-button--primary:focus-visible,
.weag-block-button--primary > .wp-block-button__link:hover,
.weag-block-button--primary > .wp-block-button__link:focus-visible {
	background: #12456f;
}

.weag-button--primary:active,
.weag-block-button--primary > .wp-block-button__link:active {
	background: #0f3d63;
	transform: translateY(1px);
}

.weag-hero__actions .weag-button--primary::after,
.weag-hero__actions .weag-block-button--primary > .wp-block-button__link::after {
	margin-left: 22px;
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1;
	content: "→";
	transition: transform var(--weag-transition);
}

.weag-hero__actions .weag-button--primary:hover::after,
.weag-hero__actions .weag-button--primary:focus-visible::after,
.weag-hero__actions .weag-block-button--primary > .wp-block-button__link:hover::after,
.weag-hero__actions .weag-block-button--primary > .wp-block-button__link:focus-visible::after {
	transform: translateX(4px);
}

.weag-button--text,
.weag-button--text:visited,
.weag-block-button--text > .wp-block-button__link,
.weag-block-button--text > .wp-block-button__link:visited {
	justify-content: flex-start;
	min-height: 44px;
	padding-inline: 0;
	background: transparent;
	border-color: transparent;
	border-radius: 0;
	color: var(--weag-navy);
}

.weag-button--text:hover,
.weag-button--text:focus-visible,
.weag-block-button--text > .wp-block-button__link:hover,
.weag-block-button--text > .wp-block-button__link:focus-visible {
	background: transparent;
	border-color: transparent;
	color: var(--weag-navy-deep);
}

.weag-button--text:active,
.weag-block-button--text > .wp-block-button__link:active {
	background: transparent;
	border-color: transparent;
	color: #0f3d63;
	transform: translateY(1px);
}

.weag-hero__actions .weag-button--text::before,
.weag-hero__actions .weag-block-button--text > .wp-block-button__link::before {
	width: 28px;
	height: 1px;
	margin-right: 12px;
	background: var(--weag-gold);
	content: "";
	transition: width var(--weag-transition);
}

.weag-hero__actions .weag-button--text::after,
.weag-hero__actions .weag-block-button--text > .wp-block-button__link::after {
	margin-left: 12px;
	font-size: 1.05em;
	line-height: 1;
	content: "→";
}

.weag-hero__actions .weag-button--text:hover::before,
.weag-hero__actions .weag-button--text:focus-visible::before,
.weag-hero__actions .weag-block-button--text > .wp-block-button__link:hover::before,
.weag-hero__actions .weag-block-button--text > .wp-block-button__link:focus-visible::before {
	width: 40px;
}

html[lang="zh-Hans"] .weag-hero__actions .weag-button,
html[lang="zh-Hans"] .weag-hero__actions .wp-block-button__link {
	letter-spacing: 0.04em;
}

/* Hero */
.weag-hero {
	background: var(--weag-white);
}

.weag-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	width: 100%;
	max-width: none;
	min-height: clamp(520px, 43vw, 660px);
}

.weag-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px clamp(32px, 4vw, 64px) 64px max(40px, calc((100vw - 1320px) / 2));
}

.weag-hero__title {
	max-width: 630px;
	margin-bottom: 28px;
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: clamp(2.55rem, 3.2vw, 2.95rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.015em;
}

.weag-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.weag-hero__actions .weag-button,
.weag-hero__actions .wp-block-button__link {
	min-width: 220px;
}

.weag-hero__actions .weag-button--text,
.weag-hero__actions .weag-block-button--text > .wp-block-button__link {
	min-width: 0;
}

.weag-hero__media {
	min-height: 100%;
	margin: 0;
	overflow: hidden;
}

.weag-hero__image,
.weag-hero__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.weag-section__inner.weag-hero__scope {
	width: 100%;
	max-width: none;
	padding: 0 max(40px, calc((100vw - var(--weag-container)) / 2));
	background: var(--weag-navy-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid var(--weag-navy-deep);
}

.weag-hero__scope-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: var(--weag-container);
	margin: 0 auto;
	padding: 0;
	list-style: none;
	counter-reset: weag-hero-scope;
}

.weag-hero__scope-list::after {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(178, 138, 61, 0.28) 28%, #d7b76f 50%, rgba(178, 138, 61, 0.28) 72%, transparent 100%);
	background-size: 220% 100%;
	content: "";
	pointer-events: none;
	animation: weag-scope-flow 12s linear infinite;
}

@keyframes weag-scope-flow {
	from {
		background-position: 100% 0;
	}

	to {
		background-position: -120% 0;
	}
}

.weag-hero__scope-item {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 120px;
	padding: 34px 34px 34px 86px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--weag-white);
	font-family: var(--weag-serif);
	font-size: 1.16rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.03em;
	counter-increment: weag-hero-scope;
}

.weag-hero__scope-item:first-child {
	border-left: 0;
}

.weag-hero__scope-item::before {
	position: absolute;
	top: 50%;
	left: 32px;
	color: var(--weag-gold);
	font-family: var(--weag-serif);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	content: counter(weag-hero-scope, decimal-leading-zero);
	transform: translateY(-50%);
}

/* About */
.weag-about {
	padding-block: var(--weag-section-space);
}

.weag-about__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	align-items: center;
	gap: clamp(52px, 7vw, 100px);
}

.weag-about__label {
	margin-bottom: 28px;
	font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.weag-about__title {
	margin-bottom: 22px;
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: clamp(1.45rem, 2.1vw, 2rem);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.04em;
}

.weag-about__body {
	margin-bottom: 1.25rem;
	color: var(--weag-muted);
	font-size: 1rem;
	line-height: 2.05;
}

.weag-about__body--secondary {
	margin-bottom: 1.6rem;
}

.weag-about__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--weag-line);
	list-style: none;
}

.weag-about__tag {
	position: relative;
	padding-left: 14px;
	color: var(--weag-navy);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.weag-about__tag::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 6px;
	height: 1px;
	background: var(--weag-gold);
	content: "";
}

.weag-about__media {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 2.55;
}

.weag-about__image,
.weag-about__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Numbered content sections */
.weag-business {
	padding-bottom: var(--weag-section-space);
}

.weag-business .weag-section__title,
.weag-strengths .weag-section__title,
.weag-partners .weag-section__title {
	text-align: center;
}

.weag-business .weag-section__title::after,
.weag-strengths .weag-section__title::after,
.weag-partners .weag-section__title::after {
	margin-inline: auto;
}

.weag-numbered-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.weag-numbered-list__item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: start;
	gap: 24px;
	min-width: 0;
	padding: 10px clamp(24px, 3vw, 42px) 18px;
	border-left: 1px solid var(--weag-line);
}

.weag-numbered-list__item:first-child {
	padding-left: 0;
	border-left: 0;
}

.weag-numbered-list__item:last-child {
	padding-right: 0;
}

.weag-numbered-list__number {
	color: var(--weag-gold);
	font-family: var(--weag-serif);
	font-size: clamp(2rem, 3vw, 3.1rem);
	line-height: 1;
}

.weag-numbered-list__title {
	margin-bottom: 12px;
	font-family: var(--weag-serif);
	font-size: 1.24rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.weag-numbered-list__body {
	margin-bottom: 0;
	color: var(--weag-muted);
	font-size: 1rem;
	line-height: 1.85;
}

.weag-business__list {
	display: block;
	border-top: 1px solid var(--weag-line);
}

.weag-business__item,
.weag-business__item:first-child,
.weag-business__item:last-child {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 24px;
	padding: 30px 32px;
	border: 0;
	border-right: 1px solid var(--weag-line);
	border-bottom: 1px solid var(--weag-line);
	border-left: 4px solid var(--weag-navy);
}

.weag-business__item .weag-numbered-list__content {
	display: grid;
	grid-template-columns: minmax(160px, 0.78fr) minmax(0, 2.4fr);
	align-items: start;
	gap: clamp(28px, 4vw, 64px);
	min-width: 0;
	padding: 0;
}

.weag-business__item .weag-numbered-list__title {
	margin: 4px 0 0;
	font-size: 1.18rem;
}

.weag-business__facets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	min-width: 0;
	margin: 0;
}

.weag-business__facet {
	min-width: 0;
	padding: 0 clamp(18px, 2.1vw, 32px);
	border-left: 1px solid var(--weag-line);
}

.weag-business__facet:first-child {
	padding-left: 0;
	border-left: 0;
}

.weag-business__facet:last-child {
	padding-right: 0;
}

.weag-business__facet-label {
	margin-bottom: 10px;
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.55;
}

.weag-business__facet-body {
	margin: 0;
	color: var(--weag-muted);
	font-size: 0.9rem;
	line-height: 1.8;
}

/* Process */
.weag-process {
	padding-block: calc(var(--weag-section-space) * 0.72);
	background: var(--weag-navy-deep);
	color: var(--weag-white);
}

.weag-process .weag-section__title {
	color: var(--weag-white);
	text-align: center;
}

.weag-process .weag-section__title::after {
	margin-inline: auto;
}

.weag-process__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.weag-process__list::before {
	position: absolute;
	top: 24px;
	right: 10%;
	left: 10%;
	height: 1px;
	background: rgba(178, 138, 61, 0.72);
	content: "";
}

.weag-process__item,
.weag-process__item:first-child,
.weag-process__item:last-child {
	position: relative;
	display: block;
	min-width: 0;
	padding: 0 clamp(12px, 2vw, 28px);
	border: 0;
	text-align: center;
}

.weag-process__item .weag-numbered-list__number {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 22px;
	border: 1px solid var(--weag-gold);
	background: var(--weag-navy-deep);
	font-size: 1rem;
	font-weight: 700;
}

.weag-process__item .weag-numbered-list__content {
	padding: 0;
}

.weag-process__item .weag-numbered-list__title {
	margin-bottom: 9px;
	color: var(--weag-white);
	font-size: 1.02rem;
}

.weag-process__item .weag-numbered-list__body {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.88rem;
	line-height: 1.7;
}

.weag-strengths {
	padding-block: calc(var(--weag-section-space) * 0.82);
	background: var(--weag-cool);
}

.weag-numbered-list--strengths {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weag-numbered-list--strengths .weag-numbered-list__item {
	display: block;
	padding-inline: clamp(20px, 2.4vw, 34px);
}

.weag-numbered-list--strengths .weag-numbered-list__number {
	display: block;
	margin-bottom: 16px;
	color: #967024;
	font-size: 2rem;
}

.weag-strengths__fact {
	margin: 18px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(23, 50, 77, 0.14);
	color: var(--weag-navy);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.7;
}

/* Partners */
.weag-partners {
	padding-block: 0;
	background: var(--weag-navy-deep);
	color: var(--weag-white);
}

.weag-partners > .weag-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	width: 100%;
	max-width: none;
}

.weag-partners__header {
	grid-column: 1;
	padding: calc(var(--weag-section-space) * 0.62) clamp(36px, 5vw, 78px) 0 max(40px, calc((100vw - var(--weag-container)) / 2));
}

.weag-partners .weag-section__title,
.weag-partners .weag-numbered-list__title {
	color: var(--weag-white);
}

.weag-partners .weag-section__title {
	text-align: left;
}

.weag-partners .weag-section__title::after {
	margin-inline: 0;
}

.weag-partners__body {
	display: block;
	grid-column: 1;
	margin: 0;
	padding: 0 clamp(36px, 5vw, 78px) calc(var(--weag-section-space) * 0.62) max(40px, calc((100vw - var(--weag-container)) / 2));
}

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

.weag-partners__item,
.weag-partners__item:first-child,
.weag-partners__item:last-child {
	display: block;
	padding: 0 16px;
	border-color: rgba(255, 255, 255, 0.32);
}

.weag-partners__item:first-child {
	padding-left: 0;
}

.weag-partners__item:last-child {
	padding-right: 0;
}

.weag-partners__item .weag-numbered-list__number {
	display: block;
	margin-bottom: 12px;
	color: #c8a35a;
	font-size: 1.45rem;
}

.weag-partners__item .weag-numbered-list__title {
	font-size: 0.98rem;
}

.weag-partners .weag-numbered-list__body {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
}

.weag-partners__body > .weag-button,
.weag-partners__actions {
	margin: 30px 0 0;
	gap: 0;
}

.weag-partners__actions .wp-block-button__link,
.weag-partners__actions .weag-button,
.weag-button--partners,
.weag-block-button--partners > .wp-block-button__link {
	background: transparent;
	border-color: var(--weag-gold);
	color: var(--weag-white);
}

.weag-partners__actions .wp-block-button__link:hover,
.weag-partners__actions .wp-block-button__link:focus-visible,
.weag-partners__actions .weag-button:hover,
.weag-partners__actions .weag-button:focus-visible,
.weag-button--partners:hover,
.weag-button--partners:focus-visible,
.weag-block-button--partners > .wp-block-button__link:hover,
.weag-block-button--partners > .wp-block-button__link:focus-visible {
	background: var(--weag-gold);
	color: var(--weag-navy-deep);
}

.weag-partners__media {
	grid-row: 1 / span 2;
	grid-column: 2;
	min-height: 100%;
	margin: 0;
	overflow: hidden;
	aspect-ratio: auto;
}

.weag-partners__image,
.weag-partners__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 52%;
}

/* FAQ */
.weag-faq {
	padding-block: var(--weag-section-space);
	background: var(--weag-white);
}

.weag-faq .weag-section__title {
	text-align: center;
}

.weag-faq .weag-section__title::after {
	margin-inline: auto;
}

.weag-faq__list {
	max-width: 1040px;
	margin-inline: auto;
	border-top: 1px solid var(--weag-line);
}

.weag-faq__item {
	margin: 0;
	border-bottom: 1px solid var(--weag-line);
}

.weag-faq__item summary {
	display: list-item;
	min-height: 64px;
	padding: 17px 18px;
	color: var(--weag-navy);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.7;
	list-style-position: inside;
	cursor: pointer;
}

.weag-faq__item summary::marker {
	color: var(--weag-gold);
}

.weag-faq__answer {
	margin: 0;
	padding: 0 60px 24px 18px;
	color: var(--weag-muted);
	font-size: 1rem;
	line-height: 1.9;
}

/* Company and contact */
.weag-company-contact {
	padding-block: var(--weag-section-space);
}

.weag-company-contact__title {
	margin-bottom: 40px;
}

.weag-company-contact__title::after {
	width: 100%;
	height: 1px;
	margin-top: 28px;
	background: var(--weag-line);
}

.weag-company-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(48px, 5vw, 64px);
}

.weag-company {
	padding: 36px clamp(24px, 3vw, 42px) 40px;
	border-top: 4px solid var(--weag-navy-deep);
	background: linear-gradient(180deg, #f4f7f8 0%, #f8fafb 100%);
}

.weag-contact {
	min-width: 0;
	padding-top: 34px;
	border-top: 1px solid var(--weag-line);
}

.weag-company__heading,
.weag-contact__title {
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(23, 50, 77, 0.2);
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.weag-company__heading::before,
.weag-contact__title::before {
	display: block;
	margin-bottom: 8px;
	color: var(--weag-gold);
	font-family: var(--weag-sans);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.18em;
	content: "COMPANY";
}

.weag-contact__title::before {
	content: "CONTACT";
}

.weag-contact__title[data-weag-anchor-focus] {
	width: fit-content;
	scroll-margin-top: calc(var(--weag-header-height) + 24px);
}

.weag-company__details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 0;
	border-top: 1px solid var(--weag-line);
	border-left: 1px solid var(--weag-line);
}

.weag-company__row {
	display: block;
	min-width: 0;
	padding: 20px 22px;
	border-bottom: 1px solid var(--weag-line);
	border-right: 1px solid var(--weag-line);
}

.weag-company__row:first-child {
	grid-column: 1 / -1;
	padding-block: 24px;
	background: rgba(255, 255, 255, 0.56);
}

.weag-company__row:nth-child(2) {
	grid-column: span 2;
}

.weag-company__row:first-child .weag-company__term {
	display: block;
	margin-bottom: 8px;
}

.weag-company__row:first-child .weag-company__value {
	color: var(--weag-navy-deep);
	font-family: var(--weag-serif);
	font-size: clamp(1.12rem, 1.5vw, 1.35rem);
	font-weight: 600;
	line-height: 1.6;
}

.weag-company__term {
	display: block;
	margin-bottom: 7px;
	color: var(--weag-navy-deep);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.weag-company__value {
	margin: 0;
	color: var(--weag-muted);
	overflow-wrap: anywhere;
}

.weag-company__value a {
	color: var(--weag-navy);
}

.weag-contact__description {
	margin-bottom: 28px;
	color: var(--weag-muted);
}

.weag-contact-form__fallback {
	padding: 20px 22px;
	background: var(--weag-cool);
	border-left: 3px solid var(--weag-gold);
}

.weag-contact-form__setup-notice {
	font-size: 0.82rem;
	color: var(--weag-muted);
}

.wpcf7-form p {
	margin: 0;
}

.wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 24px;
	position: relative;
}

.wpcf7-form > .weag-form-row--full,
.wpcf7-form > p:nth-of-type(n + 5),
.wpcf7-form > .wpcf7-response-output,
.wpcf7-form > .weag-form-feedback {
	grid-column: 1 / -1;
}

.wpcf7-form > .hidden-fields-container,
.wpcf7-form > input[type="hidden"] {
	display: none;
}

.wpcf7-form > .weag-contact-honeypot {
	grid-column: 1 / -1;
}

.wpcf7-form > .wpcf7-response-output {
	min-width: 0;
}

.wpcf7-form label {
	display: block;
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.6;
}

.wpcf7-form .weag-field__optional {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	margin-left: 7px;
	padding: 1px 6px;
	border-radius: 2px;
	background: #e9eef1;
	color: var(--weag-muted);
	font-size: 0.68rem;
	font-weight: 650;
	line-height: 1;
}

.wpcf7-form .weag-field__required {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	margin-left: 7px;
	padding: 1px 6px;
	border-radius: 2px;
	background: #fff0f0;
	color: #9f2929;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
}

.wpcf7-form .wpcf7-acceptance .weag-field__required {
	margin-left: 0;
	margin-right: 6px;
}

.wpcf7-form input:not([type="checkbox"]):not([type="submit"]),
.wpcf7-form textarea,
.wpcf7-form select {
	display: block;
	width: 100%;
	min-height: 54px;
	margin-top: 8px;
	padding: 13px 15px;
	border: 1px solid #cbd5dc;
	border-radius: 4px;
	background: #f7f9fa;
	color: var(--weag-text);
	font-size: 1rem;
	outline: 0;
	transition: background var(--weag-transition), border-color var(--weag-transition);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: #778694;
	opacity: 1;
}

.wpcf7-form textarea {
	min-height: 184px;
	resize: vertical;
}

.wpcf7-form input:not([type="checkbox"]):not([type="submit"]):focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	border-width: 2px;
	border-color: var(--weag-navy-deep);
	background: var(--weag-white);
	box-shadow: none;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid {
	border-color: var(--weag-error);
	background: #fff7f7;
	box-shadow: none;
}

.wpcf7-form input.wpcf7-not-valid:not([type="checkbox"]):not([type="submit"]):focus,
.wpcf7-form textarea.wpcf7-not-valid:focus,
.wpcf7-form select.wpcf7-not-valid:focus {
	border-width: 2px;
	border-color: var(--weag-error);
	background: #fff7f7;
	box-shadow: none;
	outline: 2px solid #7d1b1b;
	outline-offset: 2px;
}

.wpcf7-not-valid-tip {
	display: block;
	margin-top: 7px;
	color: var(--weag-error);
	font-size: 0.88rem;
	font-weight: 600;
}

.wpcf7-form .wpcf7-acceptance label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid var(--weag-line);
	border-radius: 4px;
	background: #f7f9fa;
	font-weight: 500;
	cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
	min-width: 0;
	line-height: 1.75;
}

.wpcf7-form input[type="checkbox"] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--weag-navy);
}

.wpcf7-form input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--weag-navy-deep);
	outline-offset: 3px;
}

.wpcf7-form .wpcf7-acceptance a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.weag-privacy-new-window {
	margin-left: 4px;
	color: var(--weag-muted);
	font-size: 0.75rem;
	white-space: nowrap;
}

.wpcf7-form .weag-form-note {
	margin-top: -4px;
	color: var(--weag-muted);
	font-size: 0.82rem;
	line-height: 1.75;
}

.wpcf7-form input[type="submit"] {
	width: 100%;
	min-height: 54px;
	padding: 14px 24px;
	border: 0;
	border-radius: 4px;
	background: var(--weag-navy-deep);
	color: var(--weag-white);
	font-weight: 700;
	letter-spacing: 0.12em;
	cursor: pointer;
	transition: background var(--weag-transition);
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:focus-visible {
	background: #12456f;
}

.wpcf7-form.submitting input[type="submit"] {
	cursor: wait;
	opacity: 0.7;
}

.wpcf7-spinner {
	position: absolute;
	right: 14px;
	bottom: 15px;
	margin: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 24px 0;
	padding: 15px 18px;
	border: 1px solid rgba(201, 36, 36, 0.18);
	border-left: 5px solid var(--weag-error);
	background: #fff0f0;
	color: #8b1d1d;
	font-weight: 600;
	line-height: 1.7;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #abc5ae;
	border-left-color: var(--weag-success);
	background: #eff8f1;
	color: #155528;
}

.wpcf7 form .wpcf7-response-output:focus {
	outline: 3px solid rgba(23, 50, 77, 0.22);
	outline-offset: 3px;
}

.wpcf7 form .weag-form-feedback--error {
	margin: 20px 0 16px;
}

.wpcf7 form .weag-form-feedback--success {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	margin: 0 0 30px;
	padding: 22px 24px;
	border-left-width: 7px;
	font-weight: 400;
}

.weag-form-feedback__icon {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-image: url("data:image/jpeg;base64,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");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.weag-form-feedback__title {
	margin-bottom: 5px;
	color: #155528;
	font-size: 1.18rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.weag-form-feedback__message {
	min-width: 0;
}

@media (max-width: 600px) {
	.wpcf7 form .weag-form-feedback--success {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 16px;
		border-left-width: 5px;
	}

	.weag-form-feedback__icon {
		width: 42px;
		height: 42px;
	}

	.weag-form-feedback__title {
		font-size: 1.08rem;
	}
}

.weag-honeypot,
.weag-honeypot-wrap {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Footer */
.site-footer {
	padding-block: 34px 26px;
	background: var(--weag-navy-deep);
	color: var(--weag-white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	width: min(calc(100% - 80px), var(--weag-container));
	margin-inline: auto;
}

.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	height: 48px;
	padding: 3px 5px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: var(--weag-white);
	text-decoration: none;
}

.site-footer__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-footer__company {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.75rem;
}

.site-footer__navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 0.76rem;
}

.site-footer__navigation a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.site-footer__privacy {
	text-decoration: underline !important;
}

.site-footer .weag-language-switcher {
	border: 0;
	background: transparent;
}

.site-footer .weag-language-switcher__link {
	min-height: 44px;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer .weag-language-switcher__link:hover,
.site-footer .weag-language-switcher__link:focus-visible {
	background: transparent;
	color: var(--weag-white);
}

.site-footer .weag-language-switcher__link.is-active,
.site-footer .weag-language-switcher__link[aria-current="page"] {
	background: transparent;
	color: var(--weag-white);
}

.site-footer .weag-language-switcher__separator {
	color: rgba(255, 255, 255, 0.36);
}

/* Chinese system fonts render heavier at the same numeric weight on Windows. */
html[lang="zh-Hans"] .site-header__contact,
html[lang="zh-Hans"] .weag-language-switcher,
html[lang="zh-Hans"] .weag-hero__scope-item,
html[lang="zh-Hans"] .weag-about__title,
html[lang="zh-Hans"] .weag-numbered-list__title,
html[lang="zh-Hans"] .weag-company__heading,
html[lang="zh-Hans"] .weag-contact__title,
html[lang="zh-Hans"] .weag-company__row:first-child .weag-company__value,
html[lang="zh-Hans"] .wpcf7-form label {
	font-weight: 500;
}

html[lang="zh-Hans"] .weag-button,
html[lang="zh-Hans"] .weag-block-button > .wp-block-button__link,
html[lang="zh-Hans"] .weag-about__tag,
html[lang="zh-Hans"] .weag-business__facet-label,
html[lang="zh-Hans"] .weag-process__item .weag-numbered-list__number,
html[lang="zh-Hans"] .weag-strengths__fact,
html[lang="zh-Hans"] .weag-faq__item summary,
html[lang="zh-Hans"] .weag-company__heading::before,
html[lang="zh-Hans"] .weag-contact__title::before,
html[lang="zh-Hans"] .weag-company__term,
html[lang="zh-Hans"] .wpcf7-form .weag-field__optional,
html[lang="zh-Hans"] .wpcf7-form .weag-field__required,
html[lang="zh-Hans"] .wpcf7-form input[type="submit"],
html[lang="zh-Hans"] .weag-form-feedback__title {
	font-weight: 600;
}

.site-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.72rem;
	white-space: nowrap;
}

/* Standard pages and hidden news templates */
.weag-page-shell,
.weag-archive-shell {
	padding-block: clamp(64px, 8vw, 112px);
}

.weag-entry,
.weag-page-shell article {
	max-width: 820px;
	margin-inline: auto;
}

.weag-entry__header,
.weag-page-shell .entry-header {
	margin-bottom: 48px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--weag-line);
}

.weag-entry__date {
	margin-bottom: 12px;
	color: var(--weag-gold);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
}

.weag-entry__content,
.weag-page-shell .entry-content {
	color: #31475c;
}

.weag-page-shell .weag-entry__content a:not(.wp-block-button__link):not(.weag-button) {
	overflow-wrap: break-word;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.weag-entry__content h2,
.weag-page-shell .entry-content h2 {
	margin: 3.2rem 0 1.2rem;
	color: var(--weag-navy);
	font-family: var(--weag-serif);
	font-size: 1.75rem;
}

.weag-entry__content h3,
.weag-page-shell .entry-content h3 {
	margin: 2.3rem 0 0.8rem;
	color: var(--weag-navy);
	font-size: 1.2rem;
}

.weag-entry__content p,
.weag-page-shell .entry-content p {
	margin-bottom: 1.4em;
}

.weag-entry__featured-image {
	margin: 0 0 48px;
}

.weag-entry__footer {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid var(--weag-line);
}

.weag-page-shell .weag-entry__content a:not(.wp-block-button__link):not(.weag-button) {
	overflow-wrap: break-word;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.weag-post-list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--weag-line);
}

.weag-post-list .weag-entry {
	max-width: none;
	margin: 0;
	padding: 34px 0;
	border-bottom: 1px solid var(--weag-line);
}

.navigation.pagination {
	margin-top: 48px;
}

.weag-error-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 65vh;
	padding: 80px 24px;
	text-align: center;
}

.weag-error-page__code {
	margin-bottom: 8px;
	color: var(--weag-gold);
	font-family: var(--weag-serif);
	font-size: clamp(4rem, 12vw, 9rem);
	line-height: 1;
}

.weag-error-page__title {
	font-family: var(--weag-serif);
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.weag-error-page__body {
	margin-bottom: 32px;
	color: var(--weag-muted);
}

@media (max-width: 1180px) {
	.site-header__inner {
		width: min(calc(100% - 32px), 1360px);
	}

	.site-branding__logo {
		width: 120px;
		height: 42px;
	}

	.site-header__navigation {
		gap: 12px;
	}

	.site-navigation__list {
		gap: 12px;
	}

	.site-navigation__list a {
		font-size: 0.8125rem;
		letter-spacing: 0.035em;
	}

	.site-header__utilities {
		gap: 10px;
	}

	.site-header__utilities .weag-language-switcher {
		gap: 4px;
		font-size: 0.75rem;
	}

	.site-header__contact {
		padding-inline: 14px;
		font-size: 0.8125rem;
		letter-spacing: 0.03em;
	}

	.weag-hero__content {
		padding-left: 40px;
	}

	.weag-hero__title {
		font-size: clamp(1.9rem, 3.25vw, 2.4rem);
		letter-spacing: 0.01em;
	}

	.weag-business__item .weag-numbered-list__content {
		grid-template-columns: minmax(150px, 0.7fr) minmax(0, 2.5fr);
		gap: 28px;
	}

	.weag-business__facet {
		padding-inline: 16px;
	}

	.weag-partners__header,
	.weag-partners__body {
		padding-left: 40px;
	}
}

@media (max-width: 959px) {
	:root {
		--weag-header-height: 72px;
		--weag-section-space: 4rem;
	}

	.weag-section__inner,
	.weag-page-shell,
	.weag-archive-shell {
		width: min(calc(100% - 48px), var(--weag-container));
	}

	.site-header__inner {
		width: 100%;
		padding-left: 24px;
	}

	.site-branding__logo {
		width: 124px;
		height: 44px;
	}

	.site-header__mobile-language {
		display: block;
		margin-left: auto;
		margin-right: 18px;
	}

	.site-header__mobile-language .weag-language-switcher {
		font-size: 0.9rem;
	}

	.site-header__mobile-language .weag-language-switcher__link,
	.site-footer .weag-language-switcher__link {
		min-height: 44px;
	}

	.site-header__menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 72px;
		padding: 0;
		border: 0;
		background: var(--weag-navy-deep);
		color: var(--weag-white);
		cursor: pointer;
	}

	.site-header__menu-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.site-header__menu-icon {
		position: relative;
		display: block;
		width: 28px;
		height: 2px;
		background: currentcolor;
		transition: background 180ms ease;
	}

	.site-header__menu-icon::before,
	.site-header__menu-icon::after {
		position: absolute;
		left: 0;
		width: 28px;
		height: 2px;
		background: currentcolor;
		content: "";
		transition: top 180ms ease, transform 180ms ease;
	}

	.site-header__menu-icon::before {
		top: -8px;
	}

	.site-header__menu-icon::after {
		top: 8px;
	}

	.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon {
		background: transparent;
	}

	.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::before,
	.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::after {
		top: 0;
	}

	.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::before {
		transform: rotate(45deg);
	}

	.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::after {
		transform: rotate(-45deg);
	}

	.site-header__navigation {
		position: fixed;
		top: var(--weag-header-height);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		margin: 0;
		padding: 46px 6vw 38px;
		overflow-y: auto;
		background: var(--weag-navy-deep);
		color: var(--weag-white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
	}

	body.admin-bar .site-header__navigation {
		top: calc(var(--weag-header-height) + 32px);
	}

	.site-header__menu-toggle[aria-expanded="true"] + .site-header__navigation,
	body.weag-menu-open .site-header__navigation {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-navigation__list {
		display: block;
	}

	.site-navigation__list .menu-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.23);
	}

	.site-navigation__list a {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		min-height: 78px;
		padding: 20px 2px;
		color: var(--weag-white);
		font-family: var(--weag-serif);
		font-size: clamp(1.55rem, 6vw, 2.2rem);
		font-weight: 500;
		letter-spacing: 0.04em;
	}

	.site-navigation__list a::after {
		display: none;
	}

	.site-navigation__list .menu-item:first-child a {
		color: var(--weag-white);
	}

	.site-navigation__list a.is-current-section,
	.site-navigation__list a[aria-current="location"] {
		color: #e0b65e;
	}

	.site-header__utilities {
		display: grid;
		gap: 22px;
		margin-top: 34px;
	}

	.site-header__utilities .weag-language-switcher {
		width: fit-content;
		margin-left: 0;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 1.05rem;
	}

	.site-header__utilities > .weag-language-switcher::before {
		display: none;
	}

	.site-header__utilities .weag-language-switcher__link {
		min-height: 44px;
		color: rgba(255, 255, 255, 0.84);
	}

	.site-header__utilities .weag-language-switcher__link:hover,
	.site-header__utilities .weag-language-switcher__link:focus-visible {
		background: transparent;
		color: var(--weag-white);
	}

	.site-header__utilities .weag-language-switcher__link.is-active,
	.site-header__utilities .weag-language-switcher__link[aria-current="page"] {
		background: transparent;
		color: var(--weag-white);
	}

	.site-header__utilities .weag-language-switcher__separator {
		color: rgba(255, 255, 255, 0.36);
	}

	.site-header__utilities .weag-language-switcher__link.is-active::after {
		background: #e0b65e;
	}

	.site-header__contact {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		min-height: 64px;
		padding: 16px 22px;
		border: 1px solid var(--weag-gold);
		color: var(--weag-white);
		font-family: var(--weag-serif);
		font-size: 1.45rem;
		font-weight: 500;
	}

	.site-header__privacy {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 12px 2px;
		color: var(--weag-white);
		font-size: 1rem;
		text-decoration: none;
	}

	.weag-section__inner.weag-hero__inner {
		grid-template-columns: 1fr;
		width: 100%;
		margin-inline: 0;
		min-height: 0;
	}

	.weag-hero__content {
		padding: 44px 30px 28px;
	}

	.weag-hero__title {
		max-width: 720px;
		margin-bottom: 20px;
		font-size: clamp(2rem, 6vw, 2.7rem);
		line-height: 1.35;
	}

	.wp-block-buttons.weag-hero__actions,
	.weag-hero__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.weag-hero__actions .wp-block-button,
	.weag-hero__actions .wp-block-button__link {
		width: 100%;
		min-width: 0;
	}

	.weag-hero__actions .weag-button,
	.weag-hero__actions .wp-block-button__link {
		min-width: 0;
		padding-inline: 16px;
	}

	.weag-hero__actions .weag-button--text,
	.weag-hero__actions .weag-block-button--text > .wp-block-button__link {
		width: auto;
		justify-self: start;
	}

	.weag-hero__media {
		min-height: 0;
		aspect-ratio: 16 / 7;
	}

	.weag-hero__scope {
		padding-inline: 24px;
	}

	.weag-hero__scope-list {
		grid-template-columns: 1fr;
	}

	.weag-hero__scope-list--rail::after {
		display: none;
	}

	.weag-hero__scope-item,
	.weag-hero__scope-item:first-child {
		min-height: 82px;
		padding: 22px 18px 22px 64px;
		border: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
		font-size: 1rem;
	}

	.weag-hero__scope-item:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.weag-hero__scope-item::before {
		left: 14px;
		font-size: 1.25rem;
	}

	.weag-about__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.weag-about__content {
		max-width: 740px;
	}

	.weag-about__media {
		aspect-ratio: 16 / 7.5;
	}

	.weag-numbered-list,
	.weag-numbered-list--strengths {
		grid-template-columns: 1fr;
	}

	.weag-numbered-list__item,
	.weag-numbered-list__item:first-child,
	.weag-numbered-list__item:last-child,
	.weag-numbered-list--strengths .weag-numbered-list__item {
		display: grid;
		grid-template-columns: 62px minmax(0, 1fr);
		gap: 20px;
		padding: 20px 0;
		border: 0;
		border-bottom: 1px solid var(--weag-line);
	}

	.weag-numbered-list__item:first-child {
		border-top: 1px solid var(--weag-line);
	}

	.weag-numbered-list__number,
	.weag-numbered-list--strengths .weag-numbered-list__number {
		margin: 0;
		font-size: 2rem;
	}

	.weag-numbered-list__content {
		padding-right: 0;
	}

	.weag-numbered-list__content::after {
		display: none;
		content: none;
	}

	.weag-business__item,
	.weag-business__item:first-child,
	.weag-business__item:last-child {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 18px;
		padding: 24px 0;
		border: 0;
		border-bottom: 1px solid var(--weag-line);
	}

	.weag-business__item:first-child {
		border-top: 1px solid var(--weag-line);
	}

	.weag-business__item .weag-numbered-list__content {
		display: block;
	}

	.weag-business__item .weag-numbered-list__title {
		margin: 0 0 18px;
		font-size: 1.16rem;
	}

	.weag-business__facets {
		grid-template-columns: 1fr;
	}

	.weag-business__facet,
	.weag-business__facet:first-child,
	.weag-business__facet:last-child {
		padding: 14px 0;
		border: 0;
		border-top: 1px solid var(--weag-line);
	}

	.weag-business__facet-label {
		margin-bottom: 6px;
		font-size: 0.94rem;
	}

	.weag-business__facet-body {
		font-size: 1rem;
	}

	.weag-process__list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.weag-process__list::before {
		top: 24px;
		bottom: 24px;
		left: 23px;
		width: 1px;
		height: auto;
	}

	.weag-process__item,
	.weag-process__item:first-child,
	.weag-process__item:last-child {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 20px;
		padding: 18px 0;
		text-align: left;
	}

	.weag-process__item .weag-numbered-list__number {
		width: 46px;
		height: 46px;
		margin: 0;
	}

	.weag-process__item .weag-numbered-list__content {
		align-self: center;
	}

	.weag-process__item .weag-numbered-list__title {
		margin-bottom: 5px;
		font-size: 1.08rem;
	}

	.weag-process__item .weag-numbered-list__body {
		font-size: 1rem;
	}

	.weag-strengths__fact {
		font-size: 1rem;
	}

	.weag-partners > .weag-section__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.weag-partners__header {
		grid-column: 1;
		padding: calc(var(--weag-section-space) * 0.7) 24px 0;
	}

	.weag-partners__body {
		grid-column: 1;
		padding: 0 24px calc(var(--weag-section-space) * 0.7);
	}

	.weag-partners .weag-numbered-list__body {
		font-size: 1rem;
	}

	.weag-partners__item .weag-numbered-list__title {
		font-size: 1.05rem;
	}

	.weag-partners__item,
	.weag-partners__item:first-child {
		border-color: rgba(255, 255, 255, 0.25);
	}

	.weag-partners__body > .weag-button,
	.weag-partners__actions {
		margin-top: 28px;
	}

	.weag-partners__media {
		grid-row: auto;
		grid-column: 1;
		min-height: 0;
		aspect-ratio: 16 / 7.5;
	}

	.weag-faq__item summary {
		min-height: 58px;
		padding-inline: 4px;
	}

	.weag-faq__answer {
		padding: 0 46px 22px 4px;
	}

	.weag-company-contact__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 64px;
	}

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

	.weag-company__row:nth-child(2) {
		grid-column: 1 / -1;
	}

	.weag-company-contact__inner > * {
		min-width: 0;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		align-items: start;
		width: min(calc(100% - 48px), var(--weag-container));
	}

	.site-footer__logo-link {
		width: 148px;
		height: 54px;
	}

	.site-footer__navigation {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.site-footer__copyright {
		white-space: normal;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	body.admin-bar .site-header__navigation {
		top: calc(var(--weag-header-height) + 46px);
	}
}

@media (max-width: 540px) {
	:root {
		--weag-header-height: 64px;
	}

	.weag-section__inner,
	.weag-page-shell,
	.weag-archive-shell {
		width: min(calc(100% - 40px), var(--weag-container));
	}

	.site-header__inner {
		padding-left: 20px;
	}

	.site-branding__logo {
		width: 104px;
		height: 38px;
	}

	.site-header__mobile-language {
		margin-right: 12px;
	}

	.site-header__mobile-language .weag-language-switcher {
		gap: 5px;
		font-size: 0.82rem;
	}

	.site-header__menu-toggle {
		width: 64px;
		height: 64px;
	}

	.site-header__navigation {
		padding-inline: 24px;
	}

	.site-navigation__list a {
		min-height: 70px;
		font-size: clamp(1.4rem, 6vw, 1.8rem);
	}

	.weag-hero__content {
		padding-inline: 20px;
		padding-top: 28px;
		padding-bottom: 22px;
	}

	.weag-hero__title {
		font-size: clamp(1.9rem, 7.8vw, 2.125rem);
		line-height: 1.45;
		letter-spacing: 0;
		text-wrap: balance;
	}

	.weag-hero__title br {
		display: none;
	}

	.wp-block-buttons.weag-hero__actions,
	.weag-hero__actions {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.weag-hero__actions .weag-button,
	.weag-hero__actions .wp-block-button__link {
		width: 100%;
		min-height: 50px;
		padding-inline: 18px;
		font-size: 0.84rem;
		letter-spacing: 0.04em;
	}

	.weag-hero__actions .weag-button--text,
	.weag-hero__actions .weag-block-button--text > .wp-block-button__link {
		width: fit-content;
		min-height: 44px;
		padding-inline: 0;
	}

	.weag-hero__media {
		height: clamp(180px, 50vw, 200px);
		aspect-ratio: auto;
	}

	.weag-hero__image,
	.weag-hero__media > img {
		object-position: 60% center;
	}

	.weag-section__title {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}

	.weag-about__title {
		font-size: 1.4rem;
	}

	.weag-about__body {
		font-size: 1rem;
	}

	.weag-about__media {
		width: calc(100% + 8px);
		margin-left: -4px;
		aspect-ratio: 16 / 8;
	}

	.weag-numbered-list__item,
	.weag-numbered-list__item:first-child,
	.weag-numbered-list__item:last-child,
	.weag-numbered-list--strengths .weag-numbered-list__item {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 14px;
	}

	.weag-numbered-list__title {
		font-size: 1.05rem;
	}

	.weag-numbered-list__body {
		font-size: 1rem;
		line-height: 1.8;
	}

	.weag-partners__media {
		aspect-ratio: 16 / 8;
	}

	.weag-company-contact__title {
		font-size: 1.9rem;
	}

	.weag-company {
		padding: 26px 20px;
	}

	.weag-company-contact__inner {
		gap: 52px;
	}

	.weag-contact {
		padding-top: 24px;
	}

	.weag-company__heading,
	.weag-contact__title {
		font-size: 1.25rem;
	}

	.weag-company__details {
		grid-template-columns: minmax(0, 1fr);
	}

	.weag-company__row {
		grid-column: 1 / -1;
	}

	.weag-company__row:first-child,
	.weag-company__row:nth-child(2) {
		grid-column: 1 / -1;
		padding-bottom: 20px;
	}

	.wpcf7-form {
		grid-template-columns: minmax(0, 1fr);
		column-gap: 0;
	}

	.wpcf7-form > .weag-form-row {
		grid-column: 1 / -1;
	}

	.wpcf7-form textarea {
		min-height: 170px;
	}

	.wpcf7-form .wpcf7-acceptance label {
		padding: 13px 14px;
	}

	.site-footer__menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		gap: 12px 24px;
	}
}

@media (max-width: 360px) {
	.site-header__inner {
		padding-left: 16px;
	}

	.site-branding__logo {
		width: 92px;
		height: 34px;
	}

	.site-header__mobile-language {
		margin-right: 8px;
	}

	.wp-block-buttons.weag-hero__actions,
	.weag-hero__actions {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.weag-hero__actions .weag-button,
	.weag-hero__actions .wp-block-button__link {
		padding-inline: 16px;
		font-size: 0.875rem;
		letter-spacing: 0.04em;
		white-space: normal;
	}

	.weag-hero__actions .weag-button--text,
	.weag-hero__actions .weag-block-button--text > .wp-block-button__link {
		width: fit-content;
		min-height: 44px;
		padding-inline: 0;
	}

}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.weag-hero__scope-list--rail::after {
		animation: none;
	}
}

@media print {
	.site-header,
	.site-footer,
	.weag-hero__actions,
	.weag-contact {
		display: none !important;
	}

	.weag-section {
		padding-block: 24px !important;
	}

	.weag-section__inner {
		width: 100%;
	}
}
