:root {
	--tdh-brown: #67432a;
	--tdh-sage: #7b8763;
	--tdh-ink: #211d1a;
	--tdh-muted: #70695f;
	--tdh-line: #ded8ce;
	--tdh-surface: #fffdf8;
	--tdh-soft: #f5f0e7;
	--tdh-sage-soft: #edf0e7;
	--tdh-clay: #b76547;
	--tdh-white: #ffffff;
	--tdh-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--tdh-shadow: 0 18px 42px rgba(33, 29, 26, 0.12);
	--tdh-radius: 8px;
}

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

html {
	line-height: 1.15;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--tdh-surface);
	color: var(--tdh-ink);
	font-family: var(--tdh-font-sans);
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: var(--tdh-brown);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

a:hover,
a:focus {
	color: var(--tdh-clay);
}

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

.tdh-container {
	margin-inline: auto;
	max-width: 1180px;
	padding-inline: 24px;
	width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.screen-reader-text:focus {
	background: var(--tdh-white);
	border: 2px solid var(--tdh-sage);
	clip: auto;
	clip-path: none;
	color: var(--tdh-ink);
	height: auto;
	left: 16px;
	padding: 12px 16px;
	top: 16px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	border-radius: 6px;
	box-shadow: var(--tdh-shadow);
}

.site-header {
	background: rgba(255, 253, 248, 0.94);
	border-bottom: 1px solid rgba(103, 67, 42, 0.12);
	position: sticky;
	top: 0;
	z-index: 50;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 78px;
}

.site-branding {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.site-title,
.site-logo-link {
	align-items: center;
	color: var(--tdh-brown);
	display: inline-flex;
	font-size: 1.18rem;
	font-weight: 800;
	gap: 10px;
	line-height: 1.1;
	text-decoration: none;
}

.site-logo-image {
	height: auto;
	max-height: 58px;
	width: min(236px, 56vw);
}

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

.site-description {
	color: var(--tdh-muted);
	font-size: 0.88rem;
	margin: 2px 0 0;
}

.site-nav {
	align-items: center;
	display: flex;
	margin-left: auto;
}

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

.site-nav a {
	border-radius: 6px;
	color: var(--tdh-ink);
	display: block;
	font-size: 0.94rem;
	font-weight: 700;
	padding: 10px 12px;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav .current-menu-item > a {
	background: var(--tdh-sage-soft);
	color: var(--tdh-brown);
}

.site-nav-toggle {
	align-items: center;
	background: var(--tdh-sage-soft);
	border: 1px solid var(--tdh-line);
	border-radius: 6px;
	color: var(--tdh-brown);
	cursor: pointer;
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.site-nav-toggle__bar {
	background: currentColor;
	display: block;
	height: 2px;
	position: absolute;
	width: 18px;
}

.site-nav-toggle__bar:nth-child(1) {
	transform: translateY(-6px);
}

.site-nav-toggle__bar:nth-child(3) {
	transform: translateY(6px);
}

.site-main {
	padding-block: 56px;
}

.site-main--full-width {
	padding-block: 0;
}

body.elementor-page .site-main--full-width {
	overflow: hidden;
	width: 100%;
}

body.elementor-page .entry-content {
	max-width: none;
}

.tdh-home {
	background: var(--tdh-surface);
	overflow: hidden;
}

.tdh-hero {
	height: 72svh;
	max-height: 720px;
	min-height: 430px;
	position: relative;
}

.tdh-hero__image,
.tdh-hero__overlay {
	inset: 0;
	position: absolute;
}

.tdh-hero__image {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.tdh-hero__overlay {
	background:
		linear-gradient(90deg, rgba(33, 29, 26, 0.82) 0%, rgba(33, 29, 26, 0.44) 42%, rgba(33, 29, 26, 0.08) 78%),
		linear-gradient(0deg, rgba(33, 29, 26, 0.24), rgba(33, 29, 26, 0));
}

.tdh-hero__content {
	color: var(--tdh-white);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.tdh-kicker {
	color: currentColor;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.tdh-hero .tdh-kicker {
	color: #efe7da;
}

.tdh-hero h1,
.tdh-section h2,
.tdh-cta h2 {
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
}

.tdh-hero h1 {
	font-size: 4.9rem;
	max-width: 820px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.tdh-hero__tagline {
	color: #f2dac4;
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 14px 0 0;
}

.tdh-hero__copy {
	color: #fff5ea;
	font-size: 1.18rem;
	line-height: 1.55;
	margin: 22px 0 0;
	max-width: 610px;
}

.tdh-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.tdh-button,
.button-link,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
	align-items: center;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 13px 18px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tdh-button:hover,
.tdh-button:focus,
.button-link:hover,
.button-link:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
	transform: translateY(-1px);
}

.tdh-button--primary,
.button-link,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
	background: var(--tdh-brown);
	color: var(--tdh-white);
}

.tdh-button--primary:hover,
.tdh-button--primary:focus,
.button-link:hover,
.button-link:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
	background: var(--tdh-clay);
	color: var(--tdh-white);
}

.tdh-button--secondary {
	background: rgba(255, 255, 255, 0.9);
	color: var(--tdh-brown);
}

.tdh-button--secondary:hover,
.tdh-button--secondary:focus {
	background: var(--tdh-white);
	color: var(--tdh-ink);
}

.tdh-feature-rail {
	background: var(--tdh-brown);
	color: var(--tdh-white);
}

.tdh-feature-rail__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding-block: 0;
}

.tdh-feature-rail p {
	background: rgba(255, 255, 255, 0.06);
	margin: 0;
	padding: 22px 24px;
}

.tdh-feature-rail strong,
.tdh-feature-rail span {
	display: block;
}

.tdh-feature-rail strong {
	font-size: 1rem;
	line-height: 1.25;
}

.tdh-feature-rail span {
	color: #eadfd3;
	font-size: 0.9rem;
	margin-top: 4px;
}

.tdh-section {
	padding-block: 86px;
}

.tdh-section--split {
	background: var(--tdh-soft);
}

.tdh-split {
	align-items: center;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.tdh-split__copy {
	max-width: 560px;
}

.tdh-split__copy .tdh-kicker,
.tdh-section-heading .tdh-kicker,
.tdh-promise .tdh-kicker,
.tdh-cta .tdh-kicker {
	color: var(--tdh-sage);
}

.tdh-split h2,
.tdh-section-heading h2,
.tdh-promise h2,
.tdh-cta h2 {
	color: var(--tdh-brown);
	font-size: 3rem;
}

.tdh-split p,
.tdh-section-heading p,
.tdh-promise p,
.tdh-cta p {
	color: var(--tdh-muted);
	font-size: 1.04rem;
}

.tdh-split__media img {
	aspect-ratio: 4 / 3;
	border-radius: var(--tdh-radius);
	box-shadow: var(--tdh-shadow);
	object-fit: cover;
	width: 100%;
}

.tdh-section-heading {
	align-items: end;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.45fr);
	margin-bottom: 34px;
}

.tdh-section-heading h2 {
	max-width: 760px;
}

.tdh-service-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tdh-service-card {
	background: var(--tdh-white);
	border: 1px solid var(--tdh-line);
	border-radius: var(--tdh-radius);
	box-shadow: 0 10px 28px rgba(33, 29, 26, 0.08);
	overflow: hidden;
}

.tdh-service-card img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.tdh-service-card__body {
	padding: 24px;
}

.tdh-card-eyebrow {
	color: var(--tdh-sage);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 9px;
	text-transform: uppercase;
}

.tdh-service-card h3 {
	color: var(--tdh-brown);
	font-size: 1.45rem;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 12px;
}

.tdh-service-card p:last-child {
	color: var(--tdh-muted);
	margin-bottom: 0;
}

.tdh-section--promise {
	background: var(--tdh-sage);
	color: var(--tdh-white);
}

.tdh-promise {
	align-items: start;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.tdh-promise h2,
.tdh-promise p,
.tdh-promise .tdh-kicker {
	color: var(--tdh-white);
}

.tdh-promise__list {
	display: grid;
	gap: 14px;
}

.tdh-promise__list p {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--tdh-radius);
	margin: 0;
	padding: 18px 20px;
}

.tdh-cta {
	background: var(--tdh-brown);
	color: var(--tdh-white);
	padding-block: 82px;
	text-align: center;
}

.tdh-cta__inner {
	max-width: 820px;
}

.tdh-cta h2,
.tdh-cta p,
.tdh-cta .tdh-kicker {
	color: var(--tdh-white);
}

.tdh-cta p {
	margin: 18px auto 28px;
	max-width: 680px;
}

.tdh-cta .tdh-button--primary {
	background: var(--tdh-white);
	color: var(--tdh-brown);
}

.tdh-cta .tdh-button--primary:hover,
.tdh-cta .tdh-button--primary:focus {
	background: var(--tdh-soft);
	color: var(--tdh-ink);
}

.entry-card,
.page-entry,
.empty-state {
	background: var(--tdh-white);
	border: 1px solid var(--tdh-line);
	border-radius: var(--tdh-radius);
	overflow: hidden;
}

.page-entry {
	border: 0;
	border-radius: 0;
}

.entry-card__body,
.empty-state {
	padding: 28px;
}

.entry-card__image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}

.post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.archive-header {
	margin-bottom: 32px;
	max-width: 760px;
}

.archive-title,
.entry-title,
.empty-state h1 {
	color: var(--tdh-brown);
	font-size: 2.75rem;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 16px;
}

.entry-card .entry-title {
	font-size: 1.45rem;
	line-height: 1.2;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	color: var(--tdh-clay);
}

.entry-meta,
.archive-description,
.empty-state p {
	color: var(--tdh-muted);
}

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

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content--full-width {
	margin: 0;
	max-width: none;
}

.search-form {
	align-items: stretch;
	display: flex;
	gap: 8px;
	max-width: 560px;
}

.search-field {
	border: 1px solid var(--tdh-line);
	border-radius: 6px;
	min-width: 0;
	padding: 11px 12px;
	width: 100%;
}

.nav-links {
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-top: 32px;
}

.comments-area {
	border-top: 1px solid var(--tdh-line);
	margin-top: 44px;
	padding-top: 32px;
}

.comments-title {
	font-size: 1.35rem;
	letter-spacing: 0;
	margin: 0 0 20px;
}

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

.comment-list .comment {
	border-top: 1px solid var(--tdh-line);
	padding-block: 20px;
}

.comment-list .comment:first-child {
	border-top: 0;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	border: 1px solid var(--tdh-line);
	border-radius: 6px;
	display: block;
	padding: 11px 12px;
	width: 100%;
}

.site-footer {
	background: var(--tdh-ink);
	color: var(--tdh-white);
	padding-block: 34px 22px;
}

.site-footer__inner {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
}

.site-footer__brand {
	align-items: center;
	display: flex;
	gap: 14px;
}

.site-footer__brand img {
	height: auto;
	width: 72px;
}

.site-footer__credit {
	display: grid;
	gap: 2px;
	margin: 0;
}

.site-footer__credit strong {
	font-size: 1rem;
}

.site-footer__credit span,
.site-footer__bottom {
	color: #d9cec1;
	font-size: 0.9rem;
}

.site-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer a {
	color: var(--tdh-white);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 28px;
	padding-top: 18px;
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 980px) {
	.tdh-feature-rail__grid,
	.tdh-service-grid,
	.tdh-promise,
	.tdh-section-heading,
	.tdh-split {
		grid-template-columns: 1fr;
	}

	.tdh-hero h1 {
		font-size: 4rem;
	}

	.tdh-section {
		padding-block: 68px;
	}
}

@media (max-width: 780px) {
	.tdh-container {
		padding-inline: 18px;
	}

	.site-header__inner {
		min-height: 68px;
	}

	.site-description {
		margin-left: 0;
	}

	.site-nav-toggle {
		display: inline-flex;
		position: relative;
	}

	.site-nav {
		background: var(--tdh-surface);
		border-bottom: 1px solid var(--tdh-line);
		border-top: 1px solid var(--tdh-line);
		display: none;
		left: 0;
		padding: 12px 18px;
		position: absolute;
		right: 0;
		top: 100%;
	}

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

	.site-nav ul {
		align-items: stretch;
		flex-direction: column;
		gap: 4px;
	}

	.tdh-hero {
		height: 70svh;
		min-height: 430px;
	}

	.tdh-hero__overlay {
		background: linear-gradient(90deg, rgba(33, 29, 26, 0.82), rgba(33, 29, 26, 0.28));
	}

	.tdh-hero h1 {
		font-size: 3rem;
	}

	.tdh-hero__tagline {
		font-size: 1.3rem;
	}

	.tdh-hero__copy {
		font-size: 1rem;
	}

	.tdh-feature-rail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tdh-feature-rail p {
		padding: 18px;
	}

	.tdh-split h2,
	.tdh-section-heading h2,
	.tdh-promise h2,
	.tdh-cta h2,
	.archive-title,
	.entry-title,
	.empty-state h1 {
		font-size: 2.15rem;
	}

	.site-main {
		padding-block: 36px;
	}

	.entry-card__body,
	.empty-state,
	.tdh-service-card__body {
		padding: 22px;
	}

	.search-form,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header {
		top: 0;
	}

	.site-title {
		font-size: 1rem;
	}

	.site-logo-image,
	.custom-logo {
		max-height: 48px;
	}

	.tdh-hero {
		height: 68svh;
		min-height: 420px;
	}

	.tdh-hero__image {
		object-position: 38% center;
	}

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

	.tdh-button {
		width: 100%;
	}

	.tdh-feature-rail__grid {
		grid-template-columns: 1fr;
	}
}
