:root {
	--tm-ink: #132a33;
	--tm-ink-soft: #26434d;
	--tm-paper: #f7f4ed;
	--tm-white: #fff;
	--tm-mist: #e3e9eb;
	--tm-amber: #f2a33a;
	--tm-amber-soft: #fff0d5;
	--tm-success: #19704d;
	--tm-danger: #a53a36;
	--tm-line: rgba(19, 42, 51, 0.16);
	--tm-radius-sm: 6px;
	--tm-radius-md: 10px;
	--tm-radius-lg: 16px;
	--tm-shadow: 0 18px 50px rgba(19, 42, 51, 0.1);
	--tm-transition: 160ms ease;
	--tm-container-wide: 1180px;
	--tm-page-gutter: clamp(1rem, 3vw, 2rem);
}

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

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
	font-family: "Vazirmatn", Tahoma, sans-serif;
}

::selection {
	background: var(--tm-amber);
	color: var(--tm-ink);
}

a,
button,
input,
select,
textarea,
summary {
	transition:
		color var(--tm-transition),
		background-color var(--tm-transition),
		border-color var(--tm-transition),
		box-shadow var(--tm-transition),
		transform var(--tm-transition);
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: 3px;
}

a:hover {
	text-decoration-thickness: 2px;
}

.wp-site-blocks {
	padding: 0;
}

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

.wp-site-blocks > footer.wp-block-template-part,
.wp-site-blocks > footer.wp-block-template-part + .wp-block-template-part {
	margin-block-start: 0;
	margin-block-end: 0;
}

.tm-main {
	margin: 0;
}

/*
 * Keep every content shell aligned with the header. Section backgrounds stay
 * full width, while all alignwide content uses one container and one gutter.
 */
.wp-site-blocks .alignfull.has-global-padding {
	padding-inline: 0;
}

.wp-site-blocks .alignwide {
	width: min(calc(100% - (2 * var(--tm-page-gutter))), var(--tm-container-wide));
	max-width: var(--tm-container-wide);
	margin-inline: auto;
}

.wp-site-blocks .tm-layout-container {
	width: min(calc(100% - (2 * var(--tm-page-gutter))), var(--tm-container-wide));
	max-width: var(--tm-container-wide);
	min-width: 0;
	margin-inline: auto;
	padding-inline: 0;
}

.wp-site-blocks .alignwide.has-global-padding {
	padding-inline: 0;
}

.tm-guides-section__inner {
	width: min(calc(100% - (2 * var(--tm-page-gutter))), var(--tm-container-wide));
	margin-inline: auto;
}

.tm-section {
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.tm-section-heading {
	align-items: end;
	gap: 2rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tm-section-heading > * {
	margin: 0;
}

.tm-section-heading__copy {
	max-width: 31rem;
	color: var(--tm-ink-soft);
}

.tm-kicker,
.tm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.75rem;
	color: var(--tm-ink-soft);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.tm-kicker::before,
.tm-eyebrow::before {
	width: 1.8rem;
	height: 2px;
	background: var(--tm-amber);
	content: "";
}

.tm-lead {
	max-width: 50rem;
	color: var(--tm-ink-soft);
}

.tm-muted {
	color: #52666d;
}

.wp-element-button,
.tm-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--tm-amber);
	border-radius: 8px;
	background: var(--tm-amber);
	color: var(--tm-ink);
	font-weight: 700;
	text-decoration: none;
}

.wp-element-button:hover,
.tm-button:hover {
	border-color: #ffc36f;
	background: #ffc36f;
	color: var(--tm-ink);
	transform: translateY(-1px);
}

.wp-element-button:active,
.tm-button:active {
	transform: translateY(0);
}

.wp-block-button.is-style-outline > .wp-element-button {
	border-color: currentcolor;
	background: transparent;
	color: inherit;
}

.wp-block-button.is-style-outline > .wp-element-button:hover {
	border-color: var(--tm-amber);
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
}

.tm-button--small {
	min-height: 42px;
	padding: 0.55rem 1rem;
	font-size: 0.9rem;
}

/* Header */
.tm-site-header {
	position: relative;
	z-index: 30;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-site-header__inner {
	position: relative;
	min-height: 76px;
	gap: 1.25rem;
}

@media (min-width: 1025px) {
	.tm-site-header__inner {
		display: grid;
		grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
		grid-template-areas: "actions menu brand";
		align-items: center;
	}

	.tm-site-header__inner .tm-brand-lockup {
		grid-area: brand;
		justify-self: right;
	}

	.tm-site-header__inner .tm-nav {
		display: contents;
	}

	.tm-site-header__inner .tm-nav__desktop {
		grid-area: menu;
		justify-self: center;
	}

	.tm-site-header__inner .tm-nav__actions {
		grid-area: actions;
		justify-self: left;
	}
}

.tm-brand {
	margin: 0;
	white-space: nowrap;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 700;
}

.tm-brand-lockup,
.tm-footer-brand-lockup {
	gap: 0.65rem;
}

.tm-brand-lockup .wp-block-site-logo,
.tm-footer-brand-lockup .wp-block-site-logo {
	flex: 0 0 auto;
	margin: 0;
}

.tm-brand-lockup .custom-logo,
.tm-footer-brand-lockup .custom-logo {
	display: block;
	width: auto;
	max-width: 9rem;
	height: 46px;
	object-fit: contain;
}

.tm-footer-brand-lockup .custom-logo {
	height: 44px;
}

.tm-brand a,
.tm-footer-brand a {
	color: inherit;
}

.tm-brand a::after {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-inline-start: 0.45rem;
	border-radius: 50%;
	background: var(--tm-amber);
	content: "";
}

.tm-nav {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem;
}

.tm-nav__desktop,
.tm-nav__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tm-nav__desktop {
	gap: 1.35rem;
}

.tm-nav__link {
	position: relative;
	padding-block: 0.7rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.tm-nav__link::after {
	position: absolute;
	right: 0;
	bottom: 0.3rem;
	width: 0;
	height: 2px;
	background: var(--tm-amber);
	content: "";
	transition: width var(--tm-transition);
}

.tm-nav__link:hover,
.tm-nav__link[aria-current="page"] {
	color: var(--tm-white);
}

.tm-nav__link:hover::after,
.tm-nav__link[aria-current="page"]::after {
	width: 100%;
}

.tm-nav__phone {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 0.4rem;
	color: var(--tm-white);
	font-size: 0.9rem;
	font-weight: 700;
}

.tm-nav__mobile {
	display: none;
	position: relative;
}

.tm-nav__mobile summary {
	display: flex;
	min-width: 48px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--tm-radius-sm);
	cursor: pointer;
	list-style: none;
}

.tm-nav__mobile summary::-webkit-details-marker {
	display: none;
}

.tm-nav__mobile[open] summary {
	border-color: var(--tm-amber);
	background: var(--tm-amber);
	color: var(--tm-ink);
}

.tm-nav__mobile-panel {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 0;
	display: grid;
	min-width: min(19rem, calc(100vw - 2rem));
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--tm-radius-md);
	background: var(--tm-ink);
	box-shadow: var(--tm-shadow);
}

.tm-nav__mobile-panel .tm-nav__link {
	display: flex;
	min-height: 48px;
	align-items: center;
	padding: 0.75rem;
}

/* Hero */
.tm-hero {
	position: relative;
	margin: 0;
	padding-block: clamp(4rem, 9vw, 7.5rem);
	overflow: hidden;
	background-color: var(--tm-ink);
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 42px 42px;
	color: var(--tm-white);
}

.tm-hero::before {
	position: absolute;
	top: -14rem;
	left: -10rem;
	width: 34rem;
	height: 34rem;
	border: 1px solid rgba(242, 163, 58, 0.22);
	border-radius: 50%;
	content: "";
}

.tm-hero__grid {
	position: relative;
	z-index: 1;
	gap: clamp(2.5rem, 6vw, 6rem);
}

.tm-hero h1 {
	max-width: 13ch;
	margin-block: 0 1.25rem;
	letter-spacing: -0.035em;
}

.tm-hero__lead {
	max-width: 41rem;
	color: rgba(255, 255, 255, 0.78);
}

.tm-hero .tm-eyebrow {
	color: var(--tm-amber);
}

.tm-hero__actions {
	margin-top: 1.75rem;
}

.tm-hero__note {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	max-width: 36rem;
	margin-top: 1.25rem;
	color: rgba(255, 255, 255, 0.66);
}

.tm-hero__note::before {
	color: var(--tm-amber);
	content: "●";
	font-size: 0.7rem;
}

.tm-diagnostic {
	position: relative;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--tm-radius-lg);
	background: rgba(7, 24, 31, 0.72);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.tm-diagnostic::after {
	position: absolute;
	inset: 0.6rem -0.6rem -0.6rem 0.6rem;
	z-index: -1;
	border: 1px solid rgba(242, 163, 58, 0.3);
	border-radius: var(--tm-radius-lg);
	content: "";
}

.tm-diagnostic__top,
.tm-diagnostic__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.78rem;
}

.tm-diagnostic__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--tm-white);
}

.tm-diagnostic__status i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #55c18d;
	box-shadow: 0 0 0 4px rgba(85, 193, 141, 0.12);
}

.tm-diagnostic__screen {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-block: 1rem;
}

.tm-device {
	display: flex;
	min-height: 120px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--tm-radius-md);
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.85rem;
}

.tm-device svg {
	width: 46px;
	height: 46px;
	fill: none;
	stroke: var(--tm-amber);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.tm-diagnostic__footer {
	justify-content: center;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tm-diagnostic__footer b {
	color: var(--tm-amber);
	font-weight: 400;
}

/* Selector and service cards */
.tm-selector-section {
	background: var(--tm-white);
}

.tm-appliance-grid,
.tm-service-grid,
.tm-guide-preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.tm-appliance-link {
	display: grid;
	min-height: 116px;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
	color: var(--tm-ink);
}

.tm-appliance-link__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 12px;
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
}

.tm-service-icon {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentcolor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tm-appliance-link:hover {
	border-color: var(--tm-amber);
	box-shadow: 0 12px 30px rgba(19, 42, 51, 0.08);
	transform: translateY(-2px);
}

.tm-appliance-link__index {
	color: #5f7077;
	font-size: 0.75rem;
}

.tm-appliance-link__arrow {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-paper);
}

.tm-trust-band {
	margin: 0;
	padding-block: 1.5rem;
	background: var(--tm-amber);
}

.tm-trust-grid {
	margin-block: 0;
}

.tm-trust-item {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.75rem;
	margin: 0;
}

.tm-trust-item span {
	display: grid;
	width: 32px;
	height: 32px;
	grid-row: 1 / 3;
	place-items: center;
	border: 1px solid rgba(19, 42, 51, 0.35);
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-trust-item strong {
	line-height: 1.5;
}

.tm-trust-item small {
	color: rgba(19, 42, 51, 0.75);
	line-height: 1.6;
}

.tm-services-section {
	background: var(--tm-paper);
}

.tm-service-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tm-service-card {
	position: relative;
	display: flex;
	min-height: 290px;
	flex-direction: column;
	padding: 1.5rem;
	border-top: 3px solid var(--tm-ink);
	background: var(--tm-white);
	box-shadow: 0 10px 30px rgba(19, 42, 51, 0.06);
}

.tm-service-card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--tm-amber);
	content: "";
	transition: width var(--tm-transition);
}

.tm-service-card:hover::after {
	width: 100%;
}

.tm-service-card__number {
	color: #5f7077;
	font-size: 0.78rem;
}

.tm-service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.tm-service-card__icon {
	width: 46px;
	height: 46px;
	padding: 8px;
	border-radius: 13px;
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
}

.tm-service-card h3 {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
}

.tm-service-card p {
	margin: 0;
	color: var(--tm-ink-soft);
	font-size: 0.92rem;
}

.tm-service-card a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 1.25rem;
	font-weight: 700;
}

/* Process */
.tm-process-section {
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-process-section .tm-kicker {
	color: var(--tm-amber);
}

.tm-process-section p {
	color: rgba(255, 255, 255, 0.7);
}

.tm-process-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tm-process-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding-block: 1.3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-process-list li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-process-list > li > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(242, 163, 58, 0.6);
	border-radius: 50%;
	color: var(--tm-amber);
	font-weight: 700;
}

.tm-process-list strong {
	display: block;
	margin-bottom: 0.2rem;
}

.tm-process-list p {
	margin: 0;
	font-size: 0.92rem;
}

/* Form */
.tm-form-section {
	background: var(--tm-white);
}

.tm-form-layout {
	gap: clamp(2rem, 7vw, 6rem);
}

.tm-check-list {
	display: grid;
	gap: 0.6rem;
	padding: 0;
	list-style: none;
}

.tm-check-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.tm-check-list li::before {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
	content: "✓";
	font-size: 0.75rem;
	font-weight: 700;
}

.tm-request-form {
	position: relative;
	scroll-margin-top: 1rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-paper);
	box-shadow: var(--tm-shadow);
}

.tm-request-form__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tm-line);
}

.tm-request-form__header h3 {
	margin: 0;
	color: var(--tm-ink);
	font-size: 1.1rem;
	line-height: 1.5;
}

.tm-request-form__header span {
	color: #5f7077;
	font-size: 0.78rem;
}

.tm-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.tm-field {
	display: grid;
	gap: 0.45rem;
}

.tm-field--full {
	grid-column: 1 / -1;
}

.tm-field label {
	font-size: 0.88rem;
	font-weight: 700;
}

.tm-field label span {
	color: var(--tm-danger);
}

.tm-field input,
.tm-field select,
.tm-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 0.72rem 0.85rem;
	border: 1px solid #adbbc0;
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	color: var(--tm-ink);
	font-size: 1rem;
}

.tm-field textarea {
	min-height: 106px;
	resize: vertical;
}

.tm-field input:hover,
.tm-field select:hover,
.tm-field textarea:hover {
	border-color: var(--tm-ink-soft);
}

.tm-field input[aria-invalid="true"],
.tm-field select[aria-invalid="true"],
.tm-field textarea[aria-invalid="true"] {
	border-color: var(--tm-danger);
	box-shadow: 0 0 0 3px rgba(165, 58, 54, 0.1);
}

.tm-field__error {
	margin: 0;
	color: var(--tm-danger);
	font-size: 0.8rem;
	line-height: 1.55;
}

.tm-request-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.25rem;
}

.tm-request-form__privacy {
	max-width: 25rem;
	margin: 0;
	color: #5f7077;
	font-size: 0.78rem;
}

.tm-request-form__submit {
	position: relative;
	display: inline-flex;
	min-width: 170px;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--tm-amber);
	border-radius: 8px;
	background: var(--tm-amber);
	color: var(--tm-ink);
	cursor: pointer;
	font-weight: 700;
}

.tm-request-form__submit:hover {
	border-color: #ffc36f;
	background: #ffc36f;
}

.tm-request-form__submit:disabled {
	cursor: not-allowed;
	opacity: 0.58;
}

.tm-request-form.is-loading .tm-request-form__submit {
	padding-inline-start: 2.8rem;
}

.tm-request-form.is-loading .tm-request-form__submit::before {
	position: absolute;
	right: 1rem;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(19, 42, 51, 0.3);
	border-top-color: var(--tm-ink);
	border-radius: 50%;
	content: "";
	animation: tm-spin 700ms linear infinite;
}

.tm-form-notice {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-inline-start: 4px solid currentcolor;
	border-radius: var(--tm-radius-sm);
	font-size: 0.88rem;
}

.tm-form-notice--success {
	background: #e5f4ec;
	color: var(--tm-success);
}

.tm-form-notice--error {
	background: #faeae8;
	color: var(--tm-danger);
}

body.tm-success-dialog-open {
	overflow: hidden;
}

.tm-form-success-dialog[hidden] {
	display: none;
}

.tm-form-success-dialog {
	position: fixed;
	z-index: 100;
	inset: 0;
	display: grid;
	place-items: center;
	padding:
		max(1rem, env(safe-area-inset-top))
		max(1rem, env(safe-area-inset-right))
		max(1rem, env(safe-area-inset-bottom))
		max(1rem, env(safe-area-inset-left));
	background: rgba(19, 42, 51, 0.72);
}

.tm-form-success-dialog__panel {
	width: min(100%, 28rem);
	padding: clamp(1.5rem, 6vw, 2.25rem);
	border: 1px solid rgba(25, 112, 77, 0.2);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-white);
	box-shadow: 0 24px 80px rgba(19, 42, 51, 0.3);
	color: var(--tm-ink);
	text-align: center;
	animation: tm-dialog-in 180ms ease-out both;
}

.tm-form-success-dialog__icon {
	display: grid;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	place-items: center;
	border-radius: 50%;
	background: #e5f4ec;
	color: var(--tm-success);
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1;
}

.tm-form-success-dialog h3 {
	margin: 0;
	font-size: clamp(1.25rem, 5vw, 1.55rem);
	line-height: 1.5;
}

.tm-form-success-dialog p {
	margin: 0.75rem auto 1.25rem;
	color: #4c626b;
	font-size: 0.95rem;
	line-height: 1.9;
}

.tm-form-success-dialog__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--tm-ink);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-ink);
	color: var(--tm-white);
	cursor: pointer;
	font-weight: 800;
}

.tm-form-success-dialog__close:hover {
	border-color: var(--tm-ink-soft);
	background: var(--tm-ink-soft);
}

@keyframes tm-dialog-in {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.tm-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	overflow: hidden !important;
	white-space: nowrap !important;
}

/* Pricing and coverage */
.tm-pricing-section {
	background: var(--tm-paper);
}

.tm-pricing-layout {
	gap: 1rem;
}

.tm-pricing-copy,
.tm-cost-factors {
	height: 100%;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--tm-radius-lg);
}

.tm-pricing-copy {
	background: var(--tm-white);
}

.tm-cost-factors {
	background: var(--tm-amber);
	color: var(--tm-ink);
}

.tm-cost-factors > span {
	display: block;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(19, 42, 51, 0.25);
	font-size: 0.8rem;
	font-weight: 700;
}

.tm-cost-factors ul {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.tm-cost-factors li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
}

.tm-cost-factors li::before {
	width: 8px;
	height: 8px;
	border: 2px solid var(--tm-ink);
	border-radius: 50%;
	content: "";
}

.tm-coverage-section {
	background: var(--tm-white);
}

.tm-coverage-visual {
	position: relative;
	display: grid;
	width: min(100%, 380px);
	aspect-ratio: 1;
	place-items: center;
	margin-inline: auto;
}

.tm-coverage-visual__ring {
	position: absolute;
	border: 1px solid var(--tm-line);
	border-radius: 50%;
}

.tm-coverage-visual__ring:nth-child(1) {
	inset: 8%;
}

.tm-coverage-visual__ring:nth-child(2) {
	inset: 24%;
}

.tm-coverage-visual__ring:nth-child(3) {
	inset: 39%;
	border-color: var(--tm-amber);
	background: var(--tm-amber-soft);
}

.tm-coverage-visual::before,
.tm-coverage-visual::after {
	position: absolute;
	background: var(--tm-line);
	content: "";
}

.tm-coverage-visual::before {
	width: 82%;
	height: 1px;
}

.tm-coverage-visual::after {
	width: 1px;
	height: 82%;
}

.tm-coverage-visual span {
	position: relative;
	z-index: 1;
	font-weight: 700;
}

/* Guides and FAQ */
.tm-guides-section {
	background: var(--tm-paper);
}

.tm-guide-preview-grid article {
	display: flex;
	min-height: 290px;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
	transition: border-color 160ms ease, transform 160ms ease;
}

.tm-guide-preview-grid article:hover {
	border-color: var(--tm-line-strong);
	transform: translateY(-2px);
}

.tm-guide-preview-grid article > span {
	align-self: flex-start;
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.25rem 0.55rem;
	border-radius: 4px;
	background: var(--tm-amber-soft);
	font-size: 0.75rem;
	font-weight: 700;
}

.tm-guide-preview-grid h3 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
}

.tm-guide-preview-grid h3 a {
	color: inherit;
	text-decoration: none;
}

.tm-guide-preview-grid h3 a:focus-visible {
	border-radius: 3px;
	outline: 3px solid var(--tm-amber);
	outline-offset: 4px;
}

.tm-guide-preview-grid p {
	margin: 0;
	color: var(--tm-ink-soft);
	font-size: 0.9rem;
}

.tm-guide-preview-card__link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 1.5rem;
	color: var(--tm-ink);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-underline-offset: 0.22em;
}

.tm-guide-preview-card__link span {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: inherit;
}

.tm-guides-section__more {
	margin: 2rem 0 0;
	text-align: center;
}

.tm-guides-section__more a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--tm-ink);
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.25em;
}

.tm-faq-section {
	background: var(--tm-white);
}

.tm-faq-list {
	border-top: 1px solid var(--tm-line);
}

.tm-faq-list details {
	border-bottom: 1px solid var(--tm-line);
}

.tm-faq-list summary {
	position: relative;
	padding: 1.25rem 0 1.25rem 2.5rem;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}

.tm-faq-list summary::-webkit-details-marker {
	display: none;
}

.tm-faq-list summary::after {
	position: absolute;
top: 50%;
	left: 0;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid var(--tm-line);
	border-radius: 50%;
	content: "+";
	transform: translateY(-50%);
}

.tm-faq-list details[open] summary::after {
	content: "−";
}

.tm-faq-list details p {
	max-width: 47rem;
	margin: 0;
	padding: 0 0 1.25rem;
	color: var(--tm-ink-soft);
}

/* Final CTA and footer */
.tm-final-cta {
	margin: 0;
	padding-block: clamp(2.5rem, 5vw, 4rem);
	background: var(--tm-amber);
	color: var(--tm-ink);
}

.tm-final-cta__inner {
	gap: 2rem;
}

.tm-final-cta h2,
.tm-final-cta p {
	margin-block: 0 0.35rem;
}

.tm-final-cta .wp-element-button {
	border-color: var(--tm-ink);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-final-cta .wp-block-button.is-style-outline .wp-element-button {
	background: transparent;
	color: var(--tm-ink);
}

.tm-site-footer {
	margin: 0;
	padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
	background: #0d2028;
	color: rgba(255, 255, 255, 0.72);
}

.tm-site-footer__grid {
	gap: 3rem;
}

.tm-site-footer h2,
.tm-footer-brand {
	color: var(--tm-white);
}

.tm-site-footer a[href^="tel:"] {
	color: var(--tm-white);
	font-weight: 800;
}

.tm-site-contact {
	display: grid;
	gap: 0.4rem;
	margin: 0;
	font-style: normal;
}

.tm-site-contact span {
	display: block;
}

.tm-footer-brand {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	font-weight: 700;
}

.tm-footer-nav {
	display: grid;
	gap: 0.55rem;
}

.tm-footer-nav .tm-nav__link {
	width: max-content;
	padding: 0;
}

.tm-site-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-site-footer__bottom p {
	margin: 0;
}

.tm-legal-links a {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--wp--preset--font-size--xs);
}

.tm-privacy-page .wp-block-post-content {
	max-width: 50rem;
}

.tm-privacy-page .wp-block-post-content > h2 {
	margin-top: 2.75rem;
}

.tm-privacy-page .wp-block-post-content strong {
	padding-inline: 0.2rem;
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
}

/* Internal pages */
.tm-service-page {
	margin: 0;
}

.tm-breadcrumb-shell,
.tm-service-breadcrumbs,
.tm-commercial-breadcrumbs,
.tm-guide-breadcrumbs {
	padding-block: 1rem;
}

.tm-service-hero {
	margin: 0;
	padding-block: clamp(3.25rem, 7vw, 6rem);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-service-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
	padding-inline: 0;
}

.tm-service-hero .tm-eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.tm-service-hero h1 {
	max-width: 18ch;
	margin-block: 0;
	color: var(--tm-white);
	font-size: clamp(2.25rem, 5.6vw, 4.8rem);
	line-height: 1.16;
}

.tm-service-hero__lead {
	max-width: 48rem;
	margin-block: 1.25rem 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	line-height: 2;
}

.tm-service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.tm-service-hero__actions a {
	min-height: 50px;
	padding: 0.7rem 1.25rem;
}

.tm-service-hero__call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	color: var(--tm-white);
	font-weight: 700;
	text-decoration: none;
}

.tm-service-hero__call:hover {
	border-color: var(--tm-amber);
	background: rgba(242, 163, 58, 0.12);
}

.tm-service-hero__note {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.84rem;
}

.tm-service-console {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-top: 3px solid var(--tm-amber);
	border-radius: var(--tm-radius-md);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.tm-service-console__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.75rem;
}

.tm-service-console__top span:last-child {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.86);
}

.tm-service-console__top i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--tm-amber);
	box-shadow: 0 0 0 4px rgba(242, 163, 58, 0.12);
}

.tm-service-console__visual {
	display: grid;
	grid-template-columns: minmax(105px, 0.8fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	padding: 1.25rem 1rem;
}

.tm-service-console__visual svg {
	width: 100%;
	max-height: 145px;
	fill: none;
	stroke: var(--tm-amber);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
}

.tm-service-console__visual div {
	display: grid;
	gap: 0.25rem;
}

.tm-service-console__visual span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.75rem;
}

.tm-service-console__visual strong {
	color: var(--tm-white);
	font-size: clamp(1rem, 2vw, 1.25rem);
}

.tm-service-summary {
	padding: 0.5rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-service-summary__label {
	margin: 0 0 0.75rem;
	color: var(--tm-amber);
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-service-summary dl {
	margin: 0;
}

.tm-service-summary dl div {
	display: grid;
	grid-template-columns: minmax(80px, 0.6fr) minmax(0, 1fr);
	gap: 1rem;
	padding-block: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-service-summary dt {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.82rem;
}

.tm-service-summary dd {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
}

.tm-service-content-shell {
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.tm-service-content-shell > .wp-block-post-content {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 0;
}

.tm-service-content-shell > .wp-block-post-content > * {
	scroll-margin-top: 1.5rem;
}

.tm-service-content-shell :where(
	.tm-service-symptom-grid,
	.tm-service-process-grid,
	.tm-price-table-wrap
) {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-service-content-shell :where(
	.tm-service-pricing-panel,
	.tm-service-device-info,
	.tm-service-coverage-panel
) > .wp-block-group {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}

.tm-service-content-shell .wp-block-post-content > .is-layout-constrained > :where(
	.tm-kicker,
	h2,
	.tm-service-section-lead,
	.tm-service-fact-line
),
.tm-service-content-shell :where(
	.tm-service-price-ranges,
	.tm-service-safety-panel
) > :where(p, h2) {
	margin-right: 0 !important;
	margin-left: auto !important;
}

.tm-service-content-shell > .wp-block-post-content > * + * {
	margin-top: clamp(4rem, 8vw, 6.5rem);
}

.tm-service-navigation {
	margin: 0;
	border-bottom: 1px solid var(--tm-line);
	background: var(--tm-white);
}

.tm-service-navigation__inner {
	display: flex;
	max-width: var(--wp--style--global--wide-size);
	align-items: center;
	gap: 1.25rem;
	margin-inline: auto;
	padding-inline: 0;
}

.tm-service-navigation__label {
	flex: 0 0 auto;
	color: #64767d;
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-service-navigation__links {
	display: flex;
	flex: 1;
	align-items: center;
	gap: 0.25rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.tm-service-navigation a {
	display: inline-flex;
	min-height: 48px;
	flex: 0 0 auto;
	align-items: center;
	padding-inline: 0.75rem;
	border-bottom: 2px solid transparent;
	color: var(--tm-ink-soft);
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.tm-service-navigation a:hover {
	border-bottom-color: var(--tm-amber);
	color: var(--tm-ink);
}

.tm-service-diagnostics > h2,
.tm-service-process-panel > h2,
.tm-service-pricing-panel h2,
.tm-service-coverage-panel h2 {
	margin-top: 0 !important;
}

.tm-service-section-lead {
	max-width: 52rem;
	color: var(--tm-ink-soft);
	font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.tm-service-symptom-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 1rem;
	margin-top: 2rem;
}

.tm-symptom-card {
	position: relative;
	min-height: 0;
	padding: 1.35rem;
	overflow: hidden;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	box-shadow: 0 10px 28px rgba(19, 42, 51, 0.055);
}

.tm-symptom-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
}

.tm-symptom-card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--tm-amber);
	content: "";
	transition: width var(--tm-transition);
}

.tm-symptom-card:hover::after,
.tm-symptom-card:focus-within::after {
	width: 100%;
}

.tm-symptom-card__number {
	display: inline-grid;
	width: 2.1rem;
	height: 2.1rem;
	margin: 0;
	place-items: center;
	border: 1px solid var(--tm-line-strong);
	border-radius: 50%;
	color: var(--tm-ink);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.tm-symptom-card__label {
	margin: 0;
	color: #718087;
	font-size: 0.72rem;
	font-weight: 700;
}

.tm-symptom-card h3 {
	margin: 1.25rem 0 0.55rem;
	font-size: 1.05rem;
}

.tm-symptom-card__description {
	margin: 0;
	color: var(--tm-ink-soft);
	font-size: 0.86rem;
	line-height: 1.9;
}

.tm-service-fact-line {
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border-inline-start: 3px solid var(--tm-amber);
	background: var(--tm-amber-soft);
	color: var(--tm-ink-soft);
	font-size: 0.86rem;
}

.tm-service-process-panel {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-service-process-panel .tm-kicker {
	color: var(--tm-amber);
}

.tm-service-process-panel h2,
.tm-service-process-panel h3 {
	color: var(--tm-white);
}

.tm-service-process-grid {
	gap: 1rem;
	margin-top: 2rem;
}

.tm-service-process-grid > .wp-block-column {
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-top-color: var(--tm-amber);
	background: rgba(255, 255, 255, 0.04);
}

.tm-service-process-grid h3 {
	margin-top: 0;
}

.tm-service-process-grid p:last-child {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.tm-service-step {
	display: grid;
	width: 38px;
	height: 38px;
	margin: 0 0 1.25rem;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-amber);
	color: var(--tm-ink) !important;
	font-size: 0.8rem;
	font-weight: 700;
}

.tm-service-pricing-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: stretch;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-white);
	box-shadow: var(--tm-shadow);
}

.tm-service-pricing-panel__copy {
	align-self: center;
}

.tm-service-pricing-panel__copy > p:last-child {
	margin-bottom: 0;
}

.tm-service-pricing-factors {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0;
	align-content: center;
	padding: 1.25rem;
	border-radius: var(--tm-radius-md);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-service-pricing-factors__title {
	margin: 0 0 0.35rem;
	padding: 0 0 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--tm-amber);
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-service-pricing-factors > p:not(.tm-service-pricing-factors__title) {
	display: grid;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	gap: 0.75rem;
	align-items: center;
	margin: 0;
	padding-block: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-service-pricing-factors > p:last-child {
	border-bottom: 0;
}

.tm-service-pricing-factors span {
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.72rem;
	font-weight: 700;
}

.tm-service-pricing-factors strong {
	color: var(--tm-white);
	font-size: 0.9rem;
}

.tm-service-device-info {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: center;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-inline-start: 4px solid var(--tm-amber);
	background: var(--tm-amber-soft);
}

.tm-service-device-info h2 {
	margin-top: 0 !important;
}

.tm-service-device-info__copy > p:last-child {
	margin-bottom: 0;
	color: var(--tm-ink-soft);
}

.tm-service-device-info__list {
	display: grid;
	gap: 0;
	padding: 0.5rem 1.15rem;
	border: 1px solid rgba(19, 42, 51, 0.12);
	background: rgba(255, 255, 255, 0.72);
}

.tm-service-device-info__list p {
	display: grid;
	gap: 0.18rem;
	margin: 0;
	padding-block: 0.75rem;
	border-bottom: 1px solid rgba(19, 42, 51, 0.1);
}

.tm-service-device-info__list p:last-child {
	border-bottom: 0;
}

.tm-service-device-info__list strong {
	font-size: 0.88rem;
}

.tm-service-device-info__list span {
	color: var(--tm-ink-soft);
	font-size: 0.78rem;
}

.tm-service-brands {
	margin-top: clamp(4rem, 8vw, 7rem);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	border: 1px solid var(--tm-line);
	border-top: 4px solid var(--tm-ink);
	background: var(--tm-white);
}

.tm-service-brands__header {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: end;
}

.tm-service-brands__header h2 {
	margin: 0;
}

.tm-service-brands__header > p {
	margin: 0;
	color: var(--tm-ink-soft);
	font-size: 0.9rem;
}

.tm-service-brand-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 2rem 0 0;
	padding: 0;
	border-block-start: 1px solid var(--tm-line);
	border-inline-start: 1px solid var(--tm-line);
	list-style: none;
}

.tm-service-brand-grid li {
	display: flex;
	min-height: 50px;
	align-items: center;
	padding: 0.65rem 0.85rem;
	border-inline-end: 1px solid var(--tm-line);
	border-block-end: 1px solid var(--tm-line);
	background: #fbfcfb;
	color: var(--tm-ink);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.55;
}

.tm-service-brand-grid li:nth-child(8n + 1),
.tm-service-brand-grid li:nth-child(8n + 2),
.tm-service-brand-grid li:nth-child(8n + 3),
.tm-service-brand-grid li:nth-child(8n + 4) {
	background: var(--tm-surface);
}

.tm-service-brands__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--tm-line);
}

.tm-service-brands__footer p {
	margin: 0;
	color: var(--tm-ink-soft);
	font-size: 0.78rem;
}

.tm-service-brands__footer a {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding-inline: 1rem;
	border-radius: 7px;
	background: var(--tm-amber);
	color: var(--tm-ink);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.tm-service-safety-panel {
	position: relative;
	padding-inline-start: clamp(1.5rem, 5vw, 3rem);
}

.tm-service-safety-panel__label {
	display: inline-flex;
	margin: 0 0 0.65rem;
	padding: 0.28rem 0.55rem;
	border-radius: 4px;
	background: var(--tm-danger);
	color: var(--tm-white);
	font-size: 0.72rem;
	font-weight: 700;
}

.tm-service-safety-panel p:last-child {
	margin-bottom: 0;
}

.tm-service-coverage-panel {
	display: grid;
	grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: center;
}

.tm-service-coverage-panel__visual {
	position: relative;
	display: grid;
	min-height: 230px;
	place-content: center;
	padding: 2rem;
	overflow: hidden;
	border-radius: var(--tm-radius-lg);
	background: var(--tm-ink);
	color: var(--tm-white);
	text-align: center;
}

.tm-service-coverage-panel__visual::before,
.tm-service-coverage-panel__visual::after {
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(242, 163, 58, 0.3);
	border-radius: 50%;
	content: "";
}

.tm-service-coverage-panel__visual::after {
	inset: 27%;
}

.tm-service-coverage-panel__visual p {
	position: relative;
	z-index: 1;
	margin: 0;
}

.tm-service-coverage-panel__visual p:first-child {
	color: var(--tm-amber);
	font-size: clamp(1.8rem, 5vw, 3rem);
	font-weight: 700;
}

.tm-service-coverage-panel__visual p:last-child {
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.76rem;
}

.tm-service-inline-cta {
	margin-top: 1.5rem;
}

.tm-service-inline-cta a {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	padding-inline: 1rem;
	border-radius: 8px;
	background: var(--tm-amber);
	color: var(--tm-ink);
	text-decoration: none !important;
}

.tm-service-content-shell .wp-block-post-content > :where(h2, h3) {
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tm-service-content-shell .wp-block-post-content > h2:first-child {
	margin-top: 0;
}

.tm-service-content-shell .wp-block-post-content a,
.tm-service-next-steps a,
.tm-service-section-heading a {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.22em;
}

.tm-service-content-shell .wp-block-post-content > ul,
.tm-service-content-shell .wp-block-post-content > ol {
	display: grid;
	gap: 0.7rem;
	padding-inline-start: 1.3rem;
}

.tm-safety-note {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(1.25rem, 4vw, 2rem);
	border-inline-start: 4px solid var(--tm-danger);
	border-radius: var(--tm-radius-md);
	background: #fff3f1;
}

.tm-safety-note h2 {
	margin-top: 0 !important;
}

.tm-service-next-steps,
.tm-service-faq,
.tm-related-services {
	margin-top: clamp(4rem, 8vw, 7rem);
	padding: 0;
}

.tm-service-next-steps {
	padding-block: clamp(2rem, 4vw, 3rem);
	border-block: 1px solid var(--tm-line);
}

.tm-service-next-steps > h2,
.tm-service-section-heading h2 {
	margin-top: 0;
}

.tm-service-next-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	gap: 1rem;
	margin-top: 1.75rem;
}

.tm-service-next-steps__grid > :where(.wp-block-column, article) {
	padding: 1.25rem;
	border-top: 3px solid var(--tm-amber);
	background: var(--tm-white);
}

.tm-service-next-steps__grid h3 {
	margin-top: 0;
}

.tm-service-next-steps__grid p:last-child {
	margin-bottom: 0;
}

.tm-service-section-heading--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
}

.tm-faq-item__answer p {
	line-height: 2;
}

.tm-related-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.75rem;
}

.tm-related-service-card {
	display: flex;
	min-height: 250px;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid var(--tm-line);
	border-top: 3px solid var(--tm-ink);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
}

.tm-related-service-card h3 {
	margin-top: 0;
	font-size: 1.15rem;
}

.tm-related-service-card h3 a {
	color: inherit;
	text-decoration: none;
}

.tm-related-service-card p {
	color: var(--tm-ink-soft);
	font-size: 0.9rem;
}

.tm-related-service-card__link {
	margin-top: auto;
}

.tm-commercial-hero {
	margin: 0;
	padding-block: clamp(3.25rem, 7vw, 6rem);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-commercial-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
	padding-inline: 0;
}

.tm-commercial-hero .tm-eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.tm-commercial-hero h1 {
	max-width: 19ch;
	margin: 0;
	color: var(--tm-white);
	font-size: clamp(2.25rem, 5.4vw, 4.65rem);
	line-height: 1.16;
}

.tm-commercial-hero__lead {
	max-width: 48rem;
	margin-block: 1.25rem 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	line-height: 2;
}

.tm-commercial-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.tm-commercial-hero__actions a {
	min-height: 50px;
	padding: 0.7rem 1.25rem;
}

.tm-commercial-hero__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	color: var(--tm-white);
	font-weight: 700;
	text-decoration: none;
}

.tm-commercial-hero__secondary:hover {
	border-color: var(--tm-amber);
	background: rgba(242, 163, 58, 0.12);
}

.tm-commercial-summary {
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-top: 3px solid var(--tm-amber);
	border-radius: var(--tm-radius-md);
	background: rgba(255, 255, 255, 0.06);
}

.tm-commercial-summary > p {
	margin: 0 0 0.75rem;
	color: var(--tm-amber);
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-commercial-summary ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tm-commercial-summary li {
	display: grid;
	gap: 0.2rem;
	padding-block: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-commercial-summary strong {
	font-size: 0.9rem;
}

.tm-commercial-summary span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
}

.tm-directory-section,
.tm-commercial-content-shell {
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.tm-directory-section > h2 {
	margin-top: 0;
}

.tm-service-directory {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: clamp(2rem, 4vw, 3rem);
	counter-reset: service-card;
}

.tm-service-directory__card {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	box-shadow: 0 12px 32px rgba(19, 42, 51, 0.06);
	counter-increment: service-card;
}

.tm-service-directory__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.4rem;
}

.tm-service-directory__number::before {
	display: inline-grid;
	min-width: 36px;
	height: 30px;
	place-items: center;
	border-radius: 4px;
	background: var(--tm-amber-soft);
	content: counter(service-card, decimal-leading-zero);
	font-size: 0.78rem;
	font-weight: 700;
}

.tm-service-directory__icon {
	width: 48px;
	height: 48px;
	padding: 0.45rem;
	border: 1px solid var(--tm-line);
	border-radius: 10px;
	background: var(--tm-paper);
	color: var(--tm-ink);
}

.tm-service-directory__card h3 {
	margin: 0 0 0.75rem;
	font-size: 1.18rem;
}

.tm-service-directory__card h3 a {
	color: inherit;
	text-decoration: none;
}

.tm-service-directory__card p {
	margin-top: 0;
	color: var(--tm-ink-soft);
	font-size: 0.9rem;
}

.tm-service-directory__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.tm-service-directory__meta li {
	padding: 0.35rem 0.55rem;
	border: 1px solid var(--tm-line);
	border-radius: 999px;
	color: var(--tm-ink-soft);
	font-size: 0.76rem;
}

.tm-service-directory__link {
	margin-top: auto;
	font-weight: 700;
	text-underline-offset: 0.2em;
}

.tm-service-directory__card:hover {
	border-color: #b6c0c4;
	box-shadow: 0 18px 42px rgba(19, 42, 51, 0.1);
}

.tm-service-directory__card:has(a:focus-visible) {
	border-color: var(--tm-amber);
	box-shadow: 0 0 0 3px rgba(242, 163, 58, 0.2);
}

.tm-service-directory-note {
	gap: 1.25rem;
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid var(--tm-line);
	border-inline-start: 4px solid var(--tm-amber);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-paper);
}

.tm-service-directory-note > p {
	max-width: 48rem;
	margin: 0;
	color: var(--tm-ink-soft);
}

.tm-service-directory-note > p strong {
	color: var(--tm-ink);
}

.tm-service-directory-note .wp-block-buttons {
	flex: 0 0 auto;
}

.tm-selection-guide {
	margin: 0;
	padding-block: clamp(3.5rem, 7vw, 6rem);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-selection-guide .tm-kicker {
	color: rgba(255, 255, 255, 0.7);
}

.tm-selection-guide h2 {
	margin-top: 0;
	color: var(--tm-white);
}

.tm-selection-guide__grid {
	gap: 1rem;
	margin-top: 2rem;
}

.tm-selection-guide__grid > .wp-block-column {
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-top-color: var(--tm-amber);
}

.tm-selection-guide__grid h3 {
	margin-top: 0;
	color: var(--tm-white);
}

.tm-selection-guide__grid p:last-child {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.tm-step-number {
	display: grid;
	width: 36px;
	height: 36px;
	margin: 0 0 1.25rem;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-amber);
	color: var(--tm-ink) !important;
	font-size: 0.8rem;
	font-weight: 700;
}

.tm-commercial-content-shell > .wp-block-post-content {
	max-width: 100%;
	margin-inline: auto;
}

.tm-commercial-content-shell .wp-block-post-content > * + * {
	margin-top: clamp(3.5rem, 7vw, 6rem);
}

.tm-pricing-explainer > h2,
.tm-pricing-factors > h2,
.tm-pricing-ranges > h2,
.tm-service-price-ranges > h2,
.tm-pricing-phone > h2 {
	margin-top: 0;
}

.tm-pricing-page .tm-commercial-content-shell > .wp-block-post-content > :where(.wp-block-group, section, aside) {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-pricing-explainer > :where(h2, p),
.tm-pricing-phone > :where(h2, p) {
	max-width: 72ch;
	margin-right: 0 !important;
	margin-left: auto !important;
}

.tm-service-price-ranges {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
}

.tm-service-price-ranges > .tm-kicker,
.tm-service-price-ranges > h2 {
	margin-top: 0;
}

.tm-price-table-wrap {
	overflow-x: auto;
	margin-top: 1.5rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
}

.tm-price-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
}

.tm-service-price-ranges .tm-price-table {
	min-width: 520px;
}

.tm-price-table caption {
	padding: 0.9rem 1rem;
	background: var(--tm-paper);
	color: var(--tm-ink-soft);
	text-align: right;
}

.tm-price-table th,
.tm-price-table td {
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--tm-line);
	text-align: right;
	vertical-align: top;
}

.tm-price-table thead th {
	background: var(--tm-ink);
	color: var(--tm-white);
	font-weight: 700;
}

.tm-price-table tbody tr:last-child > * {
	border-bottom: 0;
}

.tm-price-table tbody tr:nth-child(even) > * {
	background: rgba(244, 241, 234, 0.55);
}

.tm-price-table tbody th {
	width: 58%;
	color: var(--tm-ink);
	font-weight: 700;
}

.tm-price-table tbody td {
	width: 42%;
	white-space: nowrap;
}

.tm-pricing-stages {
	gap: 1rem;
	margin-top: 2rem;
}

.tm-pricing-stages > .wp-block-column {
	padding: 1.5rem;
	border-top: 3px solid var(--tm-amber);
	background: var(--tm-white);
}

.tm-pricing-stages h3 {
	margin-top: 0;
}

.tm-pricing-stages p:last-child {
	margin-bottom: 0;
}

.tm-pricing-factors {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
}

.tm-pricing-factors .wp-block-columns {
	gap: 2rem;
}

.tm-pricing-factors ul {
	display: grid;
	gap: 0.8rem;
	margin-bottom: 0;
}

.tm-pricing-ranges {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--tm-line);
}

.tm-pricing-ranges > .tm-kicker,
.tm-pricing-ranges > h2 {
	margin-top: 0;
}

.tm-pricing-ranges > :where(.tm-kicker, h2, p) {
	max-width: 76ch;
	margin-right: 0 !important;
	margin-left: auto !important;
}

.tm-pricing-ranges > .tm-pricing-range-list {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-pricing-ranges__note {
	max-width: 76ch;
	padding: 1rem 1.15rem;
	border-inline-start: 3px solid var(--tm-amber);
	background: var(--tm-amber-soft);
	color: var(--tm-ink-soft);
}

.tm-pricing-range-list {
	display: grid;
	gap: 0.85rem;
	margin-top: 2rem;
}

.tm-pricing-range {
	overflow: clip;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
}

.tm-pricing-range summary {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
}

.tm-pricing-range summary::-webkit-details-marker {
	display: none;
}

.tm-pricing-range summary::after {
	display: grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
	content: "+";
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.tm-pricing-range[open] summary::after {
	content: "−";
}

.tm-pricing-range summary:focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: -3px;
}

.tm-pricing-range summary span {
	display: grid;
	gap: 0.2rem;
}

.tm-pricing-range summary strong {
	color: var(--tm-ink);
	font-size: 1.05rem;
}

.tm-pricing-range summary small {
	color: var(--tm-ink-soft);
	font-size: 0.78rem;
}

.tm-pricing-range__content {
	padding: 0 1.25rem 1.25rem;
	border-top: 1px solid var(--tm-line);
}

.tm-pricing-range__content .tm-price-table-wrap {
	margin-top: 1.25rem;
}

.tm-pricing-range__link {
	margin: 1rem 0 0;
}

.tm-pricing-range__link a {
	color: var(--tm-ink);
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.tm-fact-note {
	padding: clamp(1.25rem, 4vw, 2rem);
	border-inline-start: 4px solid var(--tm-amber);
	border-radius: var(--tm-radius-md);
	background: var(--tm-amber-soft);
}

.tm-fact-note h2 {
	margin-top: 0;
}

.tm-fact-note p:last-child {
	margin-bottom: 0;
}

.tm-travel-fee__amount {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--tm-ink);
	font-size: clamp(1.6rem, 4vw, 2.35rem);
	line-height: 1.35;
}

.tm-contact-page .tm-commercial-content-shell > .wp-block-post-content > :where(.wp-block-group, section, aside) {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-contact-hub__heading {
	max-width: 48rem;
	margin-inline: 0 !important;
}

.tm-contact-hub__heading h2,
.tm-contact-facts > h2,
.tm-contact-prepare h2 {
	margin-top: 0;
}

.tm-contact-hub__heading p:last-child {
	margin-bottom: 0;
	color: var(--tm-ink-soft);
}

.tm-contact-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}

.tm-contact-choice {
	min-width: 0;
	min-height: 22rem;
	padding: clamp(1.5rem, 4vw, 2.75rem);
	border-radius: var(--tm-radius-lg);
}

.tm-contact-choice > * {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-contact-choice h3 {
	margin-top: 1.25rem;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.tm-contact-choice__label {
	display: inline-flex;
	width: max-content;
	margin: 0;
	padding: 0.3rem 0.65rem;
	border: 1px solid currentcolor;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
}

.tm-contact-choice--call {
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-contact-choice--call h3 {
	color: var(--tm-white);
}

.tm-contact-phone {
	margin-block: 1.5rem;
}

.tm-contact-phone a {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	padding: 0.7rem 1rem;
	border-radius: var(--tm-radius-sm);
	background: var(--tm-amber);
	color: var(--tm-ink);
	font-size: clamp(1.35rem, 4vw, 2rem);
	font-weight: 800;
	text-decoration: none;
	direction: ltr;
	unicode-bidi: isolate;
}

.tm-contact-phone a:hover {
	background: #ffc36f;
}

.tm-contact-status {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.tm-contact-status span {
	width: 0.65rem;
	height: 0.65rem;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--tm-amber);
	box-shadow: 0 0 0 5px rgba(242, 163, 58, 0.14);
}

.tm-contact-choice--request {
	border: 1px solid var(--tm-line);
	background: var(--tm-white);
	box-shadow: var(--tm-shadow);
}

.tm-contact-choice--request p:not(.tm-contact-choice__label) {
	color: var(--tm-ink-soft);
	line-height: 1.9;
}

.tm-contact-choice--request .wp-block-buttons {
	margin-top: 1.75rem;
}

.tm-contact-facts {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--tm-line);
}

.tm-contact-facts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.75rem;
}

.tm-contact-fact {
	min-height: 12rem;
	padding: 1.5rem;
	border: 1px solid var(--tm-line);
	border-top: 3px solid var(--tm-ink);
	background: var(--tm-white);
}

.tm-contact-fact > * {
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-contact-fact__number {
	margin: 0 0 2rem;
	color: #7a8890;
	font-size: 0.78rem;
	font-weight: 800;
}

.tm-contact-fact h3 {
	margin: 0 0 0.6rem;
	font-size: 1.05rem;
}

.tm-contact-fact p:last-child {
	margin-bottom: 0;
	color: var(--tm-ink-soft);
	line-height: 1.8;
}

.tm-contact-prepare {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding: clamp(1.5rem, 5vw, 3rem);
	border: 1px solid rgba(242, 163, 58, 0.36);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-amber-soft);
}

.tm-contact-prepare > * {
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-contact-prepare__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tm-contact-prepare__list li {
	position: relative;
	min-height: 48px;
	padding: 0.75rem 2.3rem 0.75rem 0.75rem;
	border: 1px solid rgba(19, 42, 51, 0.12);
	border-radius: var(--tm-radius-sm);
	background: rgba(255, 255, 255, 0.72);
}

.tm-contact-prepare__list li::before {
	position: absolute;
	top: 0.85rem;
	right: 0.75rem;
	display: grid;
	width: 1.25rem;
	height: 1.25rem;
	place-items: center;
	border-radius: 50%;
	background: var(--tm-ink);
	color: var(--tm-white);
	content: "✓";
	font-size: 0.7rem;
}

.tm-about-process > h2,
.tm-about-learning h2,
.tm-about-principles > h2,
.tm-about-services > h2,
.tm-about-next > h2 {
	margin-top: 0;
}

.tm-about-page .tm-commercial-content-shell > .wp-block-post-content > :where(.wp-block-group, section, aside) {
	width: 100%;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tm-about-process > :where(.tm-kicker, h2, p) {
	max-width: 72ch;
	margin-right: 0 !important;
	margin-left: auto !important;
}

.tm-about-lead {
	max-width: 64ch;
	color: var(--tm-ink);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 2;
}

.tm-about-steps {
	gap: 1rem;
	margin-top: 2rem;
}

.tm-about-steps > .wp-block-column {
	padding: 1.5rem;
	border-top: 3px solid var(--tm-amber);
	background: var(--tm-white);
}

.tm-about-steps h3 {
	margin-top: 0;
}

.tm-about-steps p:last-child {
	margin-bottom: 0;
}

.tm-about-learning {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
}

.tm-about-learning > .wp-block-group {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}

.tm-about-learning__copy p:last-child {
	margin-bottom: 0;
}

.tm-about-learning__links {
	padding: 1.25rem;
	border-top: 3px solid var(--tm-amber);
	background: var(--tm-paper);
}

.tm-about-learning__links > p:first-child {
	margin-top: 0;
}

.tm-about-learning__links .tm-check-list {
	margin-bottom: 0;
}

.tm-about-learning__links a {
	color: var(--tm-ink);
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.tm-about-principles {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--tm-radius-md);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-about-principles .wp-block-columns {
	gap: 1rem;
	margin-top: 2rem;
}

.tm-about-principles .wp-block-column {
	padding-inline-start: 1rem;
	border-inline-start: 2px solid var(--tm-amber);
}

.tm-about-principles h2,
.tm-about-principles h3 {
	color: var(--tm-white);
}

.tm-about-principles p {
	color: rgba(255, 255, 255, 0.72);
}

.tm-about-services {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--tm-line);
}

.tm-about-services .tm-service-directory {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tm-about-services .tm-service-directory__card {
	min-height: 250px;
}

.tm-about-next {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
}

.tm-about-next a {
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.22em;
}

.tm-guide-article {
	margin: 0;
}

.tm-guide-hero {
	margin: 0;
	padding-block: clamp(3rem, 7vw, 5.5rem);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-hero__inner {
	padding-inline: 0;
}

.tm-guide-hero .tm-kicker {
	color: var(--tm-amber);
}

.tm-guide-hero .wp-block-post-title {
	max-width: 20ch;
	margin-block: 0 1.25rem;
	color: var(--tm-white);
	font-size: clamp(2.15rem, 5vw, 4.2rem);
	line-height: 1.2;
}

.tm-guide-hero .tm-lead {
	max-width: 48rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 2;
}

.tm-guide-body {
	padding-block: clamp(3rem, 7vw, 6rem);
}

.tm-guide-review {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-block: 1.75rem 0;
	padding: 1rem 1.25rem;
	border-block: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.84rem;
}

.tm-guide-review div {
	display: flex;
	gap: 0.4rem;
	padding-inline: 0 1.25rem;
}

.tm-guide-review div + div {
	padding-inline-start: 1.25rem;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.tm-guide-review dt {
	font-weight: 700;
}

.tm-guide-review dd {
	margin: 0;
}

.tm-guide-review--pending {
	display: block;
	border: 1px solid #d89435;
	border-inline-start: 4px solid #d89435;
	border-radius: var(--tm-radius-sm);
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
}

.tm-guide-body .wp-block-post-content {
	max-width: 50rem;
}

.tm-guide-body .wp-block-post-content > .tm-lead {
	margin-bottom: 1.75rem;
	color: var(--tm-ink);
	font-size: clamp(1.08rem, 2vw, 1.25rem);
	line-height: 2;
}

.tm-guide-body .wp-block-post-content > h2 {
	margin-top: clamp(2.75rem, 6vw, 4.5rem);
	scroll-margin-top: 1.5rem;
}

.tm-guide-body .wp-block-post-content > h3 {
	margin-top: 2.25rem;
}

.tm-guide-body .wp-block-post-content > ul,
.tm-guide-body .wp-block-post-content > ol {
	display: grid;
	gap: 0.7rem;
	padding-inline-start: 1.3rem;
}

.tm-guide-body .wp-block-post-content a {
	font-weight: 700;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.22em;
}

.tm-guide-toc {
	margin-block: clamp(2rem, 5vw, 3.5rem);
	padding: 1.25rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
}

.tm-guide-toc .tm-guide-toc__title {
	margin: 0;
	font-size: 1.15rem;
}

.tm-guide-toc ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem 1.5rem;
	margin: 1rem 0 0;
	padding-inline-start: 1.25rem;
}

.tm-guide-toc a {
	color: var(--tm-ink);
}

.tm-guide-answer,
.tm-guide-danger,
.tm-guide-cta {
	margin-block: clamp(2rem, 5vw, 3.5rem);
	padding: clamp(1.25rem, 4vw, 2rem);
	border-radius: var(--tm-radius-md);
}

.tm-guide-answer {
	border-inline-start: 4px solid var(--tm-amber);
	background: var(--tm-amber-soft);
}

.tm-guide-answer .tm-kicker,
.tm-guide-answer p:last-child,
.tm-guide-danger h2,
.tm-guide-danger p:last-child,
.tm-guide-cta h2 {
	margin-top: 0;
}

.tm-guide-answer p:last-child,
.tm-guide-danger p:last-child {
	margin-bottom: 0;
}

.tm-guide-danger {
	border: 1px solid #d89435;
	border-inline-start: 5px solid #b85f2c;
	background: #fff7ed;
}

.tm-guide-danger h2 {
	color: #7c2d12;
}

.tm-guide-checklist li::marker,
.tm-guide-prevention-list li::marker,
.tm-guide-request-list li::marker {
	color: var(--tm-amber);
}

.tm-guide-scope-note {
	padding: 1rem 1.25rem;
	border-inline-start: 3px solid var(--tm-line-strong);
	background: var(--tm-white);
	color: var(--tm-ink-soft);
}

.tm-guide-cta {
	border: 1px solid var(--tm-line);
	border-top: 4px solid var(--tm-amber);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-cta h2,
.tm-guide-cta a:not(.wp-element-button) {
	color: var(--tm-white);
}

.tm-guide-cta p {
	color: rgba(255, 255, 255, 0.78);
}

.tm-guide-cta .wp-block-buttons {
	margin-top: 1.5rem;
}

.tm-related-guides {
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding-top: clamp(2rem, 5vw, 3.5rem);
	border-top: 1px solid var(--tm-line);
}

.tm-related-guides > h2 {
	margin-top: 0;
}

.tm-related-guides__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.tm-related-guides__grid article {
	padding: 1.25rem;
	border-top: 3px solid var(--tm-amber);
	background: var(--tm-white);
}

.tm-related-guides__grid h3 {
	margin-top: 0;
}

.tm-related-guides__grid h3 a {
	color: inherit;
	text-decoration: none;
}

.tm-related-guides__grid p {
	margin-bottom: 0;
	color: var(--tm-ink-soft);
	font-size: 0.9rem;
}

.tm-guide-archive {
	margin: 0;
}

.tm-guide-archive__hero {
	margin: 0;
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
	border-bottom: 1px solid var(--tm-line);
	background: var(--tm-paper);
	color: var(--tm-ink);
}

.tm-guide-archive__hero-inner {
	padding-inline: 0;
}

.tm-guide-archive__hero .tm-kicker {
	color: var(--tm-ink-soft);
}

.tm-guide-archive__hero h1 {
	max-width: 28ch;
	margin-block: 0;
	color: var(--tm-ink);
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	line-height: 1.35;
}

.tm-guide-archive__hero .tm-lead {
	max-width: 62rem;
	margin-block: 0.7rem 0;
	color: var(--tm-ink-soft);
	font-size: clamp(0.92rem, 1.25vw, 1.05rem) !important;
	line-height: 1.9;
}

.tm-guide-archive__principles {
	gap: 0.65rem !important;
	margin-top: 2rem;
}

.tm-guide-archive__principles p {
	margin: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
}

.tm-guide-archive__content {
	padding-block: clamp(1.75rem, 4vw, 3.5rem);
}

.tm-guide-archive__heading {
	align-items: end;
}

.tm-guide-archive__heading h2 {
	margin-block: 0;
}

.tm-guide-card {
	position: relative;
	min-height: 300px;
	border-top-color: var(--tm-amber);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.tm-guide-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(19, 42, 51, 0.1);
}

.tm-guide-card__term {
	margin: 0 0 1.25rem;
	color: var(--tm-ink-soft);
	font-size: 0.8rem;
	font-weight: 700;
}

.tm-guide-card__term a {
	color: inherit;
	text-decoration: none;
	pointer-events: none;
}

.tm-guide-card .wp-block-post-title {
	font-size: clamp(1.3rem, 1.15rem + 0.5vw, 1.65rem);
	line-height: 1.55;
}

.tm-guide-card .wp-block-post-title a {
	color: inherit;
	text-decoration: none;
}

.tm-guide-card .wp-block-post-excerpt__excerpt {
	color: var(--tm-ink-soft);
	font-size: 0.92rem;
	line-height: 1.9;
}

.tm-guide-card .wp-block-post-excerpt__more-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--tm-ink);
	text-underline-offset: 0.25em;
}

.tm-query-pagination {
	gap: 1rem;
	margin-top: 2.5rem;
}

.tm-query-pagination a,
.tm-query-pagination .page-numbers {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding-inline: 0.75rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	color: var(--tm-ink);
	text-decoration: none;
}

.tm-query-pagination .current {
	border-color: var(--tm-ink);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-library {
	display: grid;
	gap: clamp(2.5rem, 6vw, 4.5rem);
}

.tm-guide-library__layout {
	display: grid;
	grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

.tm-guide-sidebar {
	position: relative;
}

.tm-guide-sidebar__inner {
	position: sticky;
	top: 4.75rem;
	overflow: hidden;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	box-shadow: 0 8px 24px rgba(19, 42, 51, 0.06);
}

.admin-bar .tm-guide-sidebar__inner {
	top: 6.75rem;
}

.tm-guide-sidebar__ask {
	display: flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.55rem;
	border: 1px solid var(--tm-ink);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-ink);
	box-shadow: 0 6px 16px rgba(19, 42, 51, 0.14);
	color: var(--tm-white);
	font-size: 0.92rem;
	font-weight: 850;
	text-decoration: none;
}

.tm-guide-sidebar__ask:hover {
	background: #1a3a45;
}

.tm-guide-sidebar__heading {
	display: flex;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--tm-line);
	background: var(--tm-white);
}

.tm-guide-sidebar__heading h2 {
	margin: 0;
	font-size: 1rem;
}

.tm-guide-sidebar__heading a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	color: var(--tm-ink-soft);
	font-size: 0.75rem;
	font-weight: 700;
	text-underline-offset: 0.22em;
}

.tm-guide-search {
	display: grid;
	gap: 0.45rem;
	padding: 0.9rem 1.25rem 1rem;
	border-bottom: 1px solid var(--tm-line);
	background: var(--tm-paper);
}

.tm-guide-results__search {
	padding: 1rem 1.25rem 1.1rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	box-shadow: 0 8px 24px rgba(19, 42, 51, 0.05);
}

.tm-guide-search label {
	color: var(--tm-ink);
	font-size: 0.82rem;
	font-weight: 800;
}

.tm-guide-search > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
}

.tm-guide-search input {
	min-width: 0;
	min-height: 46px;
	padding-inline: 0.75rem;
	border: 1px solid var(--tm-line-strong);
	border-left: 0;
	border-radius: 0 var(--tm-radius-sm) var(--tm-radius-sm) 0;
	background: var(--tm-paper);
	color: var(--tm-ink);
	font: inherit;
	font-size: 0.82rem;
}

.tm-guide-search button {
	min-height: 46px;
	padding-inline: 0.8rem;
	border: 1px solid var(--tm-ink);
	border-radius: var(--tm-radius-sm) 0 0 var(--tm-radius-sm);
	background: var(--tm-ink);
	color: var(--tm-white);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 800;
	cursor: pointer;
}

.tm-guide-categories {
	background: var(--tm-white);
}

.tm-guide-categories__all {
	display: flex;
	min-height: 52px;
	align-items: center;
	padding-inline: 1.25rem;
	border-bottom: 1px solid var(--tm-line);
	color: var(--tm-ink);
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration: none;
}

.tm-guide-category {
	border-bottom: 1px solid var(--tm-line);
}

.tm-guide-category:last-child {
	border-bottom: 0;
}

.tm-guide-category summary {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 1.25rem;
	color: var(--tm-ink);
	font-size: 0.92rem;
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.tm-guide-category summary::-webkit-details-marker {
	display: none;
}

.tm-guide-category summary::after {
	width: 0.55rem;
	height: 0.55rem;
	flex: 0 0 auto;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 150ms ease;
}

.tm-guide-category[open] summary {
	background: var(--tm-mist);
}

.tm-guide-category[open] summary::after {
	transform: rotate(225deg);
}

.tm-guide-category__children {
	display: grid;
	gap: 0.2rem;
	padding: 0.4rem 0.75rem 0.8rem;
	background: var(--tm-paper);
}

.tm-guide-category__children a {
	display: flex;
	min-height: 42px;
	align-items: center;
	padding: 0.5rem 0.65rem;
	border-radius: 0.45rem;
	color: var(--tm-ink-soft);
	font-size: 0.78rem;
	line-height: 1.65;
	text-decoration: none;
}

.tm-guide-categories__all:hover,
.tm-guide-category summary:hover,
.tm-guide-category__children a:hover {
	background: var(--tm-mist);
	color: var(--tm-ink);
}

.tm-guide-categories__all.is-active,
.tm-guide-category__children a.is-active {
	background: var(--tm-amber-soft);
	color: var(--tm-ink);
	font-weight: 850;
}

.tm-guide-search input:focus-visible,
.tm-guide-search button:focus-visible,
.tm-guide-sidebar a:focus-visible,
.tm-guide-sidebar summary:focus-visible,
.tm-guide-sidebar__ask:focus-visible {
	position: relative;
	z-index: 2;
	outline: 3px solid var(--tm-amber);
	outline-offset: 2px;
}

.tm-guide-sidebar__reset {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin: 1rem 1.35rem;
	border: 1px solid var(--tm-line-strong);
	border-radius: var(--tm-radius-sm);
	color: var(--tm-ink);
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.tm-guide-filters {
	padding: clamp(1.25rem, 4vw, 2rem);
	border: 1px solid var(--tm-line);
	border-top: 4px solid var(--tm-amber);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
	box-shadow: 0 14px 40px rgba(19, 42, 51, 0.06);
}

.tm-guide-filters__header,
.tm-guide-results__header,
.tm-service-guides__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
}

.tm-guide-filters__header h2,
.tm-guide-results__header h2,
.tm-service-guides__header h2 {
	margin-block: 0;
}

.tm-guide-filters__header > p,
.tm-guide-results__header > p {
	max-width: 34rem;
	margin: 0;
	color: var(--tm-ink-soft);
}

.tm-guide-filters__fields {
	display: grid;
	grid-template-columns: minmax(240px, 1.35fr) repeat(2, minmax(190px, 0.85fr)) auto;
	gap: 0.85rem;
	align-items: end;
	margin-top: 1.75rem;
}

.tm-guide-filter-field {
	display: grid;
	gap: 0.45rem;
	margin: 0;
}

.tm-guide-filter-field label {
	color: var(--tm-ink);
	font-size: 0.84rem;
	font-weight: 700;
}

.tm-guide-filter-field input,
.tm-guide-filter-field select {
	width: 100%;
	min-height: 50px;
	padding-inline: 0.85rem;
	border: 1px solid var(--tm-line-strong);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-paper);
	color: var(--tm-ink);
	font: inherit;
}

.tm-guide-filter-field input:focus-visible,
.tm-guide-filter-field select:focus-visible {
	border-color: var(--tm-ink);
	outline: 3px solid rgba(242, 163, 58, 0.32);
	outline-offset: 1px;
}

.tm-guide-filters__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.tm-guide-filters__actions button {
	min-height: 50px;
	padding-inline: 1.15rem;
	border: 1px solid var(--tm-amber);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-amber);
	color: var(--tm-ink);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.tm-guide-filters__actions a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--tm-ink-soft);
	font-size: 0.84rem;
	font-weight: 700;
	text-underline-offset: 0.22em;
}

.tm-guide-filters__actions button:hover {
	background: #e99528;
}

.tm-guide-filters__actions button:focus-visible,
.tm-guide-filters__actions a:focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: 3px;
}

.tm-guide-topics {
	padding-block: 0.5rem;
}

.tm-guide-topics__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.tm-guide-topics__heading h2 {
	margin: 0;
	font-size: 1.15rem;
}

.tm-guide-topics__heading > a,
.tm-service-guides__all a {
	color: var(--tm-ink);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration-color: var(--tm-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.25em;
}

.tm-guide-topics__groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.tm-guide-topic-group {
	padding: 1rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	background: rgba(255, 255, 255, 0.62);
}

.tm-guide-topic-group__parent {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--tm-ink);
	font-weight: 800;
	text-decoration: none;
}

.tm-guide-topic-group > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.tm-guide-topic-group > div a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	padding-inline: 0.65rem;
	border: 1px solid var(--tm-line);
	border-radius: 999px;
	color: var(--tm-ink-soft);
	font-size: 0.78rem;
	text-decoration: none;
}

.tm-guide-topic-group a:hover,
.tm-guide-topic-group a.is-active {
	border-color: var(--tm-ink);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-topic-group a:focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: 2px;
}

.tm-guide-results {
	display: grid;
	gap: 1.5rem;
}

.tm-guide-results__header > p {
	flex: 0 0 auto;
	padding: 0.45rem 0.75rem;
	border: 1px solid var(--tm-line);
	border-radius: 999px;
	background: var(--tm-white);
	font-size: 0.8rem;
}

.tm-guide-library__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.tm-guide-library__grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.tm-guide-library-card {
	overflow: hidden;
	border: 1px solid var(--tm-line);
	border-top: 3px solid var(--tm-amber);
	border-radius: var(--tm-radius-sm);
	background: var(--tm-white);
	box-shadow: 0 10px 28px rgba(19, 42, 51, 0.05);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.tm-guide-library-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(19, 42, 51, 0.1);
}

.tm-guide-library-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--tm-mist);
}

.tm-guide-library-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.tm-guide-library-card:hover .tm-guide-library-card__media img {
	transform: scale(1.025);
}

.tm-guide-library-card__body {
	display: flex;
	min-height: 285px;
	flex-direction: column;
	padding: 1.25rem;
}

.tm-guide-library-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.tm-guide-library-card__meta span {
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: var(--tm-amber-soft);
	color: var(--tm-ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
}

.tm-guide-library-card__meta span + span {
	background: var(--tm-mist);
}

.tm-guide-library-card h3 {
	margin-block: 0;
	font-size: clamp(1.18rem, 1.08rem + 0.4vw, 1.48rem);
	line-height: 1.65;
}

.tm-guide-library-card h3 a {
	color: inherit;
	text-decoration: none;
}

.tm-guide-library-card h3 a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.tm-guide-library-card {
	position: relative;
}

.tm-guide-library-card__body > p {
	margin-block: 0.8rem 0;
	color: var(--tm-ink-soft);
	font-size: 0.88rem;
	line-height: 1.9;
}

.tm-guide-library-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1.1rem;
	border-top: 1px solid var(--tm-line);
}

.tm-guide-library-card__footer a {
	position: relative;
	z-index: 1;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 0.35rem;
	color: var(--tm-ink);
	font-size: 0.84rem;
	font-weight: 800;
}

.tm-guide-library-card__footer time {
	color: #687b83;
	font-size: 0.72rem;
}

.tm-guide-library-card h3 a:focus-visible,
.tm-guide-library-card__footer a:focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: 3px;
}

.tm-guide-library__empty {
	padding: clamp(2rem, 5vw, 3.5rem);
	border: 1px dashed var(--tm-line-strong);
	border-radius: var(--tm-radius-md);
	background: var(--tm-white);
	text-align: center;
}

.tm-guide-library__empty h3 {
	margin-top: 0;
}

.tm-guide-library__empty a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--tm-ink);
	font-weight: 800;
	text-underline-offset: 0.25em;
}

.tm-guide-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tm-guide-pagination a,
.tm-guide-pagination .current {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding-inline: 0.7rem;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-sm);
	color: var(--tm-ink);
	text-decoration: none;
}

.tm-guide-pagination .current {
	border-color: var(--tm-ink);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-service-guides {
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding-top: clamp(2rem, 5vw, 3.5rem);
	border-top: 1px solid var(--tm-line);
}

.tm-service-content-shell > .tm-service-guides:first-child {
	margin-block: 0 clamp(3rem, 6vw, 5rem);
	padding-top: 0;
	border-top: 0;
	scroll-margin-top: 1.5rem;
}

.tm-guide-carousel__controls {
	display: flex;
	flex: 0 0 auto;
	gap: 0.5rem;
}

.tm-guide-carousel__controls button {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--tm-line-strong);
	border-radius: 50%;
	background: var(--tm-white);
	color: var(--tm-ink);
	font: inherit;
	font-size: 1.2rem;
	cursor: pointer;
}

.tm-guide-carousel__controls button:hover:not(:disabled) {
	border-color: var(--tm-ink);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-carousel__controls button:focus-visible {
	outline: 3px solid var(--tm-amber);
	outline-offset: 2px;
}

.tm-guide-carousel__controls button:disabled {
	cursor: not-allowed;
	opacity: 0.38;
}

.tm-guide-carousel__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	margin-top: 1.5rem;
	padding: 0.15rem 0 1rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--tm-line-strong) transparent;
	scrollbar-width: thin;
}

.tm-guide-carousel__track > .tm-guide-library-card {
	flex: 0 0 calc((100% - 2rem) / 3);
	scroll-snap-align: start;
}

.tm-guide-carousel--single .tm-guide-carousel__track > .tm-guide-library-card {
	flex-basis: 100%;
}

.tm-guide-carousel--single .tm-guide-library-card--carousel .tm-guide-library-card__body {
	min-height: auto;
}

.tm-guide-library-card--carousel .tm-guide-library-card__body {
	min-height: 270px;
}

.tm-service-guides__all {
	margin: 1rem 0 0;
}

.tm-guide-service-cta {
	max-width: 50rem;
	margin-top: clamp(3rem, 7vw, 5rem);
	padding: clamp(1.5rem, 4vw, 2.25rem);
	border-top: 4px solid var(--tm-amber);
	border-radius: var(--tm-radius-md);
	background: var(--tm-ink);
	color: var(--tm-white);
}

.tm-guide-service-cta .tm-kicker {
	color: var(--tm-amber);
}

.tm-guide-service-cta h2 {
	margin-block: 0;
	color: var(--tm-white);
}

.tm-guide-service-cta > p:not(.tm-kicker) {
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.78);
}

.tm-guide-service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.1rem;
	margin-top: 1.5rem;
}

.tm-guide-service-cta__actions > a:not(.tm-button) {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--tm-white);
	font-weight: 800;
	text-underline-offset: 0.25em;
}

.tm-related-guides__grid .tm-guide-library-card {
	padding: 0;
	border-top-color: var(--tm-amber);
}

.tm-related-guides__grid .tm-guide-library-card h3 {
	margin: 0;
}

.tm-related-guides__grid .tm-guide-library-card p {
	margin-block: 0.8rem 0;
}

.tm-page-shell {
	min-height: 55vh;
	padding-block: clamp(2.5rem, 6vw, 5rem);
}

.tm-page-shell > .tm-breadcrumb-shell {
	padding-block: 0;
}

.tm-page-shell > .wp-block-post-title,
.tm-page-shell > h1 {
	max-width: 18ch;
	margin-top: 1.5rem;
}

.tm-page-shell .wp-block-post-content {
	margin-top: 2rem;
}

.tm-page-shell .wp-block-post-content > :where(h2, h3) {
	margin-top: 2.5rem;
}

.tm-page-shell .wp-block-post-content a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.tm-breadcrumbs {
	overflow-x: auto;
	color: #5f7077;
	font-size: 0.82rem;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.wp-site-blocks .tm-breadcrumb-shell > .tm-breadcrumbs {
	width: 100%;
	max-width: none;
	margin-inline: 0 !important;
}

.tm-breadcrumbs::-webkit-scrollbar {
	display: none;
}

.tm-breadcrumbs ol {
	display: flex;
	width: max-content;
	max-width: none;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.tm-breadcrumbs li:not(:last-child)::after {
	margin-inline-start: 0.45rem;
	content: "←";
}

.tm-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.tm-breadcrumbs a:hover {
	color: var(--tm-ink);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.tm-breadcrumbs [aria-current="page"] {
	color: var(--tm-ink);
	font-weight: 700;
}

.tm-query-grid {
	gap: 1rem;
	margin-top: 2.5rem;
}

.tm-query-card {
	display: flex;
	min-height: 235px;
	flex-direction: column;
	padding: 1.5rem;
	border-top: 3px solid var(--tm-ink);
	background: var(--tm-white);
	box-shadow: 0 10px 30px rgba(19, 42, 51, 0.06);
}

.tm-query-card .wp-block-post-title {
	margin-top: 0;
}

.tm-query-card .wp-block-post-excerpt {
	margin-top: auto;
}

.tm-query-card .wp-block-post-excerpt__more-link {
	font-weight: 700;
}

.tm-empty-state,
.tm-404 {
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-lg);
	background: var(--tm-white);
}

.tm-guide-meta {
	color: #5f7077;
	font-size: 0.85rem;
}

.tm-mobile-actions {
	display: none;
}

@keyframes tm-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1024px) {
	.tm-nav__desktop {
		display: none;
	}

	.tm-nav__mobile {
		display: block;
		position: static;
		order: -1;
	}

	.tm-nav__mobile-panel {
		top: calc(100% + 1px);
		right: auto;
		left: 0;
		width: min(22rem, calc(100vw - 2rem));
		min-width: 0;
	}

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

	.tm-related-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-service-next-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-service-symptom-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.tm-service-brand-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tm-service-brands__footer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-service-brands__footer a {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.tm-service-directory {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-query-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.tm-guide-filters__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-guide-filters__actions {
		align-self: end;
	}

	.tm-guide-topics__groups,
	.tm-guide-library__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-guide-carousel__track > .tm-guide-library-card {
		flex-basis: calc((100% - 1rem) / 2);
	}
}

@media (max-width: 781px) {
	.tm-site-header__inner {
		min-height: 66px;
		gap: 0.75rem;
	}

	.tm-nav {
		flex: initial;
		gap: 0.6rem;
	}

	.tm-nav__actions {
		gap: 0.5rem;
	}

	.tm-nav__phone {
		min-width: 44px;
		justify-content: center;
	}

	.tm-nav__phone-text {
		display: none;
	}

	.tm-nav__actions .tm-button {
		display: none;
	}

	.tm-hero {
		padding-block: 3.5rem 4.25rem;
	}

	.tm-hero__grid,
	.tm-form-layout,
	.tm-process-layout {
		gap: 2.5rem;
	}

	.tm-hero__content {
		order: -1;
	}

	.tm-service-hero__inner {
		grid-template-columns: 1fr;
	}

	.tm-service-console {
		width: 100%;
		max-width: 38rem;
	}

	.tm-service-next-steps__grid {
		grid-template-columns: 1fr;
	}

	.tm-commercial-hero__inner {
		grid-template-columns: 1fr;
	}

	.tm-contact-choice-grid,
	.tm-contact-facts__grid,
	.tm-contact-prepare {
		grid-template-columns: 1fr;
	}

	.tm-contact-choice {
		min-height: 0;
	}

	.tm-commercial-summary {
		max-width: 38rem;
	}

	.tm-service-summary {
		max-width: 38rem;
	}

	.tm-service-pricing-panel,
	.tm-service-device-info,
	.tm-service-coverage-panel,
	.tm-about-learning {
		grid-template-columns: 1fr;
	}

	.tm-service-coverage-panel__visual {
		min-height: 190px;
	}

	.tm-service-navigation__label {
		display: none;
	}

	.tm-service-brands__header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.tm-service-brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-diagnostic {
		max-width: 31rem;
		margin-inline: auto;
	}

	.tm-appliance-grid,
	.tm-guide-preview-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-guide-filters__header,
	.tm-guide-results__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.tm-guide-filters__fields {
		grid-template-columns: 1fr;
	}

	.tm-service-guides__header {
		align-items: center;
	}

	.tm-trust-grid {
		gap: 1.25rem;
	}

	.tm-trust-item {
		padding-block: 0.3rem;
	}

	.tm-form-intro {
		padding-inline: 0;
	}

	.tm-pricing-copy,
	.tm-cost-factors {
		padding: 1.5rem;
	}

	.tm-mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 50;
		grid-template-columns: minmax(100px, 0.42fr) minmax(180px, 0.58fr);
		gap: 0.5rem;
		padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
		border-top: 1px solid var(--tm-line);
		background: var(--tm-white);
		box-shadow: 0 -10px 30px rgba(19, 42, 51, 0.1);
		transition:
			opacity var(--tm-transition),
			visibility var(--tm-transition),
			transform var(--tm-transition);
	}

	.home .tm-mobile-actions,
	.post-type-archive-tm360_service .tm-mobile-actions,
	.single-tm360_service .tm-mobile-actions,
	.post-type-archive-tm360_guide .tm-mobile-actions,
	.single-tm360_guide .tm-mobile-actions,
	.tm360-commercial-page .tm-mobile-actions {
		display: grid;
	}

	body.tm-form-in-view .tm-mobile-actions {
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
		transform: translateY(100%);
	}

	.tm-mobile-actions a {
		display: flex;
		min-height: 48px;
		align-items: center;
		justify-content: center;
		gap: 0.35rem;
		border-radius: 7px;
		font-size: clamp(0.8rem, 3.5vw, 0.88rem);
		font-weight: 700;
		line-height: 1.45;
		text-align: center;
	}

	.tm-mobile-actions__call {
		border: 1px solid var(--tm-ink);
		color: var(--tm-ink);
	}

	.tm-mobile-actions__request {
		background: var(--tm-amber);
		color: var(--tm-ink);
	}

	body.home,
	body.post-type-archive-tm360_service,
	body.single-tm360_service,
	body.post-type-archive-tm360_guide,
	body.single-tm360_guide,
	body.tm360-commercial-page {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 600px) {
	.tm-brand {
		font-size: clamp(1.08rem, 5.2vw, 1.3rem);
	}

	.tm-nav__mobile summary {
		min-width: 46px;
		padding-inline: 0.5rem;
		font-size: 0.88rem;
	}

	.tm-nav__mobile-panel {
		width: calc(100vw - 2rem);
	}

	.tm-section {
		padding-block: 3.5rem;
	}

	.tm-section-heading {
		align-items: flex-start;
		margin-bottom: 1.75rem;
	}

	.tm-hero h1 {
		max-width: 15ch;
	}

	.tm-hero h1,
	.tm-service-hero h1,
	.tm-commercial-hero h1,
	.tm-guide-hero .wp-block-post-title,
	.tm-guide-archive__hero h1,
	.tm-page-shell > .wp-block-post-title,
	.tm-page-shell > h1 {
		overflow-wrap: anywhere;
	}

	.tm-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.tm-hero__actions .wp-block-button,
	.tm-hero__actions .wp-element-button {
		width: 100%;
	}

	.tm-diagnostic__screen {
		gap: 0.5rem;
	}

	.tm-device {
		min-height: 100px;
	}

	.tm-appliance-grid,
	.tm-service-grid,
	.tm-guide-preview-grid,
	.tm-related-services__grid,
	.tm-service-directory,
	.tm-about-services .tm-service-directory {
		grid-template-columns: 1fr;
	}

	.tm-service-hero {
		padding-block: 3rem 3.5rem;
	}

	.tm-commercial-hero {
		padding-block: 3rem 3.5rem;
	}

	.tm-service-hero__inner,
	.tm-commercial-hero__inner {
		gap: 2rem;
	}

	.tm-service-hero h1,
	.tm-commercial-hero h1 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.tm-service-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tm-service-hero__actions a {
		width: 100%;
	}

	.tm-service-console__visual {
		grid-template-columns: 90px minmax(0, 1fr);
		padding: 1rem;
	}

	.tm-service-console__visual svg {
		max-height: 110px;
	}

	.tm-service-navigation__inner {
		padding-inline: 0;
	}

	.tm-service-navigation a {
		min-height: 44px;
		padding-inline: 0.65rem;
		font-size: 0.8rem;
	}

	.tm-service-content-shell {
		padding-block: 3rem;
	}

	.tm-service-content-shell > .wp-block-post-content > * + * {
		margin-top: 3.5rem;
	}

	.tm-symptom-card {
		min-height: auto;
	}

	.tm-service-symptom-grid {
		grid-template-columns: 1fr !important;
	}

	.tm-service-process-panel,
	.tm-service-pricing-panel {
		padding: 1.25rem;
	}

	.tm-service-pricing-factors {
		padding: 1rem;
	}

	.tm-service-device-info {
		padding: 1.25rem;
	}

	.tm-service-brands {
		padding: 1.25rem;
	}

	.tm-service-brands__footer {
		grid-template-columns: 1fr;
	}

	.tm-service-brands__footer a {
		grid-column: auto;
		width: 100%;
	}

	.tm-service-process-grid > .wp-block-column {
		padding: 1rem;
	}

	.tm-service-price-ranges {
		padding: 1rem;
	}

	.tm-pricing-range summary {
		min-height: 68px;
		padding: 0.85rem 1rem;
	}

	.tm-pricing-range__content {
		padding: 0 0.75rem 0.9rem;
	}

	.tm-price-table-wrap {
		overflow: visible;
		border: 0;
		border-radius: 0;
	}

	.tm-price-table,
	.tm-service-price-ranges .tm-price-table {
		min-width: 0;
		border-collapse: separate;
	}

	.tm-price-table caption {
		display: block;
		margin-bottom: 0.75rem;
		border: 1px solid var(--tm-line);
		border-radius: var(--tm-radius-sm);
		line-height: 1.8;
	}

	.tm-price-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		border: 0;
	}

	.tm-price-table tbody {
		display: grid;
		gap: 0.75rem;
	}

	.tm-price-table tbody tr {
		display: block;
		overflow: hidden;
		border: 1px solid var(--tm-line);
		border-radius: var(--tm-radius-sm);
		background: var(--tm-white);
	}

	.tm-price-table tbody th,
	.tm-price-table tbody td,
	.tm-price-table tbody tr:last-child > * {
		display: block;
		width: auto;
		padding: 0.8rem 0.9rem;
		border: 0;
		white-space: normal;
	}

	.tm-price-table tbody tr:nth-child(even) > * {
		background: transparent;
	}

	.tm-price-table tbody th {
		font-size: 0.93rem;
		line-height: 1.75;
	}

	.tm-price-table tbody td {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		gap: 0.75rem;
		border-top: 1px solid var(--tm-line);
		background: var(--tm-paper) !important;
		color: var(--tm-ink);
		font-size: 0.88rem;
		font-weight: 700;
		line-height: 1.75;
	}

	.tm-price-table tbody td::before {
		flex: 0 0 auto;
		content: "محدوده قیمت";
		color: var(--tm-ink-soft);
		font-size: 0.72rem;
		font-weight: 500;
	}

	.tm-service-coverage-panel__visual {
		min-height: 175px;
	}

	.tm-commercial-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tm-commercial-hero__actions a {
		width: 100%;
	}

	.tm-contact-choice--request .wp-block-buttons,
	.tm-contact-choice--request .wp-block-button,
	.tm-contact-choice--request .wp-element-button {
		width: 100%;
	}

	.tm-contact-phone a {
		width: 100%;
		justify-content: center;
	}

	.tm-contact-prepare__list {
		grid-template-columns: 1fr;
	}

	.tm-service-section-heading--row {
		align-items: flex-start;
		flex-direction: column;
	}

	.tm-related-service-card {
		min-height: auto;
	}

	.tm-service-directory__card,
	.tm-about-services .tm-service-directory__card {
		min-height: auto;
	}

	.tm-service-directory-note {
		align-items: stretch;
		flex-direction: column;
	}

	.tm-service-directory-note .wp-block-buttons,
	.tm-service-directory-note .wp-block-button,
	.tm-service-directory-note .wp-element-button {
		width: 100%;
	}

	.tm-guide-review {
		display: grid;
		gap: 0.6rem;
	}

	.tm-guide-library__layout {
		grid-template-columns: 1fr;
	}

	.tm-guide-sidebar__inner,
	.admin-bar .tm-guide-sidebar__inner {
		position: static;
	}

	.tm-guide-sidebar__links {
		max-height: 14rem;
	}

	.tm-guide-review div,
	.tm-guide-review div + div {
		padding: 0;
		border: 0;
	}

	.tm-guide-toc ul {
		grid-template-columns: 1fr;
	}

	.tm-guide-topics__groups,
	.tm-guide-library__grid {
		grid-template-columns: 1fr;
	}

	.tm-guide-filter-field input,
	.tm-guide-filter-field select {
		min-height: 52px;
	}

	.tm-guide-filters__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.tm-guide-filters__actions button,
	.tm-guide-filters__actions a {
		justify-content: center;
		width: 100%;
	}

	.tm-guide-carousel__track > .tm-guide-library-card {
		flex-basis: min(86vw, 350px);
	}

	.tm-guide-library-card__body,
	.tm-guide-library-card--carousel .tm-guide-library-card__body {
		min-height: auto;
	}

	.tm-guide-service-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tm-guide-service-cta__actions a {
		justify-content: center;
		width: 100%;
		text-align: center;
	}

	.tm-guide-archive__principles {
		display: grid;
	}

	.tm-guide-archive__principles p {
		width: 100%;
		border-radius: var(--tm-radius-sm);
	}

	.tm-guide-card {
		min-height: auto;
	}

	.tm-related-guides__grid {
		grid-template-columns: 1fr;
	}

	.tm-query-grid {
		grid-template-columns: 1fr !important;
	}

	.tm-appliance-link {
		min-height: 88px;
	}

	.tm-service-card {
		min-height: auto;
	}

	.tm-service-card__number {
		margin-bottom: 0;
	}

	.tm-service-card__top {
		margin-bottom: 1.5rem;
	}

	.tm-appliance-link__index {
		display: none;
	}

	.tm-appliance-link {
		grid-template-columns: auto 1fr auto;
	}

	.tm-form-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.tm-request-form {
		scroll-margin-top: 0.75rem;
		padding: 0.9rem;
		border-radius: var(--tm-radius-md);
	}

	.tm-request-form__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
		margin-bottom: 1rem;
		padding-bottom: 0.75rem;
	}

	.tm-field {
		gap: 0.35rem;
	}

	.tm-field textarea {
		min-height: 88px;
	}

	.tm-field--full {
		grid-column: auto;
	}

	.tm-request-form__footer {
		align-items: stretch;
		flex-direction: column;
		gap: 0.75rem;
		margin-top: 1rem;
	}

	.tm-request-form__submit {
		width: 100%;
	}

	.tm-final-cta__inner {
		align-items: flex-start;
	}

	.tm-final-cta .wp-block-buttons {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.tm-final-cta .wp-block-button,
	.tm-final-cta .wp-element-button {
		width: 100%;
	}

	.tm-commercial-content-shell .wp-block-post-content > * + * {
		margin-top: 3rem;
	}

	.tm-site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.tm-footer-nav .tm-nav__link,
	.tm-legal-links a {
		display: inline-flex;
		min-height: 44px;
		align-items: center;
	}

	.tm-breadcrumbs li {
		flex: 0 0 auto;
	}
}

@media (max-width: 430px) {
	.tm-service-console__visual {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.tm-service-summary dl div {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.tm-mobile-actions {
		grid-template-columns: minmax(94px, 0.38fr) minmax(0, 0.62fr);
	}

	.tm-mobile-actions a {
		padding-inline: 0.55rem;
	}
}

@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;
	}
}
