:root {
	--ff-ink: #111827;
	--ff-ink-soft: #4b5563;
	--ff-cream: #f3f5f7;
	--ff-paper: #ffffff;
	--ff-blue: #006fd5;
	--ff-sage: #006fd5;
	--ff-sage-dark: #004d94;
	--ff-brick: #006fd5;
	--ff-gold: #b7dcff;
	--ff-line: rgba(0, 111, 213, 0.16);
	--ff-shadow: 0 18px 46px rgba(0, 50, 100, 0.12);
	--ff-shadow-hover: 0 22px 54px rgba(0, 50, 100, 0.18);
	--ff-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--ff-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
	--ff-serif: Georgia, "Times New Roman", serif;
	--ff-sans: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 116px;
}

body {
	margin: 0;
	background: var(--ff-paper);
	color: var(--ff-ink);
	font-family: var(--ff-sans);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
}

.ff-motion-ready body::before {
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: #fff;
	box-shadow: 28px 0 46px rgba(17, 24, 39, 0.08);
	content: "";
	opacity: 0.94;
	pointer-events: none;
	transform: translate3d(-108%, 0, 0);
	transition: opacity 210ms var(--ff-ease-soft), transform 210ms var(--ff-ease-soft);
	will-change: transform;
}

.ff-motion-ready.ff-page-exit body::before {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-color: rgba(0, 111, 213, 0.55);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
	color: var(--ff-brick);
}

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

.wrap {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.narrow {
	width: min(760px, calc(100% - 40px));
}

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

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 14px;
	left: 14px;
	background: var(--ff-paper);
	color: var(--ff-ink);
	padding: 10px 14px;
	border: 2px solid var(--ff-brick);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--ff-line);
	box-shadow: 0 1px 0 rgba(0, 50, 100, 0.02);
}

.topbar {
	background: var(--ff-brick);
	color: var(--ff-paper);
	font-size: 14px;
}

.topbar-inner,
.header-inner,
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.topbar-inner {
	min-height: 36px;
}

.topbar a {
	color: var(--ff-paper);
	font-weight: 700;
	text-decoration: none;
}

.topbar a:hover,
.topbar a:focus {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.header-inner {
	min-height: 86px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand-logo {
	width: auto;
	max-width: 230px;
	height: 74px;
	object-fit: contain;
	transition: filter 220ms ease, transform 260ms var(--ff-ease);
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
	filter: drop-shadow(0 8px 14px rgba(0, 111, 213, 0.12));
	transform: translateY(-1px);
}

.brand strong {
	display: block;
	font-family: var(--ff-serif);
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0;
}

.brand small {
	display: block;
	color: var(--ff-ink-soft);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid var(--ff-sage-dark);
	background: var(--ff-cream);
	color: var(--ff-sage-dark);
	font-family: var(--ff-serif);
	font-size: 19px;
	font-weight: 700;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-list a {
	position: relative;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.nav-list a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--ff-brick);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 240ms var(--ff-ease);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--ff-line);
	transition: background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ff-ease);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--ff-ink);
	transition: transform 240ms var(--ff-ease), opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 680px;
	overflow: hidden;
	background: var(--ff-sage-dark);
}

.hero-media,
.hero-media img,
.hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media img {
	object-fit: cover;
	transform: scale(1.035);
	animation: ff-hero-settle 1600ms var(--ff-ease-soft) 120ms both;
}

.hero-shade {
	background: linear-gradient(90deg, rgba(0, 37, 76, 0.88) 0%, rgba(0, 68, 128, 0.66) 36%, rgba(0, 111, 213, 0.1) 74%);
}

.hero-shade::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.1) 45%, transparent 62%);
	content: "";
	opacity: 0;
	transform: translateX(-24%);
	animation: ff-hero-light 1600ms var(--ff-ease-soft) 420ms both;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 96px 0;
	color: var(--ff-paper);
}

.hero-content h1,
.section-heading h2,
.intro-grid h2,
.feature-copy h2,
.area-grid h2,
.contact-grid h2,
.page-header h1 {
	margin: 0;
	font-family: var(--ff-serif);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
}

.hero-content h1 {
	max-width: 690px;
	font-size: clamp(44px, 7vw, 76px);
	overflow-wrap: break-word;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-points li {
	animation: ff-hero-rise 760ms var(--ff-ease-soft) both;
}

.hero-content h1 {
	animation-delay: 90ms;
}

.hero-copy {
	animation-delay: 180ms;
}

.hero-actions {
	animation-delay: 270ms;
}

.hero-points li:nth-child(1) {
	animation-delay: 360ms;
}

.hero-points li:nth-child(2) {
	animation-delay: 430ms;
}

.hero-points li:nth-child(3) {
	animation-delay: 500ms;
}

.hero-copy {
	max-width: 660px;
	margin: 24px 0 0;
	font-size: 19px;
	color: rgba(255, 250, 241, 0.9);
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--ff-brick);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: var(--ff-gold);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid transparent;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 190ms ease, border-color 190ms ease, box-shadow 220ms ease, color 190ms ease, transform 220ms var(--ff-ease);
}

.button.primary {
	background: var(--ff-brick);
	color: #fff;
	box-shadow: 0 11px 22px rgba(0, 111, 213, 0.22);
}

.button.secondary {
	background: rgba(255, 250, 241, 0.12);
	color: var(--ff-paper);
	border-color: rgba(255, 250, 241, 0.42);
}

.button:hover,
.button:focus-visible,
.entry-content .ff-button:hover,
.entry-content .ff-button:focus-visible {
	color: #fff;
	box-shadow: 0 15px 28px rgba(0, 50, 100, 0.2);
	transform: translateY(-2px);
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 34px 0 0;
	list-style: none;
}

.hero-points li {
	padding: 8px 12px;
	background: rgba(255, 250, 241, 0.12);
	border: 1px solid rgba(255, 250, 241, 0.22);
	font-size: 14px;
	font-weight: 700;
	transition: background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ff-ease);
}

.hero-points li:hover {
	background: rgba(255, 250, 241, 0.18);
	border-color: rgba(255, 250, 241, 0.34);
	transform: translateY(-2px);
}

.section,
.content-section {
	padding: 86px 0;
}

.intro-section,
.feature-section,
.testimonial-section {
	background: var(--ff-cream);
}

.intro-grid,
.feature-grid,
.area-grid,
.contact-grid,
.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.area-grid h2,
.contact-grid h2,
.page-header h1 {
	font-size: clamp(34px, 4vw, 52px);
}

.intro-copy p:first-child {
	margin-top: 0;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 36px;
}

.services-grid,
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.service-card,
.testimonial-card,
.contact-form,
.post-card {
	background: var(--ff-paper);
	border: 1px solid var(--ff-line);
	box-shadow: 0 12px 28px rgba(0, 50, 100, 0.08);
	transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--ff-ease);
}

.service-card:hover,
.service-card:focus-within,
.testimonial-card:hover,
.post-card:hover,
.entry-content .ff-card:hover,
.entry-content .ff-quote:hover,
.entry-content .ff-callout:hover,
.entry-content .ff-price:hover,
.related-links-grid a:hover,
.related-links-grid a:focus-visible {
	border-color: rgba(0, 111, 213, 0.34);
	box-shadow: var(--ff-shadow-hover);
	transform: translateY(-5px);
}

.service-card {
	display: flex;
	flex-direction: column;
	min-height: 310px;
	padding: 24px;
}

.service-kicker {
	min-height: 42px;
	color: var(--ff-sage);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.service-card h3 {
	margin: 16px 0 10px;
	font-family: var(--ff-serif);
	font-size: 26px;
	line-height: 1.15;
}

.service-card p {
	margin: 0 0 24px;
	color: var(--ff-ink-soft);
}

.service-card a {
	margin-top: auto;
	font-weight: 800;
}

.feature-grid {
	align-items: center;
}

.feature-media {
	border: 8px solid var(--ff-paper);
	box-shadow: var(--ff-shadow);
	overflow: hidden;
	transition: box-shadow 280ms ease, transform 320ms var(--ff-ease);
}

.feature-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: filter 320ms ease, transform 600ms var(--ff-ease-soft);
}

.feature-media:hover,
.feature-media:focus-within {
	box-shadow: var(--ff-shadow-hover);
	transform: translateY(-3px);
}

.feature-media:hover img,
.feature-media:focus-within img {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

.feature-copy p {
	color: var(--ff-ink-soft);
}

.check-list {
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	margin: 12px 0;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--ff-brick);
	font-weight: 900;
	content: "+";
	transition: transform 220ms var(--ff-ease);
}

.check-list li:hover::before,
.entry-content .ff-list li:hover::before {
	transform: rotate(90deg);
}

.area-section {
	background: var(--ff-sage-dark);
	color: var(--ff-paper);
}

.area-section .eyebrow {
	color: var(--ff-gold);
}

.area-section p {
	color: rgba(255, 250, 241, 0.82);
}

.area-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.area-list li {
	padding: 10px 12px;
	background: rgba(255, 250, 241, 0.08);
	border: 1px solid rgba(255, 250, 241, 0.16);
	font-weight: 700;
	transition: background-color 190ms ease, border-color 190ms ease, transform 240ms var(--ff-ease);
}

.area-list li:hover {
	background: rgba(255, 250, 241, 0.13);
	border-color: rgba(255, 250, 241, 0.28);
	transform: translateX(4px);
}

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

.testimonial-card {
	padding: 28px;
	margin: 0;
}

.testimonial-card blockquote {
	margin: 0;
	font-family: var(--ff-serif);
	font-size: 22px;
	line-height: 1.45;
}

.testimonial-card figcaption {
	margin-top: 18px;
	color: var(--ff-ink-soft);
	font-weight: 800;
}

.contact-section {
	background: var(--ff-paper);
}

.contact-details {
	padding: 22px 0;
	border-top: 1px solid var(--ff-line);
	border-bottom: 1px solid var(--ff-line);
}

.contact-phone {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--ff-brick);
	font-family: var(--ff-serif);
	font-size: 34px;
	font-weight: 700;
	text-decoration: none;
}

address {
	font-style: normal;
}

.hours-list p {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 10px;
	margin: 12px 0;
	border-bottom: 1px solid var(--ff-line);
}

.contact-form {
	display: grid;
	gap: 18px;
	padding: 28px;
}

.contact-form label span {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	background: #fff;
	border: 1px solid rgba(0, 111, 213, 0.26);
	color: var(--ff-ink);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: rgba(0, 111, 213, 0.68);
	box-shadow: 0 0 0 4px rgba(0, 111, 213, 0.1);
	outline: none;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-message {
	padding: 12px 14px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--ff-line);
	font-weight: 700;
}

.form-message-sent {
	border-color: rgba(0, 111, 213, 0.32);
	color: var(--ff-blue);
}

.form-message-error,
.form-message-missing {
	border-color: rgba(159, 63, 45, 0.32);
	color: var(--ff-brick);
}

.form-note {
	margin: -4px 0 0;
	color: var(--ff-ink-soft);
	font-size: 14px;
}

.page-header {
	padding: 84px 0 34px;
	background: var(--ff-cream);
}

.breadcrumbs {
	margin-bottom: 18px;
	color: var(--ff-ink-soft);
	font-size: 14px;
	font-weight: 700;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.breadcrumbs li + li::before {
	color: rgba(17, 24, 39, 0.38);
	content: "/";
}

.breadcrumbs a {
	color: var(--ff-blue);
	text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
	color: var(--ff-brick);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.breadcrumbs [aria-current="page"] {
	color: var(--ff-ink-soft);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	font-family: var(--ff-serif);
	line-height: 1.2;
}

.entry-content .ff-page-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 34px;
	align-items: center;
	margin-bottom: 42px;
}

.entry-content .ff-page-intro img,
.entry-content .ff-image-band img,
.entry-content .ff-image-grid img {
	width: 100%;
	border: 1px solid var(--ff-line);
	object-fit: cover;
	box-shadow: var(--ff-shadow);
	transition: border-color 220ms ease, box-shadow 280ms ease, filter 280ms ease, transform 460ms var(--ff-ease-soft);
}

.entry-content .ff-page-intro img {
	aspect-ratio: 4 / 3;
}

.entry-content .ff-page-intro img:hover,
.entry-content .ff-image-band img:hover,
.entry-content .ff-image-grid img:hover {
	border-color: rgba(0, 111, 213, 0.34);
	box-shadow: var(--ff-shadow-hover);
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.015);
}

.entry-content .ff-lead {
	font-size: 20px;
	line-height: 1.6;
	color: var(--ff-ink-soft);
}

.entry-content .ff-section {
	margin-top: 44px;
}

.entry-content .ff-section:first-child {
	margin-top: 0;
}

.entry-content .ff-grid {
	display: grid;
	gap: 18px;
}

.entry-content .ff-grid.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-content .ff-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-content .ff-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-content .ff-card,
.entry-content .ff-quote,
.entry-content .ff-callout,
.entry-content .ff-price {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--ff-line);
	box-shadow: 0 12px 28px rgba(0, 50, 100, 0.08);
	transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--ff-ease);
}

.entry-content .ff-card h2,
.entry-content .ff-card h3,
.entry-content .ff-price h2,
.entry-content .ff-price h3 {
	margin-top: 0;
}

.entry-content .ff-card p:last-child,
.entry-content .ff-quote p:last-child,
.entry-content .ff-callout p:last-child,
.entry-content .ff-price p:last-child {
	margin-bottom: 0;
}

.entry-content .ff-quote {
	border-left: 5px solid var(--ff-brick);
}

.entry-content .ff-quote cite {
	display: block;
	margin-top: 12px;
	color: var(--ff-ink-soft);
	font-style: normal;
	font-weight: 800;
}

.entry-content .ff-callout {
	background: var(--ff-cream);
}

.entry-content .ff-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.entry-content .ff-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 18px;
	background: var(--ff-brick);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 190ms ease, box-shadow 220ms ease, transform 220ms var(--ff-ease);
}

.entry-content .ff-button.secondary {
	background: var(--ff-sage-dark);
}

.entry-content .ff-list {
	padding-left: 0;
	list-style: none;
}

.entry-content .ff-list li {
	position: relative;
	padding-left: 26px;
	margin: 10px 0;
}

.entry-content .ff-list li::before {
	position: absolute;
	left: 0;
	color: var(--ff-brick);
	font-weight: 900;
	content: "+";
	transition: transform 220ms var(--ff-ease);
}

.entry-content .ff-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 18px;
	background: #fff;
	border: 1px solid var(--ff-line);
}

.entry-content .ff-table th,
.entry-content .ff-table td {
	padding: 14px;
	border: 1px solid var(--ff-line);
	text-align: left;
	vertical-align: top;
}

.entry-content .ff-table th {
	background: var(--ff-cream);
	color: var(--ff-ink);
	font-weight: 800;
}

.entry-content .ff-image-band img {
	aspect-ratio: 16 / 6;
}

.entry-content .ff-image-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.entry-content .ff-image-grid img {
	aspect-ratio: 4 / 3;
}

.entry-content details {
	padding: 18px 0;
	border-bottom: 1px solid var(--ff-line);
}

.entry-content summary {
	cursor: pointer;
	color: var(--ff-brick);
	font-weight: 800;
	transition: color 180ms ease;
}

.entry-content summary:hover,
.entry-content summary:focus-visible {
	color: var(--ff-sage-dark);
}

.entry-content p,
.entry-content li,
.entry-content h2,
.entry-content h3,
.page-header h1 {
	overflow-wrap: break-word;
}

.related-links-section {
	padding: 0 0 62px;
	background: #fff;
}

.related-links-section h2 {
	margin: 0 0 18px;
	font-family: var(--ff-serif);
	font-size: 30px;
	line-height: 1.2;
}

.related-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.related-links-grid a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 14px;
	background: var(--ff-cream);
	border: 1px solid var(--ff-line);
	color: var(--ff-brick);
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color 190ms ease, border-color 190ms ease, box-shadow 240ms ease, color 190ms ease, transform 240ms var(--ff-ease);
}

.related-links-grid a:hover,
.related-links-grid a:focus {
	background: #fff;
	color: var(--ff-blue);
}

.related-links-section p {
	max-width: 760px;
	margin: 0;
	color: var(--ff-ink-soft);
}

.post-list {
	display: grid;
	gap: 18px;
}

.post-card {
	padding: 24px;
}

.post-card h2 {
	margin-top: 0;
	font-family: var(--ff-serif);
}

.post-meta {
	color: var(--ff-ink-soft);
	font-size: 14px;
	font-weight: 700;
}

.site-footer {
	padding: 58px 0 24px;
	background: var(--ff-cream);
	color: var(--ff-ink);
}

.site-footer p,
.site-footer address,
.site-footer small {
	color: var(--ff-ink-soft);
}

.site-footer h2 {
	margin-top: 0;
	font-family: var(--ff-serif);
	font-size: 24px;
}

.footer-logo {
	height: 34px;
	max-width: 260px;
	transition: filter 220ms ease, transform 260ms var(--ff-ease);
}

.footer-logo:hover {
	filter: drop-shadow(0 8px 14px rgba(0, 111, 213, 0.12));
	transform: translateY(-1px);
}

.ff-motion-ready .ff-reveal {
	filter: blur(7px);
	opacity: 0;
	transform: translateY(22px);
	transition: filter 680ms var(--ff-ease-soft), opacity 680ms var(--ff-ease-soft), transform 680ms var(--ff-ease-soft);
	transition-delay: var(--ff-reveal-delay, 0ms);
	will-change: filter, opacity, transform;
}

.ff-motion-ready .ff-reveal.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}

.footer-links {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-bottom {
	padding-top: 24px;
	margin-top: 40px;
	border-top: 1px solid var(--ff-line);
}

.footer-credit {
	font-weight: 700;
}

@media (max-width: 980px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.intro-grid,
	.feature-grid,
	.area-grid,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

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

	.entry-content .ff-grid.four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

	.wrap,
	.narrow {
		width: auto;
		max-width: none;
		margin-right: 14px;
		margin-left: 14px;
	}

	.topbar-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
		padding: 8px 0;
	}

	.header-inner {
		position: relative;
		min-height: 72px;
	}

	.menu-toggle {
		background: var(--ff-brick);
		border-color: var(--ff-brick);
		display: block;
		flex: 0 0 auto;
		position: absolute;
		top: 50%;
		left: min(calc(100vw - 58px), 332px);
		transform: translateY(-50%);
		z-index: 2;
	}

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

	.brand {
		max-width: calc(100% - 58px);
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 16px 20px 22px;
		background: var(--ff-paper);
		border-bottom: 1px solid var(--ff-line);
	}

	.primary-nav.is-open {
		display: block;
		animation: ff-menu-drop 240ms var(--ff-ease-soft) both;
	}

	.nav-list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.nav-list a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid var(--ff-line);
	}

	.hero {
		min-height: 680px;
	}

	.hero-shade {
		background: linear-gradient(180deg, rgba(0, 36, 76, 0.9) 0%, rgba(0, 58, 110, 0.74) 52%, rgba(0, 111, 213, 0.34) 100%);
	}

	.hero-media img {
		object-position: 64% center;
	}

	.hero-content {
		padding: 72px 0;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.hero-copy {
		font-size: 18px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
		width: min(100%, 300px);
	}

	.hero-points {
		display: grid;
		grid-template-columns: 1fr;
		width: min(100%, 300px);
	}

	.section,
	.content-section {
		padding: 62px 0;
	}

	.services-grid,
	.testimonial-grid,
		.area-list,
		.entry-content .ff-grid.two,
		.entry-content .ff-grid.three,
		.entry-content .ff-grid.four,
		.entry-content .ff-image-grid,
		.entry-content .ff-page-intro {
		grid-template-columns: 1fr;
	}

	.entry-content .ff-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

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

	.hours-list p {
		display: block;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}

@media (max-width: 520px) {
	.topbar-inner span {
		max-width: 340px;
		overflow-wrap: anywhere;
	}

	.brand strong {
		font-size: 22px;
	}

	.brand-logo {
		max-width: 100%;
		height: 70px;
	}

	.hero-content h1 {
		max-width: 340px;
		font-size: 32px;
		line-height: 1.12;
	}

	.hero-copy {
		max-width: 340px;
		font-size: 16px;
	}

	.eyebrow,
	.intro-copy,
	.section-heading,
	.feature-copy,
	.area-grid > div,
	.contact-grid > div,
	.entry-content .ff-page-intro > div,
	.entry-content .ff-lead,
	.entry-content .ff-section > h2,
	.entry-content .ff-section > p {
		max-width: 340px;
	}

	.related-links-section {
		padding-bottom: 48px;
	}

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

	.entry-content .ff-button-row {
		align-items: stretch;
		flex-direction: column;
		max-width: 300px;
	}

	.eyebrow {
		font-size: 12px;
		overflow-wrap: anywhere;
	}

	.intro-grid h2,
	.section-heading h2,
	.feature-copy h2,
	.area-grid h2,
	.contact-grid h2,
	.page-header h1 {
		max-width: 320px;
		font-size: 29px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.ff-motion-ready .ff-reveal {
		filter: none;
		opacity: 1;
		transform: none;
	}

	.ff-motion-ready body::before {
		display: none;
	}
}

@keyframes ff-hero-rise {
	from {
		filter: blur(8px);
		opacity: 0;
		transform: translateY(18px);
	}

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

@keyframes ff-hero-settle {
	from {
		filter: saturate(0.92) contrast(0.96);
		opacity: 0.72;
		transform: scale(1.075);
	}

	to {
		filter: saturate(1) contrast(1);
		opacity: 1;
		transform: scale(1.035);
	}
}

@keyframes ff-hero-light {
	from {
		opacity: 0;
		transform: translateX(-24%);
	}

	45% {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translateX(28%);
	}
}

@keyframes ff-menu-drop {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

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