/*
Theme Name: Integritas Electric
Theme URI: https://integritaselectric.com/
Author: Integritas Electric
Author URI: https://integritaselectric.com/
Description: A responsive, design-forward WordPress theme for Integritas Electric's Denver Metro and Rocky Mountain electrical services.
Version: 1.2.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: integritas-electric
Tags: custom-logo, custom-menu, featured-images, block-styles, wide-blocks, accessibility-ready
*/

@font-face {
	font-family: "Lemon Milk";
	src: url("assets/fonts/lemon-milk-light.otf") format("opentype");
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Lemon Milk";
	src: url("assets/fonts/lemon-milk-light-italic.otf") format("opentype");
	font-style: italic;
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Lemon Milk";
	src: url("assets/fonts/lemon-milk.otf") format("opentype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Lemon Milk";
	src: url("assets/fonts/lemon-milk-bold.otf") format("opentype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--teal: #69a99b;
	--teal-deep: #4f8f84;
	--teal-dark: #3f766e;
	--charcoal: #3f4b51;
	--charcoal-deep: #29383f;
	--ink: #344249;
	--warm-white: #f6f4ef;
	--paper: #fff;
	--line: #d9dfdd;
	--shadow: 0 18px 45px rgba(41, 56, 63, 0.1);
	--radius-sm: 6px;
	--radius: 12px;
	--font: "Lemon Milk", "Trebuchet MS", Arial, sans-serif;
	--content: 1240px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

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

a:hover {
	color: var(--teal-dark);
}

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

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--charcoal);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.12;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(2.75rem, 5.4vw, 5.75rem);
}

h2 {
	font-size: clamp(2rem, 3.4vw, 3.65rem);
}

h3 {
	font-size: 1.12rem;
}

.site-container {
	width: min(calc(100% - 48px), var(--content));
	margin-inline: auto;
}

.section-pad {
	padding-block: clamp(72px, 8vw, 120px);
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 12px 18px;
	background: var(--paper);
	color: var(--charcoal-deep);
	box-shadow: var(--shadow);
}

.eyebrow {
	margin-bottom: 24px;
	color: var(--teal);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow::after {
	display: block;
	width: 92px;
	height: 2px;
	margin-top: 12px;
	background: currentColor;
	content: "";
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 15px 26px;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--small {
	min-height: 46px;
	padding: 12px 22px;
	font-size: 0.72rem;
}

.button--teal {
	background: var(--teal);
	color: #fff;
}

.button--teal:hover {
	background: var(--teal-deep);
	color: #fff;
}

.button--charcoal {
	background: var(--charcoal);
	color: #fff;
}

.button--outline {
	border-color: var(--teal);
	background: transparent;
	color: var(--teal-dark);
}

.button--outline:hover {
	background: var(--teal);
	color: #fff;
}

.button--ghost {
	border-color: var(--teal);
	background: transparent;
	color: #fff;
}

.button--ghost:hover {
	background: var(--teal);
	color: #fff;
}

.button--light {
	border-color: rgba(255, 255, 255, 0.86);
}

.utility-bar {
	background: var(--charcoal-deep);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.utility-bar__inner {
	display: flex;
	min-height: 38px;
	align-items: center;
	justify-content: space-between;
}

.utility-bar__area,
.utility-bar__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.utility-bar a {
	text-decoration: none;
}

.utility-bar a:hover {
	color: var(--teal);
}

.utility-bar svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.main-nav-wrap {
	position: relative;
	z-index: 50;
	background: #fff;
	box-shadow: 0 1px 0 rgba(41, 56, 63, 0.1);
}

.main-nav {
	display: flex;
	min-height: 100px;
	align-items: center;
	gap: 34px;
}

.brand {
	display: inline-flex;
	min-width: 220px;
	align-items: center;
	gap: 10px;
	color: var(--charcoal);
	text-decoration: none;
}

.brand:hover {
	color: var(--charcoal);
}

.brand__shield {
	width: 58px;
	height: 70px;
	object-fit: contain;
}

.brand__type {
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.02;
	text-transform: uppercase;
}

.brand__type strong {
	color: var(--teal-deep);
	font-size: 1.07em;
	font-weight: 700;
}

.custom-logo {
	width: auto;
	max-width: 245px;
	max-height: 76px;
}

.site-navigation {
	margin-left: auto;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	padding-block: 12px;
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	background: var(--teal);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.main-nav__actions {
	display: flex;
	gap: 12px;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 11px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 6px 0;
	background: var(--charcoal);
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	display: grid;
	min-height: 545px;
	grid-template-columns: 1fr 1fr;
	background: var(--charcoal-deep);
}

.hero__copy {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 72px clamp(42px, 5vw, 86px) 72px 24px;
}

.hero__copy-inner {
	width: min(100%, calc(var(--content) / 2 - 24px));
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
	color: #fff;
}

.hero__intro {
	max-width: 680px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.55;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__art {
	min-height: 545px;
	overflow: hidden;
	background: var(--teal);
}

.hero__artwork {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trust-strip {
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-item {
	display: flex;
	min-height: 95px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 20px;
	font-size: 0.78rem;
	text-transform: uppercase;
}

.trust-item + .trust-item {
	border-left: 1px solid var(--line);
}

.trust-item svg {
	width: 36px;
	height: 36px;
	fill: none;
	stroke: var(--charcoal);
	stroke-width: 2;
}

.services-section {
	background: var(--warm-white);
}

.section-heading {
	max-width: 790px;
	margin: 0 auto 54px;
	text-align: center;
}

.section-heading .eyebrow::after {
	margin-inline: auto;
}

.section-heading h2 {
	margin-bottom: 14px;
}

.section-heading > p:last-child {
	margin-bottom: 0;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
}

.service-card {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	align-items: center;
	padding: 36px 25px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
	border-color: rgba(105, 169, 155, 0.65);
	box-shadow: var(--shadow);
	transform: translateY(-6px);
}

.service-card__icon {
	display: grid;
	width: 88px;
	height: 88px;
	margin-bottom: 24px;
	place-items: center;
	border: 2px solid var(--teal);
	border-radius: 50%;
	color: var(--teal-deep);
}

.service-card__media {
	display: block;
	width: calc(100% + 50px);
	height: 165px;
	margin: -36px -25px 24px;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
	background: var(--charcoal);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.service-card:hover .service-card__media img {
	transform: scale(1.035);
}

.service-card__icon svg {
	width: 53px;
	height: 53px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.service-card h3 {
	margin-bottom: 12px;
}

.service-card p {
	font-size: 0.85rem;
	line-height: 1.55;
}

.service-card > a {
	margin-top: auto;
	color: var(--teal-dark);
	font-size: 0.73rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.division-band {
	background: var(--teal);
	color: #fff;
}

.division-band__inner {
	display: flex;
	min-height: 135px;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-block: 28px;
}

.division-band__copy {
	display: flex;
	align-items: center;
	gap: 22px;
}

.division-band__copy svg {
	width: 86px;
	height: 64px;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.division-band h2 {
	margin-bottom: 4px;
	color: #fff;
	font-size: clamp(1.6rem, 2.8vw, 2.65rem);
}

.division-band p {
	margin: 0;
	font-size: 0.9rem;
	text-transform: uppercase;
}

.expertise {
	background: #fff;
}

.expertise-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: end;
}

.expertise__lead h2 {
	margin-bottom: 0;
}

.expertise__copy p {
	font-size: 1.05rem;
}

.text-link {
	color: var(--teal-dark);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.front-page-content {
	border-top: 1px solid var(--line);
}

.entry-content--wide {
	max-width: var(--content);
}

.latest-posts {
	border-top: 1px solid var(--line);
	background: var(--warm-white);
}

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

.post-card--home {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: #fff;
}

.post-card--home h3 {
	font-size: 1.3rem;
}

.post-card--home h3 a {
	text-decoration: none;
}

.post-card--home .text-link {
	margin-top: auto;
}

.post-card__media {
	display: block;
	margin: -26px -26px 22px;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
}

.post-card__media img {
	width: 100%;
	height: 210px;
	margin: 0;
	object-fit: cover;
}

.theme-setup-hint {
	margin-block: 30px;
	padding: 18px 22px;
	border-left: 4px solid var(--teal);
	background: #fff8d8;
	font-family: Arial, sans-serif;
}

.theme-setup-hint p {
	margin: 0;
}

.page-hero {
	padding-block: clamp(72px, 9vw, 130px);
	background: var(--charcoal-deep);
}

.page-hero h1 {
	max-width: 1000px;
	margin: 0;
	color: #fff;
}

.content-main {
	min-height: 60vh;
}

.content-layout,
.entry-content {
	max-width: 900px;
}

.entry-content {
	font-family: Arial, sans-serif;
	font-size: 1.08rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2em;
	font-family: var(--font);
}

.entry-content a {
	color: var(--teal-dark);
}

.featured-image {
	margin-bottom: 42px;
}

.featured-image img {
	width: 100%;
	border-radius: var(--radius);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.post-card {
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.post-card img {
	margin-bottom: 20px;
	border-radius: var(--radius-sm);
}

.post-card h2 {
	font-size: 1.55rem;
}

.post-card h2 a {
	text-decoration: none;
}

.post-card__meta {
	color: var(--teal-dark);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
}

.post-navigation {
	padding-bottom: 80px;
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.error-page {
	display: grid;
	min-height: 65vh;
	place-items: center;
	background: var(--warm-white);
}

.error-page__inner {
	max-width: 850px;
	text-align: center;
}

.error-page__inner .eyebrow::after {
	margin-inline: auto;
}

.error-page__inner h1 {
	font-size: clamp(2.5rem, 5vw, 5rem);
}

.error-page__inner .button-row {
	justify-content: center;
	margin-top: 28px;
}

.site-footer {
	padding-top: 72px;
	background: var(--charcoal-deep);
	color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr auto;
	gap: 48px;
	padding-bottom: 62px;
}

.brand--footer {
	color: #fff;
}

.brand--footer:hover {
	color: #fff;
}

.brand--footer .brand__type strong {
	color: var(--teal);
}

.footer-tagline {
	max-width: 390px;
	margin: 22px 0 0;
	font-size: 0.72rem;
	font-style: italic;
	text-transform: uppercase;
}

.site-footer h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
}

.site-footer p,
.site-footer a {
	font-size: 0.75rem;
}

.site-footer a {
	color: inherit;
}

.site-footer a:hover {
	color: var(--teal);
}

.footer-bottom {
	display: flex;
	min-height: 70px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
	margin: 0;
}

.footer-menu {
	gap: 22px;
}

.footer-menu a {
	text-transform: uppercase;
}

@media (max-width: 1180px) {
	.main-nav {
		gap: 20px;
	}

	.primary-menu {
		gap: 20px;
	}

	.main-nav__actions .button--outline {
		display: none;
	}

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

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

@media (max-width: 960px) {
	.site-container {
		width: min(calc(100% - 36px), var(--content));
	}

	.utility-bar__area {
		max-width: 60%;
	}

	.main-nav {
		min-height: 82px;
	}

	.brand {
		min-width: 0;
	}

	.brand__shield {
		width: 49px;
		height: 58px;
	}

	.nav-toggle {
		display: block;
		margin-left: auto;
		order: 2;
	}

	.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.site-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.site-navigation.is-open {
		display: block;
	}

	.primary-menu {
		width: min(calc(100% - 36px), var(--content));
		margin-inline: auto;
		padding: 18px 0 28px;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-menu a {
		display: block;
		padding: 16px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 0.85rem;
	}

	.primary-menu a::after {
		display: none;
	}

	.main-nav__actions {
		order: 1;
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.hero__copy {
		justify-content: flex-start;
		padding: 76px 24px;
	}

	.hero__copy-inner {
		width: min(calc(100% - 12px), var(--content));
		margin-inline: auto;
	}

	.hero__art {
		min-height: 420px;
	}

	.trust-item {
		font-size: 0.68rem;
	}

	.division-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.site-container {
		width: min(calc(100% - 28px), var(--content));
	}

	.utility-bar {
		font-size: 0.55rem;
	}

	.utility-bar__inner {
		min-height: 34px;
	}

	.utility-bar__area {
		max-width: 66%;
	}

	.main-nav {
		gap: 8px;
	}

	.brand__shield {
		width: 44px;
		height: 52px;
	}

	.brand__type {
		font-size: 0.8rem;
	}

	.custom-logo {
		max-width: 170px;
		max-height: 54px;
	}

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

	.hero h1 {
		font-size: clamp(2.7rem, 13vw, 4.25rem);
	}

	.hero__copy {
		padding-block: 68px;
	}

	.hero__art {
		min-height: 310px;
	}

	.button-row {
		flex-direction: column;
	}

	.button-row .button {
		width: 100%;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-item {
		min-height: 74px;
		justify-content: flex-start;
	}

	.trust-item + .trust-item {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.service-grid,
	.post-grid,
	.post-grid--home,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 300px;
	}

	.division-band__copy {
		align-items: flex-start;
	}

	.division-band__copy svg {
		width: 60px;
		min-width: 60px;
	}

	.division-band__inner > .button {
		width: 100%;
	}

	.footer-grid {
		gap: 32px;
	}

	.footer-bottom {
		align-items: flex-start;
		padding-block: 24px;
		flex-direction: column;
	}

	.footer-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

.entry-content .integritas-feature-list {
	margin: 32px 0;
	padding: 0;
	list-style: none;
}

.entry-content .integritas-feature-list li {
	position: relative;
	margin-bottom: 10px;
	padding: 17px 50px 17px 18px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fff;
	color: var(--charcoal);
	font-family: var(--font);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.entry-content .integritas-feature-list li::after {
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--teal-dark);
	font-size: 1.65rem;
	font-weight: 300;
	content: "›";
	transform: translateY(-52%);
}

.entry-content .wp-block-button__link {
	border-radius: var(--radius-sm);
	background: var(--teal);
	color: #fff;
	font-family: var(--font);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* Mobile UI follows the approved four-screen app-style design system. */
@media (max-width: 640px) {
	body {
		background: var(--warm-white);
	}

	.site-header {
		position: sticky;
		top: 0;
		z-index: 999;
	}

	.utility-bar {
		display: none;
	}

	.main-nav-wrap {
		background: var(--teal);
		box-shadow: none;
	}

	.main-nav {
		min-height: 86px;
	}

	.brand,
	.brand:hover {
		color: #fff;
	}

	.brand__shield {
		width: 49px;
		height: 58px;
		filter: brightness(0) invert(1);
	}

	.brand__type,
	.brand__type strong {
		color: #fff;
	}

	.brand__type {
		font-size: 0.82rem;
	}

	.custom-logo {
		filter: brightness(0) invert(1);
	}

	.nav-toggle span:not(.screen-reader-text) {
		background: #fff;
	}

	.site-navigation {
		background: var(--charcoal-deep);
		box-shadow: 0 18px 34px rgba(41, 56, 63, 0.28);
	}

	.primary-menu {
		width: min(calc(100% - 36px), var(--content));
		padding-block: 12px 22px;
	}

	.primary-menu a {
		border-color: rgba(255, 255, 255, 0.16);
		color: #fff;
	}

	.primary-menu a:hover {
		color: var(--teal);
	}

	.home .site-main {
		display: flex;
		width: 100%;
		flex-direction: column;
	}

	.home .hero {
		order: 1;
	}

	.home .services-section {
		order: 2;
	}

	.home .trust-strip {
		order: 3;
	}

	.home .division-band {
		order: 4;
	}

	.home .front-page-content {
		order: 5;
	}

	.home .latest-posts {
		order: 6;
	}

	.home .theme-setup-hint {
		order: 7;
	}

	.hero {
		min-height: 0;
		background: var(--charcoal-deep);
	}

	.hero__copy {
		padding: 48px 20px 54px;
		text-align: center;
	}

	.hero__copy-inner {
		width: 100%;
	}

	.hero .eyebrow,
	.hero__intro,
	.hero .button--ghost {
		display: none;
	}

	.hero h1 {
		max-width: 340px;
		margin: 0 auto 26px;
		font-size: clamp(2.25rem, 11.5vw, 3.3rem);
		line-height: 1.13;
	}

	.hero h1::after {
		display: block;
		width: 100px;
		height: 2px;
		margin: 18px auto 0;
		background: var(--teal);
		content: "";
	}

	.hero .button-row {
		display: block;
	}

	.hero .button--teal {
		width: min(100%, 320px);
		min-height: 58px;
		font-size: 0.88rem;
	}

	.hero__art {
		display: none;
	}

	.services-section {
		padding-block: 34px 30px;
		background: #f8f7f3;
	}

	.services-section .section-heading {
		margin-bottom: 24px;
	}

	.services-section .section-heading .eyebrow,
	.services-section .section-heading > p:last-child {
		display: none;
	}

	.services-section .section-heading h2 {
		max-width: 320px;
		margin: 0 auto;
		font-size: clamp(1.85rem, 8.5vw, 2.4rem);
	}

	.services-section .section-heading h2::after,
	.page-hero h1::after {
		display: block;
		width: 100px;
		height: 2px;
		margin: 15px auto 0;
		background: var(--teal-dark);
		content: "";
	}

	.service-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.service-card {
		position: relative;
		display: grid;
		min-height: 76px;
		grid-template-columns: 52px minmax(0, 1fr) 22px;
		gap: 12px;
		align-items: center;
		padding: 11px 14px;
		border-color: #d8dddb;
		border-radius: 10px;
		box-shadow: none;
		text-align: left;
	}

	.service-card:hover {
		box-shadow: none;
		transform: none;
	}

	.service-card__icon,
	.service-card__media {
		grid-column: 1;
		grid-row: 1;
		width: 52px;
		height: 52px;
		margin: 0;
		border: 0;
		border-radius: 7px;
		background: transparent;
	}

	.service-card__icon svg {
		width: 46px;
		height: 46px;
	}

	.service-card__media img {
		border-radius: 7px;
	}

	.service-card h3 {
		grid-column: 2;
		grid-row: 1;
		margin: 0;
		font-size: 0.82rem;
		letter-spacing: -0.01em;
	}

	.service-card p {
		display: none;
	}

	.service-card > a {
		grid-column: 3;
		grid-row: 1;
		width: 22px;
		margin: 0;
		color: var(--teal-dark);
		font-size: 0;
		text-align: center;
	}

	.service-card > a::before {
		position: absolute;
		inset: 0;
		content: "";
	}

	.service-card > a span {
		font-size: 1.55rem;
		font-weight: 300;
	}

	.trust-strip {
		background: #f1f0eb;
	}

	.trust-grid {
		display: flex;
		width: 100%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.trust-grid::-webkit-scrollbar {
		display: none;
	}

	.trust-item {
		min-width: 100%;
		min-height: 86px;
		justify-content: center;
		border: 0 !important;
		font-size: 0.74rem;
		scroll-snap-align: center;
	}

	.trust-item svg {
		width: 32px;
		height: 32px;
	}

	.division-band__inner {
		gap: 24px;
		padding-block: 30px;
	}

	.division-band h2 {
		font-size: 1.75rem;
	}

	.division-band p {
		font-size: 0.72rem;
	}

	.division-band__inner > .button {
		min-height: 58px;
	}

	.page-hero {
		padding: 38px 20px 30px;
		background: #fff;
		text-align: center;
	}

	.page-hero .eyebrow {
		display: none;
	}

	.page-hero h1 {
		max-width: 350px;
		margin-inline: auto;
		color: var(--charcoal);
		font-size: clamp(2rem, 9.5vw, 2.8rem);
	}

	.page .entry-content,
	.single .entry-content {
		padding-block: 32px 48px;
		background: #fff;
		font-size: 1rem;
	}

	.entry-content .integritas-feature-list {
		margin-block: 26px;
	}

	.entry-content .integritas-feature-list li {
		min-height: 58px;
		display: flex;
		align-items: center;
		margin-bottom: 9px;
		padding: 14px 46px 14px 14px;
		font-size: 0.76rem;
	}

	.latest-posts {
		padding-block: 46px;
	}

	.latest-posts .section-heading {
		margin-bottom: 28px;
	}

	.post-card--home {
		border-radius: 10px;
		box-shadow: none;
	}

	.site-footer {
		padding-top: 52px;
	}
}

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

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