/* --------------------------------------------------------------------------
   Design tokens, shell, header, footer, buttons — shared by every template.
   -------------------------------------------------------------------------- */

html {
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	background: #f4f5f0;
	color: #010106;
	font-family: Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
	--acc: #026537;
	--acc-light: #9fcdaa;
	--ink: #010106;
	--dark: #0e2018;
	--line: rgba(19, 42, 33, .12);
	--paper: #fdfdfb;
}

* {
	box-sizing: border-box;
}

a {
	color: var(--ink);
	text-decoration: none;
}

a:hover {
	color: var(--acc);
}

img {
	max-width: 100%;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--dark);
	color: #fff;
	padding: 12px 20px;
	z-index: 999;
}

.skip-link:focus {
	left: 0;
}

.serif {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
}

.em {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 600;
	color: var(--acc);
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}

.wrap-wide {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 88px;
}

/* --- kickers ------------------------------------------------------------ */

.kicker,
.klabel {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--acc);
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.kicker::before,
.klabel::before {
	content: "";
	width: 44px;
	height: 1px;
	background: var(--acc);
	flex: none;
}

.klabel-light {
	color: var(--acc-light);
}

.klabel-light::before {
	background: var(--acc-light);
}

.klabel-white {
	color: #fff;
}

.klabel-white::before {
	background: #fff;
}

.klabel-center {
	justify-content: center;
}

/* --- headings ----------------------------------------------------------- */

.h1 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 62px;
	line-height: 1.08;
	margin: 22px 0 0;
}

.h2 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 46px;
	line-height: 1.12;
	margin: 18px 0 0;
}

/* --- buttons ------------------------------------------------------------ */

.tg {
	display: inline-block;
	background: var(--dark);
	color: #f4f5f0;
	font-size: 13px;
	font-weight: 600;
	padding: 11px 22px;
	border-radius: 100px;
	white-space: nowrap;
	flex: none;
	transition: background .2s ease, color .2s ease;
}

.tg:hover {
	background: var(--acc);
	color: #fff;
}

.tg-acc {
	background: var(--acc);
	color: #fff;
}

.tg-acc:hover {
	background: var(--dark);
	color: #fff;
}

.tg-light {
	background: #faf6e9;
	color: var(--dark);
}

.tg-light:hover {
	background: #fff;
	color: var(--dark);
}

.ghost {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--acc);
	color: var(--acc);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 100px;
	transition: box-shadow .25s ease, background .25s ease;
}

.ghost:hover {
	box-shadow: 0 0 0 4px rgba(20, 83, 45, .18);
	background: rgba(20, 83, 45, .05);
	color: var(--acc);
}

.ghost svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: none;
}

/* --- header ------------------------------------------------------------- */

.hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 40px;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.lg {
	display: block;
	flex: none;
}

.lg img {
	height: 98px;
	width: auto;
	display: block;
}

/* The per-language wordmark is a tightly cropped vector — it needs less height
   than the padded raster logo to read at the same size. */
.lg img.lg-mark {
	height: 52px;
}

.nav {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nl {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.nl-current {
	color: var(--acc);
}

.hd-side {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: none;
}

/* --- language switcher -------------------------------------------------- */

.lang {
	position: relative;
	flex: none;
}

.langbtn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(19, 42, 33, .2);
	border-radius: 100px;
	padding: 9px 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	background: none;
	cursor: pointer;
	font-family: inherit;
	color: var(--ink);
}

.langbtn:hover {
	border-color: var(--acc);
}

.langbtn svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
}

.langdd {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 6px;
	flex-direction: column;
	box-shadow: 0 12px 32px rgba(14, 32, 24, .14);
	z-index: 60;
	min-width: 86px;
}

/* Opened by the script on click. A :focus-within rule would fight the toggle:
   the button keeps focus after a click, so the list could never be closed. */
.lang.is-open .langdd {
	display: flex;
}

.lang.is-open .langbtn {
	border-color: var(--acc);
	color: var(--acc);
}

.lang.is-open .langbtn svg {
	transform: rotate(180deg);
}

.langbtn svg {
	transition: transform .2s ease;
}

.langdd a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	padding: 9px 14px;
	border-radius: 8px;
	color: var(--ink);
	white-space: nowrap;
}

.langdd a:hover {
	background: #edefe7;
	color: var(--acc);
}

.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex: none;
}

.burger svg {
	width: 40px;
	height: 38px;
	stroke: var(--ink);
	stroke-width: 1.2;
	stroke-linecap: round;
	fill: none;
}

.mmenu {
	display: none;
	flex-direction: column;
	gap: 18px;
	padding: 20px;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.mmenu.is-open {
	display: flex;
}

.mmenu .tg {
	align-self: flex-start;
	margin-top: 6px;
}

.mmenu-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.mmenu-btns .tg,
.mmenu-btns .btn-mail {
	margin-top: 0;
	align-self: auto;
	font-size: 14px;
	padding: 13px 26px;
}

/* In the mobile sheet every language is shown at once. */
.lang-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-self: flex-start;
}

.lang-pill {
	border: 1px solid rgba(19, 42, 33, .2);
	border-radius: 100px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--ink);
}

.lang-pill:hover {
	border-color: var(--acc);
	color: var(--acc);
}

.lang-pill.is-current {
	border-color: var(--acc);
	color: var(--acc);
	font-weight: 700;
}

/* --- footer ------------------------------------------------------------- */

.ft {
	background: var(--dark);
	color: #c9d2c2;
	text-align: center;
	padding: 64px 40px 40px;
}

.ft-kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--acc-light);
}

.ft-cities {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.15;
	color: #fff;
	margin: 20px auto 0;
	max-width: 900px;
}

.ft-cities a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(159, 205, 170, 0.5);
	text-underline-offset: 4px;
}

.ft-cities a:hover {
	color: var(--acc-light);
	text-decoration-color: var(--acc-light);
}

.ft-dot {
	color: var(--acc-light);
}

.ft-row {
	max-width: 1100px;
	margin: 44px auto 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 12px 24px;
	flex-wrap: wrap;
	font-size: 12px;
	color: rgba(201, 210, 194, 0.65);
}

.ft-title {
	color: #f2f1e8;
}

@media (max-width: 1024px) {
	.ft-row {
		justify-content: center;
		text-align: center;
		flex-direction: column;
		align-items: center;
	}
}

/* --- subpage hero ------------------------------------------------------- */

.phero {
	position: relative;
	height: 380px;
}

.phero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.phero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(14, 32, 24, 0) 40%, rgba(14, 32, 24, .75) 100%);
}

/* Lines the hero caption up with the content column of the page below. */
.phero-txt {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 56px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 88px;
	box-sizing: border-box;
	color: #fff;
	z-index: 1;
}

.phero-txt h1 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 52px;
	line-height: 1.05;
	margin: 20px 0 0;
	color: #fff;
}

/* --- shared blocks ------------------------------------------------------ */

.cta-band {
	background: #f4f5f0;
	text-align: center;
	padding: 96px 40px;
}

.cta-band .h2 {
	margin-top: 20px;
}

.cta-band p {
	max-width: 560px;
	margin: 26px auto 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
}

.cta-band .buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-top: 40px;
}

.cta-band .buttons .tg,
.cta-band .buttons .btn-mail {
	width: 340px;
	max-width: 100%;
	justify-content: center;
	box-sizing: border-box;
	padding-left: 0;
	padding-right: 0;
}

/* --- mail button -------------------------------------------------------- */

.btn-mail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid var(--acc);
	border-radius: 100px;
	color: var(--acc);
	font-size: 13px;
	font-weight: 600;
	padding: 11px 24px;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-mail:hover {
	background: var(--dark);
	border-color: var(--dark);
	color: #fff;
}

.btn-mail svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 1.6;
	fill: none;
	flex: none;
}

/* --- responsive --------------------------------------------------------- */

/* Between the design width and the burger breakpoint the navigation has to
   fit longer label sets (English is the widest), so the shell tightens up. */
@media (max-width: 1500px) {
	.hd {
		gap: 16px;
	}

	.lg img {
		height: 84px;
	}

	.lg img.lg-mark {
		height: 44px;
	}

	.nav {
		gap: 20px;
		flex-wrap: nowrap;
	}

	.nl {
		font-size: 14px;
	}

	.hd-side {
		gap: 12px;
	}

	.tg {
		padding: 11px 18px;
	}
}

@media (max-width: 1280px) {
	.hd .nav {
		display: none;
	}

	.hd-side .tg {
		display: none;
	}

	.burger {
		display: block;
	}
}

@media (max-width: 1024px) {
	.wrap-wide {
		padding: 0 40px;
	}

	.phero-txt {
		padding: 0 40px;
		bottom: 40px;
	}

	.phero-txt h1 {
		font-size: 42px;
	}

	.h1 {
		font-size: 52px;
	}

	.h2 {
		font-size: 40px;
	}

	.cta-band {
		padding: 64px 24px;
	}
}

@media (max-width: 760px) {
	/* Phones give the wordmark the room instead of the padding around it. */
	.hd {
		gap: 8px;
		padding: 2px;
	}

	/* Let the logo shrink rather than push the burger off the screen. */
	.lg {
		flex: 0 1 auto;
		min-width: 0;
	}

	.lg img {
		height: 68px;
	}

	.lg img.lg-mark {
		height: auto;
		max-height: 47px;
		max-width: 100%;
	}

	.wrap {
		padding: 0 20px;
	}

	.wrap-wide {
		padding: 0 20px;
	}

	.kicker::before,
	.klabel::before {
		display: none;
	}

	.h1 {
		font-size: 40px;
		line-height: 1.05;
	}

	.h2 {
		font-size: 32px;
	}

	.phero {
		height: 300px;
	}

	.phero-txt h1 {
		font-size: 40px;
	}

	.cta-band {
		padding: 56px 20px;
	}
}

@media (max-width: 600px) {
	/* Matches the narrowest content padding of the page sections. */
	.phero-txt {
		padding: 0 20px;
	}
}

/* The Cyrillic wordmark is the widest of the three; on small phones it has to
   give way so the language switcher and the burger still fit on one line. */
@media (max-width: 480px) {
	.lg img.lg-mark {
		max-height: 36px;
	}
}

/* Accent highlight has to lighten on dark surfaces. */
.band .em,
.dcard .em,
.vid-card .em,
.quote-txt .em,
.ahead .em {
	color: var(--acc-light);
}
