:root {
	--color-forest: #18392b;
	--color-moss: #5b7b4a;
	--color-sage: #c9d7c0;
	--color-leaf: #90b27b;
	--color-sand: #f4efe5;
	--color-cream: #fbf8f2;
	--color-ink: #1d261f;
	--color-muted: #617062;
	--color-border: rgba(24, 57, 43, 0.12);
	--color-white: #ffffff;
	--color-accent: #d38747;
	--shadow-soft: 0 24px 60px rgba(17, 33, 25, 0.12);
	--shadow-card: 0 18px 40px rgba(17, 33, 25, 0.08);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 14px;
	--content-width: min(1180px, calc(100vw - 2rem));
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(144, 178, 123, 0.2), transparent 28%),
		linear-gradient(180deg, #fbf8f2 0%, #f4efe5 36%, #f8f5ee 100%);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--color-forest);
}

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

iframe {
	border: 0;
	width: 100%;
}

.site-frame {
	width: var(--content-width);
	margin: 0 auto;
}

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

.eyebrow {
	margin: 0 0 0.75rem;
	color: var(--color-moss);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	color: var(--color-forest);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.75rem, 7vw, 5.6rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
	font-size: clamp(1.3rem, 2.1vw, 1.7rem);
}

p {
	margin: 0 0 1rem;
	color: var(--color-muted);
}

ul {
	margin: 0;
	padding-left: 1.2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.25rem;
	padding: 0.85rem 1.4rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
}

.button--solid {
	background: linear-gradient(135deg, var(--color-forest), #25533d);
	color: var(--color-white);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	backdrop-filter: blur(12px);
}

.button--outline {
	border-color: rgba(24, 57, 43, 0.16);
	background: transparent;
	color: var(--color-forest);
}

.tree-services-service-page .button--ghost,
.tree-services-contact-page .button--ghost,
.hero--blog .button--ghost,
.hero--article .button--ghost,
.hero--missing .button--ghost {
	border-color: var(--color-border);
	background: rgba(255, 255, 255, 0.7);
	color: var(--color-forest);
}

.site-topbar {
	background: #202121;
	color: var(--color-white);
}

.site-topbar__inner {
	display: flex;
	justify-content: center;
	padding: 0.85rem 0;
	text-align: center;
}

.site-topbar__inner p {
	margin: 0;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 700;
}

.site-topbar__inner a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	padding: 1rem 0;
	background: rgba(251, 248, 242, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(24, 57, 43, 0.06);
}

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

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.site-brand__logo {
	display: block;
	width: clamp(180px, 20vw, 265px);
	height: auto;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--color-leaf), var(--color-forest));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-brand__mark svg {
	width: 1.4rem;
	fill: var(--color-white);
}

.site-brand__copy {
	display: grid;
	gap: 0.15rem;
	color: var(--color-forest);
	line-height: 1.1;
}

.site-brand__copy strong {
	font-size: 0.98rem;
}

.site-brand__copy span {
	color: var(--color-muted);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-nav {
	justify-self: center;
}

.primary-menu,
.sub-menu,
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.primary-menu__item {
	position: relative;
}

.primary-menu__item > a,
.submenu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.8rem 1rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--color-forest);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.primary-menu__item.is-active > a,
.primary-menu__item.is-active > .submenu-toggle,
.primary-menu__item > a:hover,
.submenu-toggle:hover {
	background: rgba(24, 57, 43, 0.08);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 20rem;
	padding: 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow-soft);
	/* keep submenu usable when long: limit height and enable internal scrolling */
	z-index: 60;
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	touch-action: pan-y;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-menu__item--has-children.submenu-open .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu a {
	display: block;
	padding: 0.8rem 0.9rem;
	border-radius: 0.95rem;
	color: var(--color-ink);
	font-weight: 700;
	white-space: normal;
	word-break: break-word;
	box-sizing: border-box;
}

.sub-menu a:hover {
	background: rgba(201, 215, 192, 0.45);
}

/* Submenu toggle icon (plus/minus) */
.submenu-icon {
	display: inline-block;
 	width: 1.1rem;
 	height: 1.1rem;
 	margin-left: 0.35rem;
 	font-weight: 800;
 	line-height: 1.1;
 	text-align: center;
}

.primary-menu__item--has-children .submenu-icon::after {
 	content: "+";
 	transition: transform 0.18s ease, content 0.12s ease;
}

/* When submenu is open, show a minus sign */
.primary-menu__item--has-children.submenu-open .submenu-icon::after {
	content: "\2212"; /* Unicode minus */
}

.header-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: rgba(24, 57, 43, 0.08);
	color: var(--color-forest);
	font-weight: 800;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 0.28rem;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0;
	border-radius: 1rem;
	background: rgba(24, 57, 43, 0.08);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 1.2rem;
	height: 2px;
	margin: 0 auto;
	background: var(--color-forest);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 5.5rem 0 3.5rem;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero::before {
	background: linear-gradient(140deg, rgba(15, 33, 24, 0.86), rgba(24, 57, 43, 0.78));
}

.hero--home {
	--hero-image: url("https://lirp.cdn-website.com/f61f62fb/dms3rep/multi/opt/cutting-a-tree-using-a-chainsaw-1920w.webp");
}

.hero--home::after {
	background:
		linear-gradient(90deg, rgba(15, 33, 24, 0.72), rgba(15, 33, 24, 0.22)),
		var(--hero-image) center/cover no-repeat;
	opacity: 0.92;
}

.hero--inner,
.hero--blog,
.hero--article,
.hero--missing {
	--hero-image: url("https://lirp.cdn-website.com/f61f62fb/dms3rep/multi/opt/imgi_2_tree-removal-Clarksville-TN-1920w.jpg");
}

.hero--inner::after,
.hero--blog::after,
.hero--article::after,
.hero--missing::after {
	background:
		linear-gradient(90deg, rgba(15, 33, 24, 0.76), rgba(15, 33, 24, 0.15)),
		var(--hero-image) center/cover no-repeat;
	opacity: 0.82;
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
	gap: 2rem;
	align-items: stretch;
}

.hero__grid--inner {
	align-items: end;
}

.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.hero__content h1,
.hero__content p,
.hero__content .eyebrow {
	color: var(--color-white);
}

.hero__lead {
	max-width: 44rem;
	font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 1rem 0 1.5rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.hero-stat {
	padding: 1.15rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.hero-stat strong {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: 800;
}

.hero-stat span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}

.hero__panel,
.entry-card,
.sidebar-card,
.service-card,
.blog-card,
.contact-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
}

.hero__panel {
	position: relative;
	z-index: 1;
	align-self: stretch;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
}

.hero__panel--info {
	background: rgba(255, 255, 255, 0.14);
}

.hero-media-card {
	height: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: calc(var(--radius-xl) - 8px);
}

.hero-media-card img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

.contact-card,
.sidebar-card,
.entry-card,
.service-card,
.blog-card {
	background: rgba(255, 255, 255, 0.94);
	border-color: var(--color-border);
}

.contact-card,
.sidebar-card {
	padding: 1.45rem;
}

.contact-card__header {
	margin-bottom: 1rem;
}

.contact-form {
	display: grid;
	gap: 0.85rem;
}

.contact-form label {
	display: grid;
	gap: 0.38rem;
	color: var(--color-forest);
	font-size: 0.93rem;
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(24, 57, 43, 0.12);
	border-radius: 1rem;
	background: rgba(244, 239, 229, 0.55);
	color: var(--color-ink);
	font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(91, 123, 74, 0.34);
	outline-offset: 2px;
}

.notice-banner {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	font-weight: 700;
}

.notice-banner--success {
	background: rgba(95, 154, 104, 0.14);
	color: #2b6841;
}

.notice-banner--warning {
	background: rgba(211, 135, 71, 0.16);
	color: #8c511f;
}

.notice-banner--error {
	background: rgba(177, 68, 68, 0.12);
	color: #8e2d2d;
}

.page-section {
	padding: 2.5rem 0 5rem;
}

.section-heading {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 2rem;
}

.section-heading--compact h2 {
	max-width: 38rem;
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.service-showcase {
	padding: 1rem 0 2.5rem;
}

.service-grid,
.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
}

.service-card,
.blog-card {
	display: grid;
	gap: 1rem;
	padding: 1.4rem;
}

.service-card__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 999px;
	background: rgba(91, 123, 74, 0.12);
	color: var(--color-moss);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.service-card h3,
.blog-card h2 {
	margin-bottom: 0;
	font-size: 1.45rem;
}

.service-card p,
.blog-card p {
	margin-bottom: 0;
}

.service-card a,
.blog-card a,
.footer-links a {
	color: var(--color-forest);
	font-weight: 800;
}

.story-layout {
	display: grid;
	gap: 1.35rem;
}

.story-section {
	display: grid;
	grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1fr);
	gap: 1.5rem;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow-card);
}

.story-section--intro,
.story-section--faq {
	grid-template-columns: 1fr;
}

.story-section--alt {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 229, 0.9));
}

.story-section__header {
	display: grid;
	align-content: start;
	gap: 0.8rem;
}

.story-section__body {
	display: grid;
	gap: 0.9rem;
}

.home-story {
	display: grid;
	gap: clamp(1.75rem, 3vw, 2.75rem);
}

.home-story__section {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid rgba(24, 57, 43, 0.1);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(144, 178, 123, 0.16), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.96));
	box-shadow: 0 26px 56px rgba(17, 33, 25, 0.08);
	overflow: hidden;
	isolation: isolate;
}

.home-story__section::before {
	content: "";
	position: absolute;
	left: -5rem;
	bottom: -7rem;
	width: 17rem;
	height: 17rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(144, 178, 123, 0.14), transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.home-story__section > * {
	position: relative;
	z-index: 1;
}

.home-story__section--intro {
	padding: clamp(1.75rem, 3vw, 2.4rem);
	background:
		radial-gradient(circle at top right, rgba(211, 135, 71, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.95));
}

.home-story__section--intro::before {
	left: auto;
	right: -4rem;
	top: -4rem;
	bottom: auto;
	width: 14rem;
	height: 14rem;
	background: radial-gradient(circle, rgba(211, 135, 71, 0.14), transparent 70%);
}

.home-story__intro-copy {
	display: grid;
	gap: clamp(1.25rem, 2vw, 1.8rem);
	max-width: 100%;
	margin: 0 auto;
}

.home-story__header {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.home-story__header h2 {
	margin: 0;
	max-width: 12ch;
	font-size: clamp(2.25rem, 4vw, 3.55rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.home-story__header h2::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 4px;
	margin-top: 1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #90b27b, #d6e887);
}

.home-story__body {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
	gap: clamp(1.35rem, 2.4vw, 2.4rem);
	align-items: stretch;
}

.home-story__body--solo {
	grid-template-columns: 1fr;
}

.home-story__text {
	display: grid;
	gap: 1rem;
	min-width: 0;
	align-content: start;
}

.home-story__text p {
	margin: 0;
	max-width: 64ch;
	font-size: 0.99rem;
	line-height: 1.82;
	color: rgba(29, 38, 31, 0.92);
}

.home-story__text .story-list {
	margin-top: 0.25rem;
}

.home-story__media {
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid rgba(24, 57, 43, 0.08);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 48px rgba(17, 33, 25, 0.12);
}

.home-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-story__media--panel {
	padding: 0;
	aspect-ratio: 5 / 6;
}

.home-story__media--panel img {
	border-radius: 0;
	min-height: 100%;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.home-story__section:hover .home-story__media--panel img {
	transform: scale(1.035);
	filter: saturate(1.05) contrast(1.02);
}

.story-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.3rem;
	padding-top: 0;
}

.story-actions--center {
	justify-content: center;
}

.story-actions--stack {
	flex-direction: column;
	align-items: flex-start;
}

.story-actions--intro {
	margin-top: 1.5rem;
}

.story-lead {
	font-size: 1.12rem;
	color: var(--color-ink);
}

.story-lead--intro {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.45;
}

.home-story__body-copy {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1rem, 1.35vw, 1.1rem);
	line-height: 1.92;
	max-width: 66ch;
}

.home-story__body-copy--wide {
	max-width: none;
}

.home-story__body-copy a {
	color: #0a8a55;
	font-weight: 700;
}

.home-story__body-copy a:hover {
	color: #067246;
}

.story-list,
.section-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	list-style: none;
	padding: 0;
}

.story-list li,
.section-pill-list li {
	padding: 0.7rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(24, 57, 43, 0.12);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 22px rgba(17, 33, 25, 0.04);
	color: var(--color-forest);
	font-weight: 700;
}

.home-story .button--section,
.home-story__section--intro .button--solid {
	min-height: 3.1rem;
	padding: 0.92rem 1.45rem;
	border-radius: 999px;
	border: 1px solid rgba(10, 138, 85, 0.12);
	background: linear-gradient(135deg, #0e8b57, #0a6c45);
	color: var(--color-white);
	box-shadow: 0 16px 32px rgba(10, 138, 85, 0.18);
}

.home-story .button--section::after,
.home-story__section--intro .button--solid::after {
	content: "\2192";
	font-size: 1rem;
	transition: transform 0.24s ease;
}

.home-story .button--section:hover,
.home-story__section--intro .button--solid:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #10a064, #0b7a4d);
	box-shadow: 0 18px 34px rgba(10, 138, 85, 0.22);
}

.home-story .button--section:hover::after,
.home-story__section--intro .button--solid:hover::after {
	transform: translateX(2px);
}

.home-story__section--spotlight {
	background:
		radial-gradient(circle at top right, rgba(144, 178, 123, 0.2), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(242, 236, 224, 0.95));
}

.home-story__section--spotlight .home-story__header h2 {
	color: #0b8150;
	max-width: 11ch;
}

.home-story__section--spotlight .home-story__body {
	grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}

.home-story__section--spotlight .home-story__media--panel {
	height: 100%;
	min-height: 100%;
	aspect-ratio: auto;
}

.home-story__section--spotlight .home-story__media--panel img {
	height: 100%;
	min-height: 100%;
}

.home-story__section--split {
	background:
		radial-gradient(circle at top center, rgba(211, 135, 71, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 246, 240, 0.96));
	padding: clamp(1.85rem, 3vw, 2.7rem);
}

.home-story__section--split::before {
	left: auto;
	right: -5rem;
	bottom: auto;
	top: -5rem;
	width: 16rem;
	height: 16rem;
	background: radial-gradient(circle, rgba(211, 135, 71, 0.12), transparent 68%);
}

.home-story__section--split .home-story__header {
	justify-items: center;
	gap: 0.55rem;
	margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
	text-align: center;
}

.home-story__section--split .home-story__header h2 {
	max-width: 16ch;
	font-size: clamp(2.45rem, 4.1vw, 3.8rem);
	line-height: 1;
	color: #0b8b53;
	letter-spacing: -0.045em;
}

.home-story__section--split .home-story__header h2::after {
	margin-left: auto;
	margin-right: auto;
}

.home-story__split-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.25rem, 2vw, 2rem);
	align-items: start;
}

.home-story__split-column {
	display: grid;
	gap: 1rem;
	min-width: 0;
	align-content: start;
}

.home-story__split-column--media {
	/* Make media column visually simple (no card background) to match original layout */
	padding: 0.5rem;
	border-radius: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.home-story__split-column--media .home-story__media--panel {
	aspect-ratio: 4 / 3;
	/* Slight corner radius on the image only */
	border-radius: 12px;
	overflow: hidden;
}

.home-story__split-column .home-story__text p {
	max-width: none;
	font-size: 0.97rem;
	line-height: 1.8;
	color: rgba(61, 70, 59, 0.92);
}

.home-story__split-column .story-actions {
	margin-top: 1rem;
}

.home-story__split-column--media .button--section {
	min-height: 2.9rem;
	padding: 0.8rem 1.2rem;
}

/* Ensure story buttons are pill-shaped to match site design */
.home-story .button,
.home-story .button--section {
	border-radius: 999px;
}

.home-story__section--immersive {
	position: relative;
	padding: clamp(1.8rem, 3.2vw, 2.8rem);
	background:
		linear-gradient(180deg, rgba(11, 21, 16, 0.34), rgba(11, 21, 16, 0.8)),
		var(--story-image) center/cover no-repeat;
	overflow: hidden;
}

.home-story__section--immersive .home-story__header {
	justify-items: center;
	margin-bottom: 1.35rem;
	text-align: center;
}

.home-story__section--immersive .home-story__header h2 {
	max-width: 14ch;
	color: var(--color-white);
}

.home-story__section--immersive .home-story__header h2::after {
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(135deg, #b0cf2d, #ebf795);
}

.home-story__section--immersive .home-story__body {
	grid-template-columns: 1fr;
	justify-items: center;
}

.home-story__section--immersive .home-story__text {
	max-width: 64rem;
	margin: 0 auto;
	padding: clamp(1.3rem, 2.8vw, 1.95rem);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(11, 21, 16, 0.58), rgba(11, 21, 16, 0.8));
	backdrop-filter: blur(10px);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.home-story__section--immersive .home-story__text p {
	max-width: none;
	color: rgba(255, 255, 255, 0.92);
}

.home-story__section--immersive .story-actions {
	justify-content: center;
	margin-top: 1.25rem;
}

.home-story__section--immersive .button--section {
	background: linear-gradient(135deg, #18b56f, #0b7f4f);
}

.home-story__section--immersive .button--section:hover {
	background: linear-gradient(135deg, #1cc978, #0da160);
}

.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq-item {
	padding: 1rem 1.15rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: rgba(244, 239, 229, 0.45);
}

.faq-item summary {
	cursor: pointer;
	color: var(--color-forest);
	font-weight: 800;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	margin-top: 0.8rem;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 1.4rem;
	align-items: start;
}

.entry-card {
	padding: 1.7rem;
}

.entry-card--post {
	padding: 2rem;
}

.page-sidebar {
	display: grid;
	gap: 1rem;
}

.sidebar-card--callout {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 229, 0.94));
}

.sidebar-card--map iframe {
	min-height: 280px;
	border-radius: 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 0.7fr 0.9fr 1.1fr;
	gap: 1.25rem;
	padding: 4rem 0 2rem;
}

.site-footer {
	margin-top: 2rem;
	background: linear-gradient(180deg, rgba(21, 45, 33, 0.98), rgba(11, 26, 19, 1));
	color: rgba(255, 255, 255, 0.82);
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer .eyebrow {
	color: inherit;
}

.site-footer .button--solid {
	background: var(--color-white);
	color: var(--color-forest);
}

.footer-column h3 {
	font-size: 1.1rem;
	margin-bottom: 0.9rem;
}

.footer-column--brand {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.footer-brand__logo {
	display: block;
	max-width: 240px;
	height: auto;
}

.footer-links {
	display: grid;
	gap: 0.55rem;
}

.footer-map iframe {
	min-height: 250px;
	border-radius: 1rem;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.92rem;
}

.blog-card__meta,
.pagination-wrap {
	color: var(--color-muted);
}

.cta-band {
	padding: 0 0 5rem;
}

.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, var(--color-forest), #295941);
	box-shadow: var(--shadow-soft);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
	color: var(--color-white);
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.empty-state {
	padding: 2rem;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.78);
	text-align: center;
}

@media (max-width: 1100px) {
	.service-grid,
	.blog-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__grid,
	.page-layout,
	.story-section,
	.home-story__body,
	.home-story__split-grid {
		grid-template-columns: 1fr;
	}

	.home-story__header h2,
	.home-story__section--spotlight .home-story__header h2,
	.home-story__section--split .home-story__header h2,
	.home-story__section--immersive .home-story__header h2 {
		max-width: none;
	}

	.home-story__section--spotlight .home-story__media--panel {
		min-height: 24rem;
	}
	.home-story__split-column--media .button--section {
		min-height: 2.9rem;
		padding: 0.8rem 1.2rem;
	}
	.home-story__split-column--media {
		padding: 0.95rem;
	}

	.home-story__media--panel {
		aspect-ratio: 16 / 10;
	}

	.header-call {
		display: none;
	}
}

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

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-nav {
		grid-column: 1 / -1;
		display: none;
		width: 100%;
		padding-top: 0.5rem;
	}

	.site-header.menu-open .site-nav {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		border: 1px solid var(--color-border);
		border-radius: 1.2rem;
		background: rgba(255, 255, 255, 0.98);
	}

	/* Layout parent link + icon toggle correctly on small screens */

	.primary-menu__item {
		display: flex;
		align-items: center;
	}

	.primary-menu__item > a {
		flex: 1 1 auto;
	}

	/* Keep full-width controls for anchors or full-text toggles */
	.primary-menu__item > a,
	.primary-menu__item > .submenu-toggle:not(.submenu-toggle--icon) {
		justify-content: space-between;
		width: 100%;
		padding: 0.95rem 1rem;
	}

	/* Small icon-only toggle button (doesn't cover the link) */
	.submenu-toggle.submenu-toggle--icon {
		padding: 0.45rem 0.6rem;
		margin-left: 0.5rem;
		border-radius: 0.6rem;
		min-width: auto;
	}

	.sub-menu {
		position: static;
		display: none;
		min-width: 0;
		margin-top: 0.5rem;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		max-height: 60vh;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		touch-action: pan-y;
		border: 1px solid var(--color-border);
		border-radius: 0.95rem;
		background: rgba(255, 255, 255, 0.98);
		padding: 0.5rem 0;
	}

	.primary-menu__item--has-children.submenu-open .sub-menu {
		display: grid;
	}

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

	.cta-band__inner,
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

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

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

	.hero {
		padding-top: 4.6rem;
	}

	.hero__panel,
	.entry-card,
	.sidebar-card,
	.service-card,
	.blog-card,
	.contact-card,
	.story-section,
	.home-story__section,
	.cta-band__inner {
		border-radius: 1.35rem;
	}

	.site-frame {
		width: min(100vw - 1.25rem, 100%);
	}

	.hero__actions,
	.cta-band__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.button,
	.header-call {
		width: 100%;
	}

	.home-story__media img,
	.hero-media-card img {
		min-height: 240px;
	}

	.home-story__header {
		margin-bottom: 1rem;
	}

	.home-story__header h2 {
		font-size: clamp(1.9rem, 9vw, 2.35rem);
	}

	.home-story__body {
		gap: 1rem;
	}

	.home-story {
		gap: 1.5rem;
	}

	.home-story__section {
		padding: 1.15rem;
		border-radius: 24px;
	}

	.home-story__media {
		border-radius: 20px;
	}

	.home-story__media--panel {
		aspect-ratio: 4 / 3;
	}

	.home-story .button--section,
	.home-story__section--intro .button--solid {
		width: auto;
	}

	.home-story__section--immersive .home-story__text {
		padding: 1rem;
		border-radius: 20px;
	}

	.home-story__section--split {
		padding: 1.25rem 1.1rem;
	}

	.home-story__section--split .home-story__header h2 {
		font-size: clamp(2rem, 10vw, 2.6rem);
	}

	.home-story__split-grid {
		gap: 1rem;
	}

	.home-story__split-column--media {
		padding: 0.85rem;
	}

	.home-story__split-column .story-actions {
		align-items: stretch;
	}
}

/* Footer social icons */
.site-socials {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.site-socials .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.18s ease, opacity 0.18s ease;
	box-shadow: var(--shadow-card);
}

.site-socials .social-icon {
	font-size: 16px;
	line-height: 1;
}

.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.social-x { background: #000; }
.social-yt { background: #ff0000; }
.social-linkedin { background: #0a66c2; }
.social-pinterest { background: #e60023; }

.site-socials .social-link:hover {
	transform: translateY(-3px);
	opacity: 0.95;
}
