/* =============================================================================
   Motren theme
   Editorial, nature-oriented design system. Tokens first, then components.
   ========================================================================== */

:root {
	--forest: #283628;
	--forest-deep: #1c2e18;
	--forest-ink: #16221a;
	--moss: #3f5a3c;
	--sage: #8a9a84;
	--sage-light: #b9c4b3;
	--paper: #F6F2EE;
	--paper-2: #EDE6DD;
	--paper-3: #E3D9CB;
	--sand: #cbbba4;
	--sand-deep: #a89377;
	--ink: #1f261f;
	--ink-soft: #5a6359;
	--line: rgba(40, 54, 40, .16);
	--line-strong: rgba(40, 54, 40, .34);
	--line-light: rgba(246, 242, 238, .18);
	--white: #fff;
	--error: #9a3b2e;
	--ok: #2f6a3a;

	--font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
	--font-body: Manrope, 'Helvetica Neue', Arial, sans-serif;

	--wrap: 1240px;
	--content: 760px;
	--gutter: clamp(1.125rem, 4vw, 2.75rem);
	--section: clamp(4.5rem, 9vw, 8rem);
	--header-h: 5.25rem;

	--r-sm: 4px;
	--r: 10px;
	--r-lg: 18px;
	--ease: cubic-bezier(.2, .7, .2, 1);
	--shadow: 0 20px 50px -24px rgba(28, 46, 24, .45);
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--moss); }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
figure { margin: 0; }
:focus-visible { outline: 2px solid var(--sand-deep); outline-offset: 3px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.skip-link:focus { position: fixed; top: .5rem; left: .5rem; z-index: 1000; width: auto; height: auto; clip: auto; padding: .75rem 1rem; background: var(--forest); color: var(--paper); border-radius: var(--r-sm); }

/* ------------------------------------------------------------- Typography */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.01em;
	color: var(--forest);
	margin: 0 0 .5em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 1.9rem + 3vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 1.5rem + 1.9vw, 3.1rem); }
h3 { font-size: clamp(1.45rem, 1.25rem + .7vw, 1.85rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1.1em; }
h1 em, h2 em, .mt-cta-band__title em { font-style: italic; font-weight: 500; color: inherit; background: linear-gradient(transparent 62%, rgba(203, 187, 164, .55) 62%, rgba(203, 187, 164, .55) 92%, transparent 92%); padding: 0 .08em; }
.mt-dark h1 em, .mt-dark h2 em, .mt-hero em, .mt-cta-band em { color: var(--sand); background-image: linear-gradient(transparent 62%, rgba(203, 187, 164, .28) 62%, rgba(203, 187, 164, .28) 92%, transparent 92%); }
strong { font-weight: 600; }
small { font-size: .875em; }
::selection { background: var(--sand); color: var(--forest-deep); }

.mt-eyebrow {
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--sand-deep);
	margin: 0 0 1rem;
	display: flex;
	align-items: center;
	gap: .75rem;
}
.mt-eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: currentColor; opacity: .7; }
.mt-eyebrow--center { justify-content: center; }
.mt-eyebrow--center::after { content: ""; width: 1.75rem; height: 1px; background: currentColor; opacity: .7; }
.mt-eyebrow--light { color: var(--sand); }
.mt-lead, .mt-section-lead, .mt-page-hero__lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }

/* ----------------------------------------------------------------- Layout */
.mt-wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.mt-main { display: block; }
.mt-section { padding-block: var(--section); position: relative; }
.mt-section--tight { padding-block: calc(var(--section) * .6); }
.mt-section--paper2 { background: var(--paper-2); }
.mt-section--forest, .mt-dark { background: var(--forest); color: var(--paper); }
.mt-section--forest h1, .mt-section--forest h2, .mt-section--forest h3, .mt-dark h2, .mt-dark h3 { color: var(--paper); }
.mt-section--forest .mt-section-lead, .mt-section--forest p { color: var(--sage-light); }
.mt-section--forest a { color: var(--paper); }
.mt-section--line-top { border-top: 1px solid var(--line); }
.mt-section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.mt-section-head--center { margin-inline: auto; text-align: center; }
.mt-section-head--center .mt-section-lead { margin-inline: auto; }
.mt-section-title { margin-bottom: .6em; }
.mt-section-head--split { display: grid; gap: 1.5rem 4rem; max-width: none; align-items: end; }
@media (min-width: 900px) { .mt-section-head--split { grid-template-columns: 1.1fr .9fr; } .mt-section-head--split .mt-eyebrow { grid-column: 1 / -1; } .mt-section-head--split .mt-section-title { margin-bottom: 0; } .mt-section-head--split .mt-section-lead { margin-bottom: .4rem; } }

/* Content areas: default blocks constrained, sections full width. */
.mt-page__content > *, .mt-front > *, .mt-single__body > * {
	max-width: calc(var(--content) + 2 * var(--gutter));
	margin-left: auto;
	margin-right: auto;
	padding-inline: var(--gutter);
}
.mt-page__content > ul, .mt-page__content > ol, .mt-single__body > ul, .mt-single__body > ol, .mt-prose > ul, .mt-prose > ol { padding-left: calc(var(--gutter) + 1.25rem); }
.mt-page__content > ul.is-style-checks, .mt-single__body > ul.is-style-checks { padding-left: var(--gutter); }
.mt-page__content > .alignwide, .mt-front > .alignwide, .mt-single__body > .alignwide { max-width: calc(var(--wrap) + 2 * var(--gutter)); }
.mt-page__content > .alignfull, .mt-front > .alignfull, .mt-single__body > .alignfull, .mt-page__content > .mt-section, .mt-front > .mt-section, .mt-page__content > .mt-regions, .mt-front > .mt-regions, .mt-page__content > .wp-block-motren-regions, .mt-front > .wp-block-motren-regions { max-width: none; padding-inline: 0; }
.mt-page__content { padding-block: clamp(2rem, 5vw, 3.5rem) var(--section); }
.mt-page__content > .mt-section:first-child { margin-top: calc(-1 * clamp(2rem, 5vw, 3.5rem)); }
.mt-page__content > .mt-section:last-child { margin-bottom: calc(-1 * var(--section)); }
.mt-page--no-hero .mt-page__content { padding-top: 0; }
.mt-page--narrow .mt-page__content { padding-top: 1rem; }
.mt-page__content > .wp-block-group.alignfull:not(.mt-section) { padding-inline: 0; }
.mt-page__content > .wp-block-columns, .mt-front > .wp-block-columns { max-width: calc(var(--wrap) + 2 * var(--gutter)); }

.mt-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 720px) { .mt-grid--2 { grid-template-columns: repeat(2, 1fr); } .mt-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) and (max-width: 1023px) { .mt-grid--3 { grid-template-columns: repeat(2, 1fr); } }
.mt-btn-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }

/* ---------------------------------------------------------------- Buttons */
.mt-btn, .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	padding: .95em 1.6em;
	border-radius: 999px;
	border: 1px solid var(--forest);
	background: var(--forest);
	color: var(--paper);
	font-family: var(--font-body);
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .01em;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.mt-btn:hover, .wp-block-button__link:hover { background: var(--moss); border-color: var(--moss); color: var(--paper); transform: translateY(-1px); }
.mt-btn .mt-icon, .wp-block-button__link .mt-icon { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.mt-btn:hover .mt-icon { transform: translateX(3px); }
.mt-btn--sand, .is-style-sand .wp-block-button__link { background: var(--sand); border-color: var(--sand); color: var(--forest-deep); }
.mt-btn--sand:hover, .is-style-sand .wp-block-button__link:hover { background: #d9cbb6; border-color: #d9cbb6; color: var(--forest-deep); }
.mt-btn--outline, .is-style-outline .wp-block-button__link { background: transparent; color: var(--forest); border-color: var(--line-strong); }
.mt-btn--outline:hover, .is-style-outline .wp-block-button__link:hover { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.mt-dark .mt-btn--outline, .mt-section--forest .is-style-outline .wp-block-button__link, .mt-hero .is-style-outline .wp-block-button__link, .mt-cta-band .mt-btn--outline { color: var(--paper); border-color: var(--line-light); }
.mt-dark .mt-btn--outline:hover, .mt-hero .is-style-outline .wp-block-button__link:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }
.mt-btn--lg { padding: 1.1em 1.9em; font-size: 1.02rem; }
.mt-btn--sm { padding: .7em 1.2em; font-size: .875rem; }
.is-style-link .wp-block-button__link, .mt-link {
	background: none; border: 0; padding: 0; border-radius: 0; color: var(--forest); font-weight: 600; font-size: .95rem; text-decoration: none; display: inline-flex; align-items: center; gap: .5em; position: relative;
}
.is-style-link .wp-block-button__link::after, .mt-link::after { content: ""; position: absolute; left: 0; right: 1.5em; bottom: -2px; height: 1px; background: currentColor; opacity: 0; transition: opacity .25s var(--ease); }
.is-style-link .wp-block-button__link:hover, .mt-link:hover { background: none; color: var(--moss); transform: none; }
.is-style-link .wp-block-button__link:hover::after, .mt-link:hover::after { opacity: 1; }
.is-style-link .wp-block-button__link .mt-icon, .mt-link .mt-icon { width: 1em; height: 1em; transition: transform .3s var(--ease); }
.is-style-link .wp-block-button__link:hover .mt-icon, .mt-link:hover .mt-icon { transform: translateX(3px); }
.wp-block-buttons { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.wp-block-buttons > .wp-block-button { margin: 0; }
.mt-icon { width: 1.25em; height: 1.25em; flex: none; }
.mt-icon.is-flipped { transform: scaleX(-1); }

/* ----------------------------------------------------------------- Header */
.mt-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid transparent;
	transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mt-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(28, 46, 24, .45); }
.mt-header__inner {
	width: min(100% - 2 * var(--gutter), 1400px);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: clamp(1rem, 2vw, 2rem);
	min-height: var(--header-h);
}
.mt-header__brand { display: flex; align-items: center; }
.mt-logo img, .custom-logo { width: clamp(150px, 13vw, 185px); height: auto; }
.mt-logo--light { display: none; }
.mt-header__tools { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; white-space: nowrap; }
.mt-header__phone { display: none; align-items: center; gap: .5rem; color: var(--forest); text-decoration: none; font-weight: 600; font-size: .95rem; white-space: nowrap; }
.mt-header__phone:hover { color: var(--moss); }
.mt-header__cta { display: none; }
@media (min-width: 1100px) { .mt-header__cta { display: inline-flex; } }
@media (min-width: 1400px) { .mt-header__phone { display: inline-flex; } }

.mt-lang ul { list-style: none; margin: 0; padding: .2rem; display: flex; gap: .15rem; border: 1px solid var(--line); border-radius: 999px; }
.mt-lang a { display: block; padding: .35rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; color: var(--ink-soft); line-height: 1.2; }
.mt-lang a:hover { color: var(--forest); }
.mt-lang a.is-current { background: var(--forest); color: var(--paper); }
.mt-lang--mobile { display: none; }

.mt-burger { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); flex: none; }
.mt-burger .mt-icon { width: 1.35rem; height: 1.35rem; }
.mt-burger__close { display: none; }
.mt-nav-open .mt-burger__close { display: inline-flex; }
.mt-nav-open .mt-burger__open { display: none; }

.mt-nav__list, .mt-nav__list ul { list-style: none; margin: 0; padding: 0; }
.mt-nav__list > li { position: relative; }
.mt-nav__list a { text-decoration: none; }
.mt-nav__toggle { display: none; }

@media (min-width: 1024px) {
	.mt-burger { display: none; }
	.mt-nav { display: flex; justify-content: flex-start; min-width: 0; padding-left: clamp(.25rem, 1.5vw, 1.5rem); }
	.mt-nav__list { display: flex; flex-wrap: nowrap; gap: clamp(.8rem, 1.5vw, 1.5rem); align-items: center; white-space: nowrap; }
	.mt-nav__list > li > a { display: inline-block; padding: .5rem 0; font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; }
	.mt-nav__list > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: .15rem; height: 1px; background: var(--sand-deep); opacity: 0; transition: opacity .25s var(--ease); }
	.mt-nav__list > li > a:hover::after, .mt-nav__list > li.current-menu-item > a::after, .mt-nav__list > li.current-menu-ancestor > a::after { opacity: 1; }
	.mt-nav__list .sub-menu { position: absolute; top: 100%; left: -1rem; min-width: 16rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: .5rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s; }
	.mt-nav__list > li:hover > .sub-menu, .mt-nav__list > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.mt-nav__list .sub-menu a { display: block; padding: .55rem .75rem; border-radius: var(--r-sm); font-size: .9rem; color: var(--ink); white-space: nowrap; }
	.mt-nav__list .sub-menu a:hover { background: var(--paper-2); }
	.mt-nav__extra { display: none; }
}
@media (max-width: 1023px) {
	.mt-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
	.mt-nav {
		position: fixed; inset: 0; z-index: 90; background: var(--forest); color: var(--paper);
		display: flex; flex-direction: column; justify-content: flex-start; padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
		opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
		overflow-y: auto;
	}
	.mt-nav-open .mt-nav { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.mt-nav-open { overflow: hidden; }
	.mt-nav-open .mt-header { background: var(--forest); border-bottom-color: var(--line-light); box-shadow: none; }
	.mt-nav-open .mt-header__brand > .mt-logo:not(.mt-logo--light), .mt-nav-open .mt-header__brand > .custom-logo-link { display: none; }
	.mt-nav-open .mt-logo--light { display: flex; }
	.mt-nav-open .mt-burger { color: var(--paper); border-color: var(--line-light); }
	.mt-nav-open .mt-header__tools .mt-lang { display: none; }
	.mt-header__brand, .mt-header__tools { position: relative; z-index: 95; }
	.mt-nav__list > li { border-bottom: 1px solid var(--line-light); }
	.mt-nav__list > li > a { display: block; padding: .9rem 0; font-family: var(--font-display); font-size: clamp(1.7rem, 6vw, 2.2rem); font-weight: 500; color: var(--paper); }
	.mt-nav__list .menu-item-has-children { position: relative; }
	.mt-nav__toggle { display: block; position: absolute; right: 0; top: .6rem; width: 2.5rem; height: 2.5rem; border: 1px solid var(--line-light); border-radius: 999px; background: none; color: var(--paper); }
	.mt-nav__toggle::before { content: "+"; font-size: 1.3rem; line-height: 1; }
	.mt-nav__list li.is-open > .mt-nav__toggle::before { content: "–"; }
	.mt-nav__list .sub-menu { display: none; padding: 0 0 1rem 1rem; }
	.mt-nav__list li.is-open > .sub-menu { display: block; }
	.mt-nav__list .sub-menu a { display: block; padding: .5rem 0; color: var(--sage-light); font-size: 1.05rem; }
	.mt-nav__extra { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
	.mt-lang--mobile { display: block; }
	.mt-lang--mobile ul { border-color: var(--line-light); }
	.mt-lang--mobile a { color: var(--sage-light); }
	.mt-lang--mobile a.is-current { background: var(--paper); color: var(--forest); }
	.mt-nav__phone { display: inline-flex; align-items: center; gap: .6rem; color: var(--paper); font-weight: 600; text-decoration: none; font-size: 1.1rem; }
	.mt-header__tools .mt-lang { display: none; }
}
@media (min-width: 560px) and (max-width: 1023px) { .mt-header__tools .mt-lang { display: block; } .mt-nav-open .mt-header__tools .mt-lang { display: none; } }

/* Logged-in admin bar offset (the mobile panel padding only applies below the desktop breakpoint) */
.admin-bar .mt-header { top: 32px; }
@media (max-width: 1023px) { .admin-bar .mt-nav { padding-top: calc(var(--header-h) + 32px + 1.5rem); } }
@media (max-width: 782px) { .admin-bar .mt-header { top: 46px; } .admin-bar .mt-nav { padding-top: calc(var(--header-h) + 46px + 1.5rem); } }

/* Transparent header over the dark home hero (until scrolled) */
.mt-dark-header .mt-header:not(.is-scrolled):not(.mt-nav-open-header) { background: transparent; }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-logo:not(.mt-logo--light), .mt-dark-header .mt-header:not(.is-scrolled) .custom-logo-link { display: none; }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-logo--light { display: flex; }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-nav__list > li > a, .mt-dark-header .mt-header:not(.is-scrolled) .mt-header__phone, .mt-dark-header .mt-header:not(.is-scrolled) .mt-burger { color: var(--paper); }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-burger { border-color: var(--line-light); }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-nav__list > li > a::after { background: var(--sand); }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-lang ul { border-color: var(--line-light); }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-lang a { color: var(--sage-light); }
.mt-dark-header .mt-header:not(.is-scrolled) .mt-lang a.is-current { background: var(--paper); color: var(--forest); }
.mt-dark-header .mt-header { margin-bottom: calc(-1 * var(--header-h)); }
.mt-dark-header .mt-hero { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem)); }
.mt-nav-open.mt-dark-header .mt-header { background: var(--forest); }

/* ------------------------------------------------------------------ Hero */
.mt-hero {
	position: relative; overflow: hidden;
	background: var(--forest); color: var(--paper);
	padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6.5rem);
	isolation: isolate;
}
.mt-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 70% at 100% 0%, rgba(203, 187, 164, .16), transparent 60%), radial-gradient(60% 50% at 0% 100%, rgba(63, 90, 60, .55), transparent 60%); z-index: -1; }
.mt-hero > .mt-contours { position: absolute; inset: -10% -5% -10% -5%; width: 110%; height: 120%; color: var(--sand); opacity: .14; z-index: -1; pointer-events: none; }
.mt-hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
@media (min-width: 900px) { .mt-hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.mt-hero__copy .mt-eyebrow { color: var(--sand); }
.mt-hero__title { color: var(--paper); font-size: clamp(2.7rem, 1.8rem + 4vw, 5.4rem); font-weight: 500; line-height: 1.02; margin-bottom: .45em; max-width: 15ch; }
.mt-hero__lead, .mt-hero .mt-lead { color: var(--sage-light); max-width: 52ch; margin-bottom: 2rem; }
.mt-hero .wp-block-buttons { margin-bottom: 2.5rem; }
.mt-hero__facts { list-style: none; margin: 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: repeat(3, auto); gap: 1rem 2rem; justify-content: start; }
.mt-hero__facts li { font-size: .8rem; letter-spacing: .04em; color: var(--sage-light); line-height: 1.3; }
.mt-hero__facts li strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: var(--paper); letter-spacing: 0; margin-bottom: .15rem; }
@media (max-width: 560px) { .mt-hero__facts { grid-template-columns: 1fr 1fr; } }
.mt-hero__media { position: relative; }
.mt-hero__media .wp-block-image { position: relative; margin: 0; }
.mt-hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 80px; }
@media (max-width: 899px) { .mt-hero__media img { aspect-ratio: 16 / 11; } }
.mt-hero__media .wp-block-image::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--sand); border-radius: inherit; transform: translate(14px, 14px); opacity: .55; pointer-events: none; z-index: -1; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 80px; }
.mt-hero__card {
	position: absolute; left: clamp(-1.5rem, -3vw, -3rem); bottom: 2.5rem; max-width: 17rem;
	background: var(--paper); color: var(--ink); padding: 1.25rem 1.4rem; border-radius: var(--r); box-shadow: var(--shadow);
	font-size: .9rem; line-height: 1.45;
}
.mt-hero__card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--forest); margin-bottom: .2rem; line-height: 1.1; }
.mt-hero__card p { margin: 0; color: var(--ink-soft); }
@media (max-width: 899px) { .mt-hero__card { position: static; margin-top: -2rem; margin-left: 1rem; max-width: 22rem; } }

/* Page hero (interior) */
.mt-page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1rem, 3vw, 2rem); position: relative; }
.mt-page-hero__title { margin-bottom: .35em; max-width: 18ch; }
.mt-page-hero__lead { margin-bottom: 0; }
.mt-page-hero--post .mt-page-hero__title { max-width: 24ch; font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.8rem); }
.mt-crumbs { margin-bottom: 1.75rem; font-size: .8rem; }
.mt-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem .5rem; color: var(--ink-soft); }
.mt-crumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .45; }
.mt-crumbs a { color: var(--ink-soft); text-decoration: none; }
.mt-crumbs a:hover { color: var(--forest); text-decoration: underline; }
.mt-crumbs [aria-current] { color: var(--forest); }
.mt-notice { margin-block: 1.5rem; padding: 1rem 1.25rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--white); }
.mt-notice p { margin: 0; }
.mt-notice--ok { border-color: var(--ok); color: var(--ok); }
.mt-notice--error { border-color: var(--error); color: var(--error); }

/* ---------------------------------------------------------------- Services */
.mt-services { border-top: 1px solid var(--line); }
.mt-service { display: grid; grid-template-columns: 3.25rem 1fr; gap: 0 1.5rem; padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: 1px solid var(--line); position: relative; text-decoration: none; color: inherit; transition: background .3s var(--ease); align-items: start; }
@media (min-width: 900px) { .mt-service { grid-template-columns: 3.25rem 1.1fr 1fr auto; align-items: center; } }
.mt-service__num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--sand-deep); line-height: 1; padding-top: .35rem; }
.mt-service__title { margin: 0 0 .35rem; font-size: clamp(1.5rem, 1.25rem + 1vw, 2.1rem); transition: color .3s; }
.mt-service__text { margin: 0; color: var(--ink-soft); grid-column: 2; }
@media (min-width: 900px) { .mt-service__text { grid-column: auto; } }
.mt-service__link { grid-column: 2; margin-top: 1rem; }
@media (min-width: 900px) { .mt-service__link { grid-column: auto; margin-top: 0; justify-self: end; } }
.mt-service:hover .mt-service__title { color: var(--moss); }
.mt-service::before { content: ""; position: absolute; left: -1.25rem; right: -1.25rem; top: 0; bottom: 0; background: var(--paper-2); border-radius: var(--r); opacity: 0; transition: opacity .3s var(--ease); z-index: -1; }
.mt-service:hover::before { opacity: 1; }
.mt-service .mt-link { pointer-events: none; }
.mt-service:hover .mt-link::after { opacity: 1; }
.mt-service:hover .mt-link .mt-icon { transform: translateX(3px); }

/* Icon rows (badge + label + text) */
.mt-icon-rows { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0; }
.mt-icon-rows li { display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-top: 1px solid var(--line); }
.mt-icon-rows li:last-child { border-bottom: 1px solid var(--line); }
.mt-icon-rows .mt-icon-rows__badge { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--forest); color: var(--paper); display: grid; place-items: center; }
.mt-icon-rows .mt-icon-rows__badge svg { width: 1.25rem; height: 1.25rem; }
.mt-icon-rows strong { display: block; color: var(--forest); font-weight: 600; margin-bottom: .15rem; }
.mt-icon-rows p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Price sticker ("Nuo 40 €") */
.mt-sticker { display: inline-grid; place-items: center; text-align: center; width: 9.5rem; height: 9.5rem; border-radius: 50%; background: var(--forest); color: var(--paper); padding: 1rem; line-height: 1.1; box-shadow: 0 20px 40px -24px rgba(28, 46, 24, .6); transform: rotate(-4deg); }
.mt-sticker small { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); margin-bottom: .2rem; }
.mt-sticker strong { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; }
.mt-sticker span { display: block; font-size: .8rem; color: var(--sage-light); margin-top: .2rem; }
.mt-split__media { position: relative; }
.mt-split__media .mt-sticker { position: absolute; right: -1rem; top: -1.5rem; z-index: 2; }
@media (max-width: 899px) { .mt-split__media .mt-sticker { right: .5rem; top: -1rem; width: 7.5rem; height: 7.5rem; } .mt-split__media .mt-sticker strong { font-size: 2rem; } }

/* Alternating text + image */
.mt-split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .mt-split { grid-template-columns: 1fr 1fr; } .mt-split--reverse > :first-child { order: 2; } }
.mt-split__text > :last-child { margin-bottom: 0; }
.mt-split__text h2 { max-width: 16ch; }
.mt-split .wp-block-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); }
.mt-split__text .wp-block-buttons { margin-top: 1.75rem; }

/* Image styles */
.wp-block-image.is-style-framed { position: relative; }
.wp-block-image.is-style-framed img { border-radius: var(--r-lg); }
.wp-block-image.is-style-framed::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--sand-deep); border-radius: var(--r-lg); transform: translate(14px, 14px); opacity: .6; pointer-events: none; z-index: -1; }
.wp-block-image.is-style-arch img { border-radius: 999px 999px var(--r-lg) var(--r-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.wp-block-image img { border-radius: var(--r); }
.wp-block-image figcaption { font-size: .8rem; color: var(--ink-soft); margin-top: .6rem; }

/* ------------------------------------------------------------------ Steps */
.mt-steps { display: grid; gap: 2rem 2.5rem; counter-reset: step; position: relative; padding-top: 2rem; }
@media (min-width: 720px) { .mt-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mt-steps { grid-template-columns: repeat(4, 1fr); } }
.mt-steps::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line); }
.mt-step { position: relative; padding-top: 1.5rem; }
.mt-step::before { content: ""; position: absolute; top: -2rem; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--sand-deep); transform: translateY(-4px); }
.mt-step__num { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--sand-deep); margin: 0 0 .75rem; }
.mt-step h3, .mt-step__title { font-size: 1.45rem; margin-bottom: .5rem; }
.mt-step p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.mt-section--forest .mt-step p:last-child { color: var(--sage-light); }
.mt-section--forest .mt-steps::before { background: var(--line-light); }
.mt-section--forest .mt-step::before { background: var(--sand); }

/* -------------------------------------------------------------- Why / values */
.mt-why { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px) { .mt-why { grid-template-columns: 1fr 1.25fr; } }
.mt-why__statement { font-family: var(--font-display); font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.75rem); font-weight: 500; line-height: 1.2; color: var(--forest); margin: 0; text-wrap: balance; }
@media (min-width: 900px) { .mt-why__statement { position: sticky; top: calc(var(--header-h) + 2rem); } }
.mt-why__statement em { color: var(--sand-deep); }
.mt-why__grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .mt-why__grid { grid-template-columns: repeat(2, 1fr); } }
.mt-why__item { padding: 1.75rem 0 0; border-top: 1px solid var(--line); }
.mt-why__icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; background: var(--forest); border-radius: 50%; color: var(--paper); margin-bottom: 1.1rem; }
.mt-why__icon svg { width: 1.25rem; height: 1.25rem; }
.mt-section--paper2 .mt-why__icon { background: var(--forest); }
.mt-why__item h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.mt-why__item p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.mt-why__grid > .wp-block-html { display: contents; }

/* ------------------------------------------------------------------ Stats */
.mt-stats { display: grid; gap: 2rem; }
@media (min-width: 600px) { .mt-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mt-stats { grid-template-columns: repeat(4, 1fr); gap: 0; } .mt-stat + .mt-stat { border-left: 1px solid var(--line-light); padding-left: 2.5rem; } }
.mt-stat__num { font-family: var(--font-display); font-size: clamp(3rem, 2.5rem + 2.5vw, 4.75rem); font-weight: 500; line-height: 1; color: var(--paper); margin: 0 0 .5rem; }
.mt-stat__num sup { font-size: .5em; vertical-align: super; color: var(--sand); }
.mt-stat__label { margin: 0; color: var(--sage-light); font-size: .95rem; max-width: 22ch; }
.mt-section--forest .mt-stat__label { color: var(--sage-light); }

/* --------------------------------------------------------------- Regions */
.mt-regions { padding-block: var(--section); background: var(--paper-2); }
.mt-regions__grid { display: grid; gap: 1.5rem 2rem; }
@media (min-width: 600px) { .mt-regions__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mt-regions__grid { grid-template-columns: repeat(5, 1fr); } }
.mt-regions__county { border-top: 1px solid var(--line-strong); padding-top: 1rem; }
.mt-regions__county h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.mt-regions__county p { margin: 0; font-size: .85rem; line-height: 1.6; color: var(--ink-soft); }
.mt-regions__county--siauliu, .mt-regions__county--panevezio { border-top-color: var(--sand-deep); }

/* ------------------------------------------------------------------- FAQ */
.mt-faq { border-top: 1px solid var(--line); }
.mt-faq .wp-block-details { border-bottom: 1px solid var(--line); padding: 0; margin: 0; }
.mt-faq summary { list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; font-family: var(--font-display); font-size: clamp(1.3rem, 1.15rem + .6vw, 1.65rem); font-weight: 600; color: var(--forest); position: relative; line-height: 1.25; }
.mt-faq summary::-webkit-details-marker { display: none; }
.mt-faq summary::after { content: ""; position: absolute; right: .25rem; top: 50%; width: 1.75rem; height: 1.75rem; transform: translateY(-50%); border: 1px solid var(--line-strong); border-radius: 50%; background: linear-gradient(var(--forest), var(--forest)) center / 11px 1px no-repeat, linear-gradient(var(--forest), var(--forest)) center / 1px 11px no-repeat; transition: transform .35s var(--ease), background .3s; }
.mt-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.mt-faq summary:hover { color: var(--moss); }
.mt-faq .wp-block-details > *:not(summary) { max-width: 68ch; color: var(--ink-soft); }
.mt-faq .wp-block-details > p:last-child, .mt-faq .wp-block-details > ul:last-child { margin-bottom: 1.5rem; }
.mt-faq details[open] > *:not(summary) { animation: mt-fade .4s var(--ease); }
@keyframes mt-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------- CTA panel */
.mt-cta { background: var(--forest); color: var(--paper); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; display: grid; gap: 1.5rem 3rem; align-items: center; isolation: isolate; }
@media (min-width: 900px) { .mt-cta { grid-template-columns: 1.4fr 1fr; } .mt-cta .wp-block-buttons { justify-content: flex-end; } }
.mt-cta h2, .mt-cta h3 { color: var(--paper); margin-bottom: .4em; }
.mt-cta p { color: var(--sage-light); margin: 0; }
.mt-cta > .wp-block-html { position: absolute; inset: 0; z-index: -1; }
.mt-cta .mt-contours { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--sand); opacity: .12; }

/* Closing band */
.mt-cta-band { background: var(--forest-deep); color: var(--paper); position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); isolation: isolate; }
.mt-cta-band > .mt-contours { position: absolute; inset: -20% -10%; width: 120%; height: 140%; color: var(--sand); opacity: .12; z-index: -1; }
.mt-cta-band__inner { display: grid; gap: 2rem 4rem; align-items: center; }
@media (min-width: 900px) { .mt-cta-band__inner { grid-template-columns: 1.3fr 1fr; } }
.mt-cta-band__title { color: var(--paper); font-size: clamp(2.2rem, 1.6rem + 2.6vw, 4rem); font-weight: 500; margin-bottom: .4em; max-width: 16ch; }
.mt-cta-band__text { color: var(--sage-light); max-width: 52ch; margin: 0; }
.mt-cta-band__actions { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
@media (min-width: 900px) { .mt-cta-band__actions { align-items: flex-end; } }
.mt-cta-band__phone { display: inline-flex; align-items: center; gap: .75rem; color: var(--paper); text-decoration: none; font-family: var(--font-display); font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); font-weight: 500; }
.mt-cta-band__phone .mt-icon { width: 1.35rem; height: 1.35rem; color: var(--sand); }
.mt-cta-band__phone:hover { color: var(--sand); }

/* ------------------------------------------------------------------ Forms */
.mt-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 30px 60px -40px rgba(28, 46, 24, .35); }
.mt-form__title { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem); margin-bottom: .3em; }
.mt-form__intro { color: var(--ink-soft); margin-bottom: 2rem; max-width: 60ch; }
.mt-form__section + .mt-form__section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.mt-form__legend { display: flex; align-items: center; gap: .75rem; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.5rem; }
.mt-form__legend span { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--sand-deep); }
.mt-form__row { display: grid; gap: 1.25rem 1.5rem; }
@media (min-width: 640px) { .mt-form__row { grid-template-columns: 1fr 1fr; } }
.mt-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; position: relative; }
.mt-form__row .mt-field { margin-bottom: 0; }
.mt-form__row + .mt-form__row, .mt-form__row + .mt-field, .mt-pills + .mt-form__row { margin-top: 1.25rem; }
.mt-field label, .mt-pills legend { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); }
.mt-req { color: var(--sand-deep); }
.mt-field input:not([type="checkbox"]):not([type="file"]), .mt-field select, .mt-field textarea {
	width: 100%; padding: .8rem 0; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; background: transparent; color: var(--ink); font-size: 1.02rem; transition: border-color .25s, box-shadow .25s; -webkit-appearance: none; appearance: none;
}
.mt-field select { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23283628' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right center / 1.1rem no-repeat; padding-right: 1.6rem; cursor: pointer; }
.mt-field textarea { resize: vertical; min-height: 6rem; line-height: 1.5; }
.mt-field input:focus, .mt-field select:focus, .mt-field textarea:focus { outline: none; border-bottom-color: var(--forest); box-shadow: 0 1px 0 0 var(--forest); }
.mt-field input::placeholder, .mt-field textarea::placeholder { color: #a0a79e; }
.mt-field__hint { font-size: .8rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }
.mt-field__error { font-size: .8rem; color: var(--error); margin: 0; }
.is-invalid input, .is-invalid select, .is-invalid textarea { border-bottom-color: var(--error) !important; }
.mt-field--check { flex-direction: row; align-items: flex-start; gap: .75rem; margin-top: 1.5rem; }
.mt-field--check input { width: 1.2rem; height: 1.2rem; margin: .15rem 0 0; accent-color: var(--forest); flex: none; }
.mt-field--check label { font-size: .875rem; font-weight: 500; letter-spacing: 0; color: var(--ink); line-height: 1.5; }
.mt-pills { border: 0; padding: 0; margin: 0 0 1.5rem; }
.mt-pills legend { padding: 0; margin-bottom: .75rem; }
.mt-pills__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.mt-pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.mt-pills label { display: inline-flex; padding: .6rem 1rem; border: 1px solid var(--line-strong); border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--ink); cursor: pointer; transition: all .2s var(--ease); letter-spacing: 0; }
.mt-pills label:hover { border-color: var(--forest); }
.mt-pills input:checked + label { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.mt-pills input:focus-visible + label { outline: 2px solid var(--sand-deep); outline-offset: 2px; }
.mt-pills.is-invalid label { border-color: var(--error); }
.mt-dropzone { position: relative; border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 1.25rem; transition: border-color .2s, background .2s; }
.mt-dropzone.is-over { border-color: var(--forest); background: var(--paper); }
.mt-dropzone input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.mt-dropzone__text { display: flex; gap: .75rem; align-items: flex-start; margin: 0; font-size: .875rem; color: var(--ink-soft); }
.mt-dropzone__text .mt-icon { color: var(--forest); margin-top: .1rem; }
.mt-dropzone__list { list-style: none; margin: .75rem 0 0; padding: 0; position: relative; z-index: 1; display: none; }
.mt-dropzone.has-files .mt-dropzone__list { display: block; }
.mt-dropzone__list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .85rem; padding: .4rem 0; border-top: 1px solid var(--line); }
.mt-dropzone__list button { border: 0; background: var(--paper-2); width: 1.5rem; height: 1.5rem; border-radius: 50%; line-height: 1; }
.mt-form__footer { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: 2rem; }
.mt-form__note { display: flex; align-items: center; gap: .5rem; margin: 0; font-size: .85rem; color: var(--ink-soft); }
.mt-form__note .mt-icon { color: var(--forest); }
.mt-form__status { margin: 1rem 0 0; font-size: .9rem; min-height: 1.4em; }
.mt-form__status.is-error { color: var(--error); }
.mt-form__status.is-info { color: var(--ink-soft); }
.mt-form__hp { position: absolute !important; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.mt-form.is-sending { opacity: .6; pointer-events: none; }
.mt-form__success { display: grid; gap: 1rem; justify-items: center; text-align: center; padding: 2.5rem 1rem; }
.mt-form__success svg { width: 3.5rem; height: 3.5rem; color: var(--ok); border: 1px solid var(--ok); border-radius: 50%; padding: .8rem; }
.mt-form__success p { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); max-width: 34ch; margin: 0; line-height: 1.3; }
.mt-form__more { margin: 1.25rem 0 0; font-size: .9rem; }
.mt-form__more a { display: inline-flex; gap: .5rem; align-items: center; text-decoration: none; color: var(--ink-soft); }
.mt-form__more a:hover { color: var(--forest); }
.mt-form__turnstile { margin-top: 1rem; }


/* Stepped form */
.mt-progress { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; gap: 0; counter-reset: none; }
.mt-progress__item { flex: 1; display: flex; align-items: center; gap: .55rem; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); position: relative; padding-bottom: .75rem; }
.mt-progress__item::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--paper-3); border-radius: 2px; }
.mt-progress__item.is-active::after, .mt-progress__item.is-done::after { background: var(--forest); }
.mt-progress__num { width: 1.5rem; height: 1.5rem; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--forest); flex: none; }
.mt-progress__item.is-active .mt-progress__num { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.mt-progress__item.is-done .mt-progress__num { background: var(--sand); border-color: var(--sand); color: var(--forest-deep); }
.mt-progress__item.is-done .mt-progress__num::before { content: "✓"; font-family: var(--font-body); font-size: .75rem; }
.mt-progress__item.is-done .mt-progress__num { font-size: 0; }
@media (max-width: 560px) { .mt-progress__label { display: none; } .mt-progress__item.is-active .mt-progress__label { display: inline; } }
.mt-form__step { border: 0; padding: 0; margin: 0; min-width: 0; }
.mt-form__step + .mt-form__step { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.mt-form--steps.is-enhanced .mt-form__step { display: none; margin-top: 0; padding-top: 0; border-top: 0; }
.mt-form--steps.is-enhanced .mt-form__step.is-active { display: block; animation: mt-fade .35s var(--ease); }
.mt-form__legend-wrap { display: block; width: 100%; float: none; padding: 0; margin: 0; }
.mt-form__step-meta { display: flex; justify-content: space-between; gap: 1rem; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sand-deep); margin: 0 0 .6rem; }
.mt-form__step-time { color: var(--ink-soft); letter-spacing: .04em; text-transform: none; font-weight: 500; }
.mt-form__question { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 1.3rem + .8vw, 1.95rem); font-weight: 600; color: var(--forest); line-height: 1.15; margin: 0 0 1.25rem; letter-spacing: -.01em; text-transform: none; }
.mt-form__hint { font-size: .9rem; color: var(--ink-soft); margin: -.5rem 0 1.25rem; }
.mt-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .mt-choices { grid-template-columns: repeat(3, 1fr); } }
.mt-choices input { position: absolute; opacity: 0; width: 0; height: 0; }
.mt-choice { display: flex; flex-direction: column; gap: .6rem; padding: .9rem .9rem .85rem; border: 1px solid var(--line-strong); border-radius: var(--r); background: var(--white); cursor: pointer; font-size: .9rem; font-weight: 500; line-height: 1.3; color: var(--ink); letter-spacing: 0; transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); min-height: 5.25rem; }
.mt-choice:hover { border-color: var(--forest); transform: translateY(-1px); }
.mt-choice__icon { width: 1.5rem; height: 1.5rem; color: var(--sand-deep); }
.mt-choices input:checked + .mt-choice { border-color: var(--forest); background: var(--forest); color: var(--paper); box-shadow: 0 10px 24px -18px rgba(28, 46, 24, .6); }
.mt-choices input:checked + .mt-choice .mt-choice__icon { color: var(--sand); }
.mt-choices input:focus-visible + .mt-choice { outline: 2px solid var(--sand-deep); outline-offset: 2px; }
.mt-choices.is-invalid .mt-choice { border-color: var(--error); }
.mt-choices + .mt-field__error { margin: -1rem 0 1.25rem; }
.mt-form__nav { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; margin-top: 1.75rem; }
.mt-form__nav .mt-form__note { margin-left: auto; }
@media (max-width: 560px) { .mt-form__nav .mt-form__note { margin-left: 0; width: 100%; } .mt-form__nav .mt-btn { flex: 1; justify-content: center; } }
.mt-form__skip { background: none; border: 0; padding: .5rem .25rem; font-size: .875rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: .2em; margin-left: auto; }
.mt-form__skip:hover { color: var(--forest); }
.mt-form__summary { display: inline-block; margin: -.5rem 0 1.25rem; padding: .45rem .8rem; border-radius: 999px; background: var(--paper-2); font-size: .85rem; color: var(--forest); font-weight: 500; }
.mt-form--steps .mt-form__step .mt-form__note { margin-top: 1rem; }

/* Sticky mobile call to action */
.mt-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; gap: .5rem; padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(28, 46, 24, .5); transform: translateY(0); transition: transform .3s var(--ease); }
.mt-sticky-cta.is-hidden { transform: translateY(110%); }
.mt-sticky-cta .mt-btn { flex: 1; justify-content: center; }
.mt-sticky-cta__call { display: inline-flex; align-items: center; justify-content: center; width: 2.9rem; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--forest); }
@media (min-width: 1024px) { .mt-sticky-cta { display: none; } }
@media (max-width: 1023px) { .mt-consent__card { bottom: calc(1rem + 4.25rem); } .mt-nav-open .mt-sticky-cta { display: none; } }

/* Form section on pages */
.mt-form-section { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 1024px) { .mt-form-section { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
@media (min-width: 1024px) { .mt-form-section__copy { position: sticky; top: calc(var(--header-h) + 2rem); } }
.mt-form-section__copy .mt-section-head { margin-bottom: 1.75rem; }
.mt-form-section__list { list-style: none; padding: 0; margin: 0; }
.mt-form-section__list li { padding: .8rem 0; border-top: 1px solid var(--line); display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); }
.mt-form-section__list li::before { content: ""; flex: none; width: 1.1rem; height: 1.1rem; margin-top: .25rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89377' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat; }
.mt-form-section__copy .mt-contact-lines { margin-top: 1.5rem; }
.mt-form-section__phone { margin: 1.25rem 0 0; }
.mt-form-section__phone .mt-link::after { display: none; }

/* Contact page */
.mt-company-card { background: var(--paper-2); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.mt-company-card__name { font-size: 1.6rem; margin-bottom: 1rem; }
.mt-contact-lines { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .65rem; }
.mt-contact-lines li { display: flex; gap: .75rem; align-items: flex-start; line-height: 1.45; }
.mt-contact-lines .mt-icon { color: var(--sand-deep); margin-top: .2rem; }
.mt-contact-lines a { text-decoration: none; font-weight: 500; }
.mt-contact-lines a:hover { text-decoration: underline; }
.mt-company-ids { font-size: .85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.25rem; }

/* ------------------------------------------------------------------ Cards */
.mt-post-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .mt-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mt-post-grid { grid-template-columns: repeat(3, 1fr); } }
.mt-card { display: flex; flex-direction: column; }
.mt-card__media { display: block; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4 / 3; background: var(--paper-2); }
.mt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); border-radius: 0; }
.mt-card:hover .mt-card__media img { transform: scale(1.04); }
.mt-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--sand-deep); }
.mt-card__placeholder svg { width: 3rem; opacity: .6; }
.mt-card__body { padding: 1.25rem .25rem 0; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.mt-card__meta { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.mt-card__title { font-size: 1.45rem; margin: 0; }
.mt-card__title a { text-decoration: none; }
.mt-card__title a:hover { color: var(--moss); }
.mt-card__excerpt { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }
.mt-card .mt-link { margin-top: .5rem; align-self: flex-start; }
.mt-archive { padding-block: 2rem var(--section); }
.mt-empty { color: var(--ink-soft); }
.mt-pagination { margin-top: 3rem; }
.mt-pagination .nav-links { display: flex; gap: .5rem; justify-content: center; }
.mt-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 .75rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: .9rem; }
.mt-pagination .page-numbers.current { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.mt-search { display: flex; gap: .5rem; max-width: 30rem; }
.mt-search__input { flex: 1; padding: .7rem 1rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--white); }

/* ---------------------------------------------------------- Single / prose */
.mt-single__figure { margin-block: 1.5rem 3rem; }
.mt-single__image { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--r-lg); }
.mt-single__body { padding-bottom: 3rem; }
.mt-post-meta { font-size: .85rem; color: var(--ink-soft); margin: 0; }
.mt-post-meta a { color: inherit; }
.mt-post-meta__sep { opacity: .5; margin: 0 .2rem; }
.mt-single__footer { padding-bottom: var(--section); }
.mt-single__author { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: var(--content); margin-inline: auto; }
.mt-single__author-mark { width: 3rem; flex: none; color: var(--forest); }
.mt-single__author-name { font-weight: 600; margin-bottom: .25rem; }
.mt-single__author-bio { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.mt-related { margin-top: 4rem; }
.mt-related__title { font-size: 2rem; margin-bottom: 1.5rem; }
.mt-updated { font-size: .85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 3rem; }

.mt-prose > h2, .mt-page__content > h2 { margin-top: 2.2em; font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem); }
.mt-prose > h3, .mt-page__content > h3 { margin-top: 1.8em; }
.mt-prose > p, .mt-page__content > p { font-size: 1.0625rem; }
.mt-prose > p.mt-lead, .mt-page__content > p.mt-lead, .mt-page__content > p.has-large-font-size { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); color: var(--ink-soft); }
.mt-prose ul:not([class]), .wp-block-list { padding-left: 1.25rem; }
.wp-block-list li { margin-bottom: .45em; }
.wp-block-list li::marker { color: var(--sand-deep); }
.wp-block-list.is-style-checks { list-style: none; padding: 0; }
.wp-block-list.is-style-checks li { position: relative; padding-left: 1.9rem; margin-bottom: .6em; }
.wp-block-list.is-style-checks li::before { content: ""; position: absolute; left: 0; top: .25em; width: 1.15rem; height: 1.15rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89377' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat; }
blockquote, .wp-block-quote { margin: 2rem 0; padding: .25rem 0 .25rem 1.5rem; border-left: 2px solid var(--sand-deep); font-family: var(--font-display); font-size: 1.45rem; font-style: italic; line-height: 1.35; color: var(--forest); }
.wp-block-quote cite { display: block; margin-top: .75rem; font-family: var(--font-body); font-style: normal; font-size: .85rem; color: var(--ink-soft); }
.wp-block-table table, .mt-table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 0; }
.wp-block-table th, .wp-block-table td { padding: .8rem .75rem; border: 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.wp-block-table table { border-collapse: collapse; border: 0; }
.wp-block-table th { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.wp-block-table.is-style-ledger table { font-variant-numeric: tabular-nums; }
.wp-block-table.is-style-ledger td:last-child, .wp-block-table.is-style-ledger th:last-child { text-align: right; }
.wp-block-table.is-style-ledger td:first-child { font-weight: 500; color: var(--forest); }
.wp-block-table figcaption { font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; }
.wp-block-separator { border: 0; border-top: 1px solid var(--line); margin: 3rem auto; max-width: 8rem; }
.wp-block-separator.is-style-wide { max-width: none; }
.wp-block-columns { gap: 2rem; }
.mt-callout { background: var(--paper-2); border-left: 2px solid var(--sand-deep); padding: 1.25rem 1.5rem; border-radius: 0 var(--r) var(--r) 0; margin-block: 2rem; }
.mt-callout p:last-child { margin-bottom: 0; }
.mt-callout strong { color: var(--forest); }
.mt-definition { font-size: 1.15rem; line-height: 1.55; padding: 1.5rem 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); margin-block: 2rem; }
.mt-definition strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); }

/* ----------------------------------------------------------------- Footer */
.mt-footer { background: var(--forest-ink); color: var(--sage-light); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; position: relative; overflow: hidden; }
.mt-footer a { color: var(--paper); text-decoration: none; }
.mt-footer a:hover { color: var(--sand); }
.mt-footer__grid { display: grid; gap: 2.5rem 3rem; position: relative; }
@media (min-width: 720px) { .mt-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mt-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.mt-footer__brand { position: relative; }
.mt-footer__brand .mt-logo img { width: 190px; }
.mt-footer__about { margin: 1.5rem 0 0; max-width: 34ch; font-size: .95rem; }
.mt-footer__mark { position: absolute; right: -2rem; bottom: -6rem; width: 14rem; color: var(--sage); opacity: .12; pointer-events: none; }
@media (min-width: 1024px) { .mt-footer__mark { right: auto; left: 60%; bottom: -8rem; width: 16rem; } }
.mt-footer__title { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.25rem; }
.mt-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.mt-footer__contact .mt-contact-lines { font-size: .95rem; }
.mt-footer__contact .mt-contact-lines .mt-icon { color: var(--sand); }
.mt-footer__contact .mt-company-ids { color: var(--sage); }
.mt-footer__social { font-size: .9rem; }
.mt-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; font-size: .82rem; }
.mt-footer__copy { margin: 0; }
.mt-footer__legal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.mt-consent-open { background: none; border: 0; padding: 0; color: var(--paper); font-size: inherit; text-decoration: underline; text-underline-offset: .2em; }
.mt-consent-open:hover { color: var(--sand); }

/* ---------------------------------------------------------------- Consent */
.mt-consent { position: fixed; inset: 0; z-index: 900; pointer-events: none; }
.mt-consent__card { pointer-events: auto; position: absolute; left: 1rem; right: 1rem; bottom: 1rem; max-width: 26rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow); animation: mt-rise .5s var(--ease); }
@media (min-width: 640px) { .mt-consent__card { left: 1.5rem; right: auto; bottom: 1.5rem; } }
@keyframes mt-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.mt-consent__title { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--forest); margin: 0 0 .5rem; }
.mt-consent__title .mt-icon { color: var(--sand-deep); }
.mt-consent__text { font-size: .875rem; color: var(--ink-soft); margin: 0 0 1.1rem; line-height: 1.5; }
.mt-consent__actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.mt-consent__link { background: none; border: 0; padding: .4rem .2rem; font-size: .85rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: .2em; }
.mt-consent__link:hover { color: var(--forest); }
.mt-consent__modal { pointer-events: auto; position: absolute; inset: 0; background: rgba(28, 46, 24, .55); display: grid; place-items: center; padding: 1rem; overflow-y: auto; }
.mt-consent__dialog { background: var(--white); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.25rem); max-width: 34rem; width: 100%; box-shadow: var(--shadow); }
.mt-consent__dialog-title { font-size: 1.75rem; margin-bottom: .5rem; }
.mt-consent__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .5rem; }
.mt-switch { display: flex; gap: .9rem; align-items: flex-start; padding: .9rem 0; border-top: 1px solid var(--line); cursor: pointer; }
.mt-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.mt-switch__track { flex: none; width: 2.6rem; height: 1.5rem; border-radius: 999px; background: var(--paper-3); position: relative; transition: background .25s; margin-top: .1rem; }
.mt-switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--white); box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .25s var(--ease); }
.mt-switch input:checked + .mt-switch__track { background: var(--forest); }
.mt-switch input:checked + .mt-switch__track::after { transform: translateX(1.1rem); }
.mt-switch input:disabled + .mt-switch__track { background: var(--sage); }
.mt-switch input:focus-visible + .mt-switch__track { outline: 2px solid var(--sand-deep); outline-offset: 2px; }
.mt-switch__label { font-size: .875rem; color: var(--ink-soft); line-height: 1.45; }
.mt-switch__label strong { display: block; color: var(--ink); font-size: .95rem; }

/* -------------------------------------------------------------------- 404 */
.mt-404 { position: relative; padding-block: clamp(5rem, 12vw, 9rem); overflow: hidden; isolation: isolate; }
.mt-404 > .mt-contours { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--forest); opacity: .08; z-index: -1; }
.mt-404__inner { max-width: 40rem; }
.mt-404__title { font-size: clamp(2.6rem, 2rem + 3vw, 4.5rem); }
.mt-404__text { color: var(--ink-soft); margin-bottom: 2rem; }

/* ----------------------------------------------------------------- Motion */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; } }

/* ------------------------------------------------------------------ Print */
@media print { .mt-header, .mt-footer, .mt-cta-band, .mt-consent, .mt-burger { display: none !important; } body { background: #fff; } }
