:root {
	--packhush-graphite: #111827;
	--packhush-forest: #1f5c4d;
	--packhush-sand: #f4f4f1;
	--packhush-stone: #6b7280;
	--packhush-yellow: #f2c94c;
	--packhush-white: #ffffff;
	--packhush-border: rgba(17, 24, 39, 0.12);
	--packhush-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
	--packhush-container: 1180px;
	--packhush-radius: 8px;
}

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

html {
	background: var(--packhush-sand);
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	margin: 0;
	background: var(--packhush-sand);
	color: var(--packhush-graphite);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--packhush-forest);
	outline-offset: 3px;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	border-radius: var(--packhush-radius);
	padding: 10px 14px;
	background: var(--packhush-graphite);
	color: var(--packhush-white);
	box-shadow: var(--packhush-shadow);
	text-decoration: none;
}

.packhush-container {
	width: min(calc(100% - 32px), var(--packhush-container));
	margin-right: auto;
	margin-left: auto;
}

.site-header {
	border-bottom: 1px solid var(--packhush-border);
	background: rgba(244, 244, 241, 0.94);
}

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

.site-branding {
	display: grid;
	gap: 2px;
}

.site-title {
	color: var(--packhush-graphite);
	font-size: 1.18rem;
	font-weight: 800;
	text-decoration: none;
}

.site-description {
	margin: 0;
	color: var(--packhush-stone);
	font-size: 0.82rem;
}

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

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

.primary-menu a,
.footer-menu a {
	color: var(--packhush-graphite);
	font-size: 0.95rem;
	font-weight: 650;
	text-decoration: none;
}

.primary-menu a:hover,
.footer-menu a:hover {
	color: var(--packhush-forest);
}

.site-main {
	min-height: 52vh;
}

.packhush-front-page__hero {
	display: grid;
	gap: 28px;
	padding: clamp(52px, 8vw, 104px) 0;
}

.packhush-front-page__intro {
	display: grid;
	max-width: 780px;
	gap: 16px;
	text-align: left;
}

.packhush-kicker {
	margin: 0;
	color: var(--packhush-forest);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.packhush-front-page h1,
.entry-title {
	margin: 0;
	color: var(--packhush-graphite);
	font-size: clamp(2.35rem, 7vw, 5.5rem);
	line-height: 0.96;
}

.packhush-front-page p,
.entry-content {
	color: rgba(17, 24, 39, 0.74);
}

.packhush-front-page__content,
.packhush-content-shell {
	padding: 48px 0 72px;
}

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

.packhush-island {
	min-height: 96px;
	border: 1px dashed rgba(31, 92, 77, 0.32);
	border-radius: var(--packhush-radius);
	background: rgba(255, 255, 255, 0.42);
}

.packhush-home-hero-island {
	width: min(calc(100% - 32px), var(--packhush-container));
	min-height: 180px;
	margin-right: auto;
	margin-left: auto;
}

.packhush-search-drawer-island,
.packhush-lead-modal-island {
	min-height: 0;
}

.site-footer {
	border-top: 1px solid var(--packhush-border);
	background: var(--packhush-graphite);
	color: var(--packhush-white);
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	padding: 36px 0;
}

.site-footer__brand {
	max-width: 420px;
}

.site-footer__brand strong {
	display: block;
	font-size: 1rem;
}

.site-footer__brand p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.68);
}

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

.footer-menu a:hover {
	color: var(--packhush-yellow);
}

body.packhush-js-ready .packhush-island {
	border-style: solid;
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-footer__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.primary-navigation {
		align-items: flex-start;
	}

	.primary-menu,
	.footer-menu {
		align-items: flex-start;
		flex-direction: column;
	}
}
