.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	border-radius: 999px;
	font-weight: 850;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button--gold {
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: var(--color-white);
	box-shadow: 0 10px 26px rgba(183, 138, 70, 0.26);
}

.button--dark {
	background: var(--color-charcoal);
	color: var(--color-white);
}

.button--light {
	background: var(--color-white);
	color: var(--color-ink);
	box-shadow: var(--shadow-card);
}

.button--outline {
	border: 1px solid currentColor;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
	transform: translateY(-1px);
}

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

.eyebrow {
	margin: 0 0 8px;
	color: var(--color-gold);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lead {
	font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.section {
	padding-block: var(--space);
}

.section__head {
	margin-bottom: 28px;
}

.section__head h2,
.final-cta h2,
.archive-header h1 {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	line-height: 1.22;
}

.section__head--split {
	display: flex;
	gap: 16px;
	align-items: end;
	justify-content: space-between;
}

.service-grid,
.work-grid,
.reason-grid,
.post-grid {
	display: grid;
	gap: 20px;
}

.service-card,
.work-card,
.archive-card,
.reason-card {
	display: block;
	position: relative;
	padding: 24px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	text-decoration: none;
	box-shadow: var(--shadow-card);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible,
.work-card:hover,
.work-card:focus-within,
.archive-card:hover,
.reason-card:hover {
	transform: translateY(-3px);
	border-color: rgba(183, 138, 70, 0.5);
	box-shadow: 0 18px 44px rgba(28, 24, 18, 0.13);
}

.service-card span {
	color: var(--color-gold-dark);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.work-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.work-card__terms a {
	display: inline-flex;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(183, 138, 70, 0.12);
	color: var(--color-gold-dark);
	font-size: 0.75rem;
	font-weight: 900;
	text-decoration: none;
}

.service-card h3,
.work-card h2,
.archive-card h2,
.reason-card h3 {
	margin-top: 8px;
	line-height: 1.35;
}

.service-card strong,
.text-link {
	color: var(--color-gold-dark);
	font-weight: 900;
	text-decoration: none;
}

.work-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(183, 138, 70, 0.24), rgba(36, 33, 29, 0.06)),
		#ddd5ca;
	border-radius: calc(var(--radius) - 2px);
}

.work-card__body {
	padding-top: 16px;
}

.work-card__body > p {
	display: -webkit-box;
	overflow: hidden;
	min-height: 3.4em;
	color: var(--color-muted);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.work-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 14px 0;
	padding: 0;
	list-style: none;
}

.work-card__meta li {
	padding: 4px 8px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-paper-2);
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 800;
}

.work-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--color-muted);
	font-weight: 900;
}

.faq-card {
	margin-bottom: 12px;
	padding: 20px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(28, 24, 18, 0.05);
}

.faq-card summary {
	cursor: pointer;
	font-weight: 800;
}

.fixed-mobile-cta {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 30;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--color-charcoal);
	color: var(--color-white);
	box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.18);
}

.fixed-mobile-cta a {
	padding: 11px 6px;
	text-align: center;
	text-decoration: none;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.86rem;
	font-weight: 850;
}

@media (min-width: 720px) {
	.service-grid,
	.reason-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (min-width: 1040px) {
	.service-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 880px) {
	.fixed-mobile-cta {
		display: none;
	}
}
