/* ============================================================
   Statera — Utility pages
   One sheet for all six Elementor utility pages: FAQ, Contact,
   Join Our Team, Insights, and the legal pages. Every rendered
   section carries .ut-root; everything is scoped to it so
   nothing leaks onto the rest of the site.
   ============================================================ */

/* ---------- Section base ----------
   Sections carry only their side gutters here (the team-member.css
   pattern: `padding: 0 var(--gutter)`). Block spacing — the 56px
   section gaps and 100px block padding (36/48 mobile) — comes from
   the Elementor wrapper model in overrides.css, per page.
   .ut-inner centres the content column inside the full-width
   Elementor container. */
.ut-root {
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}
.ut-inner {
	max-width: var(--content-max);
	margin: 0 auto;
}
/* The JS hides cards/panes/buttons with the `hidden` property, but author
   display rules (.ut-faq-card { display: flex } etc.) override the UA
   [hidden] rule — without this, "hidden" FAQ/insights cards still render. */
.ut-root [hidden] {
	display: none !important;
}

/* ---------- Dark pill buttons ----------
   The .st-btn / dark-arrow-btn styles live in home-sections.css, which
   utility pages do not load; these are the same rules, scoped. */
.ut-root .st-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	padding: 10px 20px;
	border: 0;
	border-radius: 80px;
	background: #404040;
	color: #ffffff;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
.ut-root .st-btn--arrow { gap: 10px; }
.ut-root .st-btn--arrow::after {
	content: "";
	width: 24px;
	height: 24px;
	flex: none;
	background: url("../assets/icon-arrow-right-light.svg") center / 24px 24px no-repeat;
}
@media (hover: hover) and (pointer: fine) {
	body.wp-theme-statera .ut-root .st-btn:hover {
		background: var(--green-accent);
		color: var(--charcoal);
	}
	body.wp-theme-statera .ut-root .st-btn:hover::after {
		background-image: url("../assets/icon-arrow-right-dark.svg");
	}
}
body.wp-theme-statera .ut-root .st-btn:active {
	background: var(--green-accent);
	color: var(--charcoal);
}
body.wp-theme-statera .ut-root .st-btn:active::after {
	background-image: url("../assets/icon-arrow-right-dark.svg");
}
/* Focus is an outline, not the green fill: Safari keeps :focus-visible on
   buttons after a tap/click, which left the button stuck in the pressed
   (green) look until the user clicked elsewhere. */
body.wp-theme-statera .ut-root .st-btn:focus-visible {
	outline: 2px solid var(--green-accent);
	outline-offset: 2px;
}
/* The Elementor kit paints every focused button and link accent-green
   (`.elementor-kit-5 button:focus, a:focus { color: accent }` plus a 3px
   outline), so a clicked button kept green letters until focus moved on.
   Pin the resting text colour for pointer focus; keyboard focus-visible
   keeps the outline above. */
body.wp-theme-statera .ut-root .st-btn:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-submit:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-faq-pill.is-active:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-insp-pill.is-active:focus:not(:hover):not(:active):not(:focus-visible) {
	color: #ffffff;
	outline: none;
}
body.wp-theme-statera .ut-faq-more:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-load-more:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-faq-pill:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-insp-pill:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-contact-tab:focus:not(:hover):not(:active):not(:focus-visible),
body.wp-theme-statera .ut-hero__btn:focus:not(:hover):not(:active):not(:focus-visible) {
	color: #000000;
	outline: none;
}

/* ---------- Hero (every utility page) ---------- */
.ut-hero .ut-inner {
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.ut-hero__eyebrow {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.2px;
	text-transform: uppercase;
	color: #686E76;
}
body.wp-theme-statera .ut-hero__title {
	font-size: 54px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.62px;
	color: var(--black);
}
.ut-hero__intro {
	font-size: 20px;
	line-height: 1.5;
	opacity: .7;
	max-width: 560px;
}
/* Meta line under the title/intro — the Terms & Conditions hero's
   "Last updated …" line (Figma 39:3957): 18px Medium, black. */
.ut-hero__meta {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.54px;
	color: #000000;
	max-width: 580px;
}
/* Hairline rule under the hero (Figma 39:3952) — hero text, rule and body
   share the same left edge. The column spans the standard content width
   (--content-max), widened from the frame's 647px at the client's request
   so wide screens don't leave empty side fields. */
.ut-hero .ut-inner.ut-hero--divider .ut-hero__text {
	width: 100%;
	margin-inline: auto;
	border-bottom: 1px solid #4F555C;
	padding-bottom: 50px;
}

/* Two-column hero, only once the author uploads a photo (the control has
   no default — text-only until then). Text left, photo right in the
   Figma Blog Main hero's 559x399 frame; stacks on mobile. */
.ut-hero .ut-inner.ut-hero--row {
	flex-direction: row;
	align-items: center;
	gap: 50px;
}
.ut-hero--row .ut-hero__text {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.ut-hero__media {
	flex: none;
	width: 559px;
	max-width: 44%;
	aspect-ratio: 559 / 399;
	border-radius: 15px;
	overflow: hidden;
}
.ut-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Centred hero variant (FAQ): text column centred, intro capped like the
   Figma Faq Page hero (39:3848). */
.ut-hero .ut-inner.ut-hero--center .ut-hero__text {
	align-items: center;
	text-align: center;
}
.ut-hero--center .ut-hero__intro {
	margin-inline: auto;
	max-width: 580px;
}

/* Green band variant (Contact page hero, Figma 39:3237): the hero text
   sits inside a rounded green card. */
.ut-hero .ut-inner.ut-hero--band {
	background: #e2e6d1;
	border-radius: 30px;
	padding: 80px 40px;
}
/* Band + photo (Blog Main hero, Figma 39:3321): the photo bleeds to the
   band's top/right/bottom edges, so the padding moves onto the text
   column and the band clips the photo to its rounded corners. */
.ut-hero .ut-inner.ut-hero--band.ut-hero--row {
	padding: 0 0 0 40px;
	overflow: hidden;
}
.ut-hero--band.ut-hero--row .ut-hero__text { padding: 80px 0; }
.ut-hero--band.ut-hero--row .ut-hero__media {
	align-self: stretch;
	aspect-ratio: auto;
	border-radius: 0;
}
/* The photo's left edge fades into the band green. */
.ut-hero--band .ut-hero__media { position: relative; }
.ut-hero--band .ut-hero__media::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 180px;
	background: linear-gradient(to left, rgba(226, 230, 209, 0), #e2e6d1);
	pointer-events: none;
	z-index: 1;
}

/* Navy card variant (Join Our Team hero, Figma 39:4003): the text card is
   navy with white type, the photo sits in a white card; both rounded 30
   and equal height. Needs the photo, so it always pairs with --row. */
.ut-hero .ut-inner.ut-hero--card {
	align-items: stretch;
	gap: 27px;
}
.ut-hero--card .ut-hero__text {
	background: #304A69;
	border-radius: 30px;
	padding: 80px 40px;
	gap: 45px;
}
.ut-hero--card .ut-hero__eyebrow { color: #D7D7D7; }
body.wp-theme-statera .ut-hero--card .ut-hero__title {
	color: #FFFFFF;
	font-size: 48px;
	letter-spacing: -1.44px;
}
.ut-hero--card .ut-hero__intro {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.54px;
	color: #FFFFFF;
	opacity: 1;
	max-width: 405px;
}
.ut-hero--card .ut-hero__media {
	width: auto;
	max-width: none;
	flex: 1 1 0;
	aspect-ratio: auto;
	background: #FFFFFF;
	border-radius: 30px;
}
/* White pill button with the inline arrow (the card hero's Let's Talk). */
body.wp-theme-statera .ut-hero__btn {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	height: 50px;
	padding: 0 20px;
	border-radius: 80px;
	background: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	transition: background-color .2s ease;
}
.ut-hero__btn img { width: 24px; height: 24px; display: block; transform: scaleX(-1); }
/* Same hover as About's .btn-light ("Read his story"): green accent disc,
   label forced black — the body prefix outranks the Elementor kit's
   `.elementor-kit-5 a:hover` (0,2,1), which otherwise steals the hover. */
@media (hover: hover) and (pointer: fine) {
	body.wp-theme-statera .ut-hero__btn:hover { background: var(--green-accent); color: var(--black); }
}
body.wp-theme-statera .ut-hero__btn:active { background: var(--green-accent); color: var(--black); }
/* Focus is an outline, not the green fill — Safari would otherwise keep
   the button stuck in the pressed look after a tap. */
body.wp-theme-statera .ut-hero__btn:focus-visible {
	outline: 2px solid var(--green-accent);
	outline-offset: 2px;
}

/* ---------- Text columns (Join Our Team, Figma 39:4018) ----------
   Eyebrow + 48px heading over any number of 20px-subtitle columns; bodies
   20px #333 with blue underlined links. The band variant (Figma 39:4034)
   puts the heading on the left of a green rounded band. */
.ut-cols .ut-inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.ut-cols__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 569px;
}
.ut-cols__eyebrow {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.2px;
	text-transform: uppercase;
	color: #686E76;
}
body.wp-theme-statera .ut-cols__heading {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.44px;
	color: #2B2B29;
}
.ut-cols__grid {
	display: flex;
	gap: 54px;
}
.ut-cols__col {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
body.wp-theme-statera .ut-cols__subtitle {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	color: #000000;
}
.ut-cols__body {
	font-size: 20px;
	line-height: 1.5;
	color: #333333;
}
.ut-cols__body p + p { margin-top: 1em; }
.ut-cols__body a {
	color: #0067C4;
	text-decoration: underline;
}
.ut-cols__media {
	background: #FFFFFF;
	border-radius: 30px;
	overflow: hidden;
}
.ut-cols__media img {
	width: 100%;
	height: 506px;
	object-fit: cover;
	display: block;
}
.ut-cols .ut-inner.ut-cols--band {
	flex-direction: row;
	align-items: flex-start;
	gap: 40px;
	background: #E6E9D7;
	border-radius: 30px;
	padding: 40px;
}
.ut-cols--band .ut-cols__head {
	flex: none;
	width: 365px;
	max-width: none;
}
.ut-cols--band .ut-cols__grid {
	flex: 1 1 0;
	min-width: 0;
	flex-direction: column;
	gap: 54px;
}

/* ---------- Prose (legal page bodies) ----------
   The legal widget renders <section class="ut-prose"> with the WYSIWYG
   body. Type follows the Terms & Conditions frame (Figma 39:3959): 17px
   body, 20px Medium headings with 60px between blocks. The column spans
   the standard content width (--content-max from .ut-inner) — widened
   from the frame's 647px at the client's request. */
.ut-prose {
	font-size: 17px;
	line-height: 1.5;
	color: #000000;
}
.ut-prose p + p { margin-top: 1em; }
/* body prefix outranks the Elementor kit's `.elementor-kit-5 h2` (0,1,2),
   the same fix as the utility buttons. */
body.wp-theme-statera .ut-prose h2 {
	font-size: 20px;
	font-weight: 500;
	color: #000000;
	margin-top: 60px;
}
/* The section padding already supplies the space above the first heading. */
.ut-prose .ut-inner > h2:first-child { margin-top: 0; }
body.wp-theme-statera .ut-prose h3 { margin-top: 1.75em; }
.ut-prose h2 + p, .ut-prose h3 + p { margin-top: .8em; }
.ut-prose ul {
	list-style: disc;
	padding-left: 1.25em;
	margin-top: 1em;
}
.ut-prose li + li { margin-top: .5em; }
body.wp-theme-statera .ut-prose a {
	color: var(--signal-blue);
	text-decoration: underline;
}

/* ---------- FAQ ----------
   Figma "Faq Page" (39:3829): an 852px centred column — white pill bar with
   the category filters, then #e6e9d7 accordion cards (no badge, chevron
   right), then an outlined Load more pill. Gaps: 60px between the three
   blocks, 16px between cards. */
.ut-faq-list .ut-inner {
	max-width: 852px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}
.ut-faq-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	padding: 6px;
	background: #ffffff;
	border-radius: 130px;
}
body.wp-theme-statera .ut-faq-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 24px;
	border: 1px solid rgba(64, 64, 64, .1);
	border-radius: 80px;
	background: none;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
body.wp-theme-statera .ut-faq-pill.is-active {
	background: #404040;
	border-color: transparent;
	color: #ffffff;
}
/* Mobile-only category dropdown; desktop keeps the pills. */
.ut-faq-select {
	display: none;
	width: 100%;
	max-width: 320px;
	height: 50px;
	padding: 0 44px 0 20px;
	border: 1px solid rgba(64, 64, 64, .1);
	border-radius: 80px;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23404040' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center / 20px 20px;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
.ut-faq {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ut-faq-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	background: #e6e9d7;
	border-radius: 16px;
	padding: 26px 30px;
}
body.wp-theme-statera .ut-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.ut-faq-question {
	flex: 1 1 0;
	min-width: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	color: #000000;
}
.ut-faq-chevron {
	flex: none;
	width: 20px;
	height: 20px;
	color: #000000;
	transition: transform .2s ease;
}
.ut-faq-card.is-open .ut-faq-chevron { transform: rotate(180deg); }
.ut-faq-a { display: none; }
.ut-faq-card.is-open .ut-faq-a { display: block; }
.ut-faq-a-inner {
	font-size: 17px;
	line-height: 1.5;
	color: #000000;
}
.ut-faq-a-inner p + p { margin-top: 1em; }
body.wp-theme-statera .ut-faq-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 24px;
	border: 1px solid rgba(64, 64, 64, .5);
	border-radius: 80px;
	background: none;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
@media (hover: hover) and (pointer: fine) {
	.ut-faq-more:hover { background: #404040; color: #ffffff; border-color: transparent; }
}
body.wp-theme-statera .ut-faq-more:active { background: #404040; color: #ffffff; border-color: transparent; }
body.wp-theme-statera .ut-faq-more[hidden] { display: none; }

/* Insights "Load more" (Figma Blog Main 39:3495): outline pill, 50px high,
   40px side padding, 1px #404040 border, 16px SemiBold black label. Hover/
   active invert to the charcoal fill with a white label — the btn-outline
   convention (docs/button.md type 5). */
body.wp-theme-statera .ut-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 40px;
	border: 1px solid #404040;
	border-radius: 80px;
	background: none;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
@media (hover: hover) and (pointer: fine) {
	.ut-load-more:hover { background: #404040; color: #ffffff; border-color: transparent; }
}
body.wp-theme-statera .ut-load-more:active { background: #404040; color: #ffffff; border-color: transparent; }

/* ---------- Contact ----------
   Figma "Contact page" (39:3216): white form card (tab bar, labeled
   fields, dark Submit pill) on the left, 332px info column on the
   right — Visit Us with an author-uploaded map photo and Open in Maps
   chip, a divider, then phone/email/LinkedIn lines. */
.ut-contact .ut-inner {
	display: flex;
	gap: 70px;
	align-items: flex-start;
}
.ut-contact-form-card {
	flex: 1 1 0;
	min-width: 0;
	background: #ffffff;
	border: 1px solid rgba(137, 143, 141, .2);
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.ut-contact-tabs {
	display: flex;
	gap: 5px;
	padding: 6px;
	background: #e8e8e8;
	border-radius: 130px;
}
body.wp-theme-statera .ut-contact-tab {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 24px;
	border: 0;
	border-radius: 80px;
	background: none;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.16px;
	color: #000000;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease;
}
body.wp-theme-statera .ut-contact-tab.is-active {
	background: #ffffff;
}
.ut-contact-pane { display: none; }
.ut-contact-pane.is-active { display: block; }
.ut-contact-form-title {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.14px;
	color: #2B2B29;
	max-width: 436px;
	margin: 8px 0 30px;
}
.ut-contact-meeting-text {
	font-size: 18px;
	line-height: 1.5;
	opacity: .8;
	max-width: 436px;
	margin: 0 0 30px;
}
/* Calendly inline embed (Book a Meeting pane) and the dashed placeholder
   box that stands in until a scheduling link is connected. */
.ut-contact-cal {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
}
.ut-contact-cal-placeholder {
	display: grid;
	place-items: center;
	min-height: 420px;
	border: 2px dashed #d8d8d8;
	border-radius: 16px;
	background: #f8f8f8;
	padding: 40px;
	text-align: center;
}
.ut-contact-cal-placeholder__text {
	font-size: 16px;
	line-height: 1.6;
	color: #686E76;
	max-width: 380px;
}
.ut-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ut-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.ut-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ut-field label {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: -0.16px;
	color: #02140D;
}
.ut-input, .ut-textarea {
	width: 100%;
	background: #f8f8f8;
	border: 1px solid #e7e7e7;
	border-radius: 16px;
	padding: 16px;
	font: inherit;
	font-size: 16px;
	line-height: 1.7;
	color: #3c3c3c;
}
.ut-input::placeholder, .ut-textarea::placeholder { opacity: .4; }
.ut-input:focus, .ut-textarea:focus {
	outline: 2px solid var(--signal-blue);
	outline-offset: 1px;
}
.ut-textarea {
	height: 178px;
	resize: vertical;
}
/* Honeypot: present in the DOM for bots, invisible and unreachable for
   humans (tabindex -1, autocomplete off in the markup). */
.ut-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
body.wp-theme-statera .ut-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	height: 50px;
	padding: 0 40px;
	border: 0;
	border-radius: 80px;
	background: #404040;
	color: #ffffff;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.16px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
@media (hover: hover) and (pointer: fine) {
	body.wp-theme-statera .ut-submit:hover { background: var(--green-accent); color: var(--charcoal); }
}
body.wp-theme-statera .ut-submit:active { background: var(--green-accent); color: var(--charcoal); }
.ut-contact-side {
	flex: none;
	width: 332px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.ut-contact-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ut-contact-block__title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.96px;
	color: #2B2B29;
}
.ut-contact-block__text {
	font-size: 18px;
	line-height: 1.5;
	color: #000000;
}
.ut-contact-map {
	position: relative;
	height: 218px;
	border-radius: 12px;
	overflow: hidden;
	background: #ece8e2;
}
.ut-contact-map > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ut-contact-map__link {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	background: #ffffff;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--signal-blue);
	text-decoration: none;
}
.ut-contact-map__link svg { width: 12px; height: 12px; }
.ut-contact-divider {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, .1);
	margin: 0;
}
.ut-contact-lines {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ut-contact-line {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	line-height: 1.5;
}
.ut-contact-line svg { width: 22px; height: 22px; flex: none; color: #000000; }
.ut-contact-line__icon { width: 22px; height: 22px; flex: none; }
.ut-contact-line a { color: inherit; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
	.ut-contact-line a:hover { text-decoration: underline; }
}
.ut-notice {
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
}
.ut-notice--success {
	background: #E4F2D2;
	border: 1px solid rgba(84, 138, 32, .35);
	color: #33540F;
}
.ut-notice--error {
	background: #FBE4E1;
	border: 1px solid rgba(178, 52, 38, .35);
	color: #7C2418;
}

/* ---------- Disclosures band (Figma 39:3244) ---------- */
.ut-disc .ut-inner {
	display: flex;
	align-items: flex-end;
	gap: 47px;
	background: #404040;
	border-radius: 30px;
	padding: 40px;
}
.ut-disc__copy {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ut-disc__eyebrow {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.2px;
	text-transform: uppercase;
	color: var(--signal-blue);
}
body.wp-theme-statera .ut-disc__heading {
	font-size: 44px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.32px;
	color: #ffffff;
}
.ut-disc__intro {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.54px;
	color: #ffffff;
	max-width: 405px;
}
.ut-disc__cards {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	gap: 14px;
}
.ut-disc-card {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 21px;
	background: #202124;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 20px;
	padding: 14px;
	text-decoration: none;
	transition: border-color .2s ease;
}
@media (hover: hover) and (pointer: fine) {
	.ut-disc-card:hover { border-color: rgba(255, 255, 255, .35); }
}
.ut-disc-card__icon {
	display: grid;
	place-items: center;
	width: 55px;
	height: 55px;
	border-radius: 10px;
	background: #304A69;
}
.ut-disc-card__icon img { width: 28px; height: 28px; }
.ut-disc-card__text {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.ut-disc-card__title {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}
.ut-disc-card__sub {
	font-size: 14px;
	font-weight: 600;
	color: var(--signal-blue);
}
.ut-disc-card__chev {
	position: absolute;
	top: 13px;
	right: 13px;
	width: 20px;
	height: 20px;
	color: #ffffff;
}

/* ---------- Careers ---------- */
.ut-careers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.ut-careers-card {
	background: #F7F7F5;
	border-radius: var(--radius-md);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
body.wp-theme-statera .ut-careers-card__title {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
	color: #1A1A1A;
}
.ut-careers-card__text {
	font-size: 18px;
	line-height: 1.6;
	color: #666666;
}
.ut-careers-card__text p + p { margin-top: 1em; }
.ut-cta-band {
	margin-top: 60px;
	background: var(--footer-ink);
	border-radius: var(--radius-lg);
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: #ffffff;
}
.ut-cta-band__text { max-width: 640px; }
.ut-cta-band__lead {
	font-size: 20px;
	line-height: 1.5;
}
.ut-cta-band__contact {
	margin-top: 16px;
	font-size: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}
.ut-cta-band__contact a {
	color: #ffffff;
	text-decoration: underline;
}

/* ---------- Insights ---------- */
.ut-insp-filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.ut-insp-pills {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
body.wp-theme-statera .ut-insp-pill {
	display: inline-flex;
	align-items: center;
	height: 50px;
	padding: 0 30px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 999px;
	background: transparent;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	color: var(--charcoal);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
body.wp-theme-statera .ut-insp-pill.is-active {
	background: var(--footer-ink);
	border-color: var(--footer-ink);
	color: #ffffff;
}
.ut-insp-search {
	position: relative;
	width: 290px;
}
.ut-insp-search svg {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: #686E76;
	pointer-events: none;
}
.ut-insp-search input {
	width: 100%;
	height: 50px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 999px;
	background: #ffffff;
	padding: 0 20px 0 48px;
	font: inherit;
	font-size: 16px;
	color: var(--charcoal);
}
.ut-insp-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
	background: #F7F7F5;
	border-radius: var(--radius-md);
	padding: 30px;
}
.ut-insp-featured__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}
.ut-insp-date { font-size: 16px; opacity: .6; }
body.wp-theme-statera .ut-insp-featured__title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.8px;
	color: #1A1A1A;
}
.ut-insp-featured__title a { color: inherit; text-decoration: none; }
.ut-insp-featured__subtitle {
	font-size: 18px;
	line-height: 1.5;
	opacity: .8;
}
.ut-insp-featured__img {
	border-radius: 15px;
	overflow: clip;
	aspect-ratio: 566 / 354;
	background: var(--fog);
}
.ut-insp-featured__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ut-insp-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.ut-insp-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}
/* display:flex above would override the hidden attribute's display:none. */
.ut-insp-card[hidden] { display: none; }
.ut-insp-card__img {
	border-radius: 15px;
	overflow: clip;
	aspect-ratio: 343 / 214;
	background: var(--fog);
}
.ut-insp-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.wp-theme-statera .ut-insp-card__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: #1A1A1A;
}
.ut-insp-card__title a { color: inherit; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
	.ut-insp-card:hover .ut-insp-card__title a,
	.ut-insp-featured:hover .ut-insp-featured__title a { text-decoration: underline; }
}
.ut-insp-card:active .ut-insp-card__title a,
.ut-insp-featured:active .ut-insp-card__title a { text-decoration: underline; }
.ut-insp-card__subtitle {
	font-size: 18px;
	line-height: 1.5;
	opacity: .8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ut-insp-more {
	margin-top: 40px;
	text-align: center;
}
.ut-insp-empty {
	font-size: 18px;
	line-height: 1.5;
	opacity: .7;
}

/* ---------- 1180px tier ---------- */
@media (max-width: 1180px) {
	.ut-insp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 900px tier ---------- */
@media (max-width: 900px) {
	body.wp-theme-statera .ut-hero__title { font-size: 38px; letter-spacing: -1px; }

	.ut-hero .ut-inner.ut-hero--row { flex-direction: column; align-items: stretch; gap: 32px; }
	.ut-hero__media { width: 100%; max-width: none; }
	.ut-hero .ut-inner.ut-hero--band { padding: 40px 20px; }
	.ut-hero .ut-inner.ut-hero--band.ut-hero--row { padding: 0; }
	.ut-hero--band.ut-hero--row .ut-hero__text { padding: 40px 20px; }
	.ut-hero--band.ut-hero--row .ut-hero__media { aspect-ratio: 559 / 399; }
	/* Full-width stacked photo needs no edge fade — it would wash out half
	   the image. */
	.ut-hero--band .ut-hero__media::before { content: none; }
	.ut-hero .ut-inner.ut-hero--divider .ut-hero__text { padding-bottom: 30px; }

	.ut-hero .ut-inner.ut-hero--card { flex-direction: column; gap: 20px; }
	.ut-hero--card .ut-hero__text { padding: 40px 20px; gap: 30px; }
	body.wp-theme-statera .ut-hero--card .ut-hero__title { font-size: 38px; letter-spacing: -1px; }
	.ut-hero--card .ut-hero__media { flex: none; width: 100%; aspect-ratio: 4 / 3; }

	.ut-cols .ut-inner,
	.ut-cols .ut-inner.ut-cols--band { flex-direction: column; gap: 40px; }
	.ut-cols .ut-inner.ut-cols--band { padding: 30px 20px; }
	.ut-cols--band .ut-cols__head { width: 100%; }
	.ut-cols__grid { flex-direction: column; gap: 40px; }
	.ut-cols__media img { height: auto; aspect-ratio: 1152 / 506; }

	/* --gutter is 60px down to this tier and never tightens; the mobile
	   system everywhere else is a 20px side gutter. */
	.ut-root { padding-left: 20px; padding-right: 20px; }

	.ut-faq-pills { display: none; }
	.ut-faq-select { display: block; margin: 0 auto; }
	.ut-faq-card { padding: 20px; }
	.ut-faq-list .ut-inner { gap: 40px; }

	.ut-contact .ut-inner { flex-direction: column; gap: 48px; }
	.ut-contact-side { width: 100%; }
	.ut-form-row { grid-template-columns: 1fr; }
	.ut-contact-form-card { padding: 20px; }
	/* The nowrap tab labels + 24px side padding held the form card to a
	   ~356px minimum, so phones ≤360px wide clipped the card's right edge.
	   Let the tabs shrink and wrap to two lines instead. */
	body.wp-theme-statera .ut-contact-tab {
		min-width: 0;
		height: auto;
		min-height: 50px;
		padding: 8px 12px;
		white-space: normal;
		line-height: 1.2;
	}
	.ut-contact-form-title { font-size: 28px; letter-spacing: -0.8px; }
	.ut-contact-cal-placeholder { min-height: 320px; padding: 24px; }

	.ut-disc .ut-inner { flex-direction: column; align-items: stretch; gap: 32px; padding: 30px 20px; }
	body.wp-theme-statera .ut-disc__heading { font-size: 28px; letter-spacing: -0.8px; }
	.ut-disc__cards { flex-direction: column; }

	.ut-careers-grid { grid-template-columns: 1fr; }
	.ut-cta-band {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 20px;
	}

	.ut-insp-filters {
		flex-direction: column;
		align-items: stretch;
	}
	.ut-insp-search { width: 100%; }
	.ut-insp-featured { grid-template-columns: 1fr; }
	/* Mobile: image on top, text below. */
	.ut-insp-featured__img { order: -1; }
	.ut-insp-grid { grid-template-columns: 1fr; }
}
