/* =========================================================
   Human Impact Certified — Theme v2
   ========================================================= */

:root {
	--hi-gold: #cc9933;
	--hi-gold-hover: #d7a63f;
	--hi-black: #000;
	--hi-background: #292828;
	--hi-white: #fff;
	--hi-muted: #b8b8b8;
	--hi-border: rgba(255,255,255,.12);
	--hi-radius: 16px;
	--hi-width: 1180px;
	--hi-h1: clamp(44px,5.3vw,68px);
	--hi-h2: clamp(34px,4vw,52px);
	--hi-body: clamp(17px,1.35vw,19px);
}

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--hi-background);
	color: var(--hi-white);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body, body * { box-sizing: border-box; }
body.hi-menu-open { overflow: hidden; }
a { color: inherit; }

.hi-shell {
	width: min(100% - 48px, var(--hi-width));
	margin-inline: auto;
}

.hi-main { overflow: hidden; }

.hi-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 12px 16px;
	background: var(--hi-white);
	color: var(--hi-black);
	font-weight: 600;
	text-decoration: none;
	transform: translateY(-160%);
}

.hi-skip-link:focus { transform: translateY(0); }

/* Header */

.hi-site-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: rgba(41,40,40,.98);
	border-bottom: 1px solid var(--hi-border);
}

.hi-site-header__inner {
	width: min(100% - 48px, var(--hi-width));
	min-height: 84px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hi-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--hi-white);
	text-decoration: none;
}


.hi-brand__picture {
	display: block;
	line-height: 0;
}

.hi-brand__logo {
	display: block;
	width: clamp(245px, 22vw, 320px);
	height: auto;
	max-height: 62px;
	object-fit: contain;
	object-position: left center;
}











.hi-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.hi-nav a {
	color: var(--hi-muted);
	font-size: 15px;
	text-decoration: none;
	transition: color 160ms ease;
}

.hi-nav a:hover { color: var(--hi-white); }

.hi-nav .hi-nav__cta {
	min-height: 44px;
	padding: 12px 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hi-gold);
	border-radius: 10px;
	color: var(--hi-black);
	font-weight: 500;
}

.hi-nav .hi-nav__cta:hover {
	background: var(--hi-gold-hover);
	color: var(--hi-black);
}


/* Certification dropdown */

.hi-nav-dropdown {
	position: relative;
}

.hi-nav-dropdown__toggle {
	padding: 10px 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: 0;
	color: var(--hi-muted);
	font: inherit;
	font-size: 15px;
	cursor: pointer;
	transition: color 160ms ease;
}

.hi-nav-dropdown__toggle:hover,
.hi-nav-dropdown.is-open .hi-nav-dropdown__toggle,
.hi-nav-dropdown:focus-within .hi-nav-dropdown__toggle {
	color: var(--hi-white);
}

.hi-nav-dropdown__toggle svg {
	transition: transform 180ms ease;
}

.hi-nav-dropdown.is-open .hi-nav-dropdown__toggle svg,
.hi-nav-dropdown:focus-within .hi-nav-dropdown__toggle svg {
	transform: rotate(180deg);
}

.hi-nav-dropdown__menu {
	width: 238px;
	padding: 10px;
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 1100;
	display: grid;
	gap: 2px;
	background: rgba(15,15,15,.98);
	border: 1px solid var(--hi-border);
	border-radius: 14px;
	box-shadow: 0 22px 60px rgba(0,0,0,.42);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.hi-nav-dropdown__menu::before {
	content: "";
	position: absolute;
	inset: -15px 0 auto;
	height: 15px;
}

.hi-nav-dropdown:hover .hi-nav-dropdown__menu,
.hi-nav-dropdown:focus-within .hi-nav-dropdown__menu,
.hi-nav-dropdown.is-open .hi-nav-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.hi-nav-dropdown__menu a {
	padding: 11px 12px;
	border-radius: 8px;
	color: var(--hi-muted);
	font-size: 14px;
	line-height: 1.3;
}

.hi-nav-dropdown__menu a:hover,
.hi-nav-dropdown__menu a:focus-visible {
	background: rgba(255,255,255,.055);
	color: var(--hi-white);
}

.hi-menu-toggle {
	width: 46px;
	height: 46px;
	padding: 0;
	display: none;
	position: relative;
	background: transparent;
	border: 1px solid var(--hi-border);
	border-radius: 50%;
	color: var(--hi-white);
	cursor: pointer;
}

.hi-menu-toggle span {
	position: absolute;
	left: 13px;
	width: 18px;
	height: 1.5px;
	background: currentColor;
	transition: transform 180ms ease, top 180ms ease;
}

.hi-menu-toggle span:first-child { top: 18px; }
.hi-menu-toggle span:last-child { top: 26px; }

.is-menu-open .hi-menu-toggle span:first-child {
	top: 22px;
	transform: rotate(45deg);
}

.is-menu-open .hi-menu-toggle span:last-child {
	top: 22px;
	transform: rotate(-45deg);
}

.hi-mobile-menu {
	position: fixed;
	inset: 71px 0 0;
	z-index: 999;
	padding: 34px 24px 40px;
	background: rgba(0,0,0,.98);
	overflow-y: auto;
}

.hi-mobile-menu[hidden] { display: none; }

.hi-mobile-menu__nav {
	width: min(100%, 560px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.hi-mobile-menu__nav > a {
	padding: 18px 2px;
	border-bottom: 1px solid var(--hi-border);
	color: var(--hi-white);
	font-size: clamp(22px,6.3vw,31px);
	font-weight: 450;
	letter-spacing: -.025em;
	line-height: 1.15;
	text-decoration: none;
}

.hi-mobile-menu__nav > a:hover { color: var(--hi-gold); }


.hi-mobile-submenu {
	border-bottom: 1px solid var(--hi-border);
}

.hi-mobile-submenu__toggle {
	width: 100%;
	padding: 18px 2px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: transparent;
	border: 0;
	color: var(--hi-white);
	font: inherit;
	font-size: clamp(22px,6.3vw,31px);
	font-weight: 450;
	letter-spacing: -.025em;
	line-height: 1.15;
	text-align: left;
	cursor: pointer;
}

.hi-mobile-submenu__toggle svg {
	flex: 0 0 auto;
	color: var(--hi-muted);
	transition: transform 180ms ease;
}

.hi-mobile-submenu.is-open .hi-mobile-submenu__toggle {
	color: var(--hi-gold);
}

.hi-mobile-submenu.is-open .hi-mobile-submenu__toggle svg {
	transform: rotate(180deg);
	color: var(--hi-gold);
}

.hi-mobile-submenu__panel {
	padding: 2px 0 18px 18px;
	display: grid;
}

.hi-mobile-submenu__panel[hidden] {
	display: none;
}

.hi-mobile-submenu__panel a {
	padding: 11px 2px;
	color: var(--hi-muted);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;
}

.hi-mobile-submenu__panel a:hover {
	color: var(--hi-white);
}

.hi-mobile-menu__nav .hi-mobile-menu__cta {
	margin-top: 32px;
	padding: 17px 22px;
	justify-content: center;
	background: var(--hi-gold);
	border: 0;
	border-radius: 12px;
	color: var(--hi-black);
	font-size: 17px;
	font-weight: 500;
	text-align: center;
}

.hi-nav a:focus-visible,
.hi-brand:focus-visible,
.hi-button:focus-visible,
.hi-menu-toggle:focus-visible,
.hi-nav-dropdown__toggle:focus-visible,
.hi-mobile-submenu__toggle:focus-visible,
.hi-mobile-menu a:focus-visible {
	outline: 3px solid var(--hi-white);
	outline-offset: 4px;
}

/* Shared */

.hi-eyebrow {
	margin: 0 0 20px;
	color: var(--hi-gold);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hi-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.hi-button {
	min-height: 52px;
	padding: 14px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hi-button:hover { transform: translateY(-1px); }

.hi-button-primary {
	background: var(--hi-gold);
	color: var(--hi-black);
}

.hi-button-primary:hover {
	background: var(--hi-gold-hover);
	color: var(--hi-black);
}

.hi-button-secondary {
	background: transparent;
	border-color: var(--hi-border);
	color: var(--hi-white);
}

.hi-button-secondary:hover {
	border-color: var(--hi-gold);
	color: var(--hi-gold);
}

/* Homepage */

.hi-home-hero {
	padding: clamp(72px,7vw,105px) 0;
	background: radial-gradient(circle at 82% 24%, rgba(204,153,51,.09), transparent 28%), var(--hi-background);
}

.hi-home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr);
	align-items: center;
	gap: clamp(52px,7vw,95px);
}

.hi-home-hero__content h1 {
	max-width: 900px;
	margin: 0;
	font-size: var(--hi-h1);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1.01;
	text-wrap: balance;
}

.hi-home-hero__lead {
	max-width: 760px;
	margin: 28px 0 0;
	color: var(--hi-muted);
	font-size: var(--hi-body);
	line-height: 1.62;
}

.hi-home-hero__lead strong {
	color: var(--hi-white);
	font-weight: 500;
}

.hi-score-panel {
	padding: clamp(28px,3.2vw,44px);
	background: var(--hi-black);
	border: 1px solid var(--hi-border);
	border-radius: var(--hi-radius);
	box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.hi-score-panel__label,
.hi-score-panel__note {
	margin: 0;
	color: var(--hi-muted);
	font-size: 13px;
	line-height: 1.6;
}

.hi-score-panel__label {
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hi-score-list { margin: 28px 0 0; }

.hi-score-list div {
	padding: 14px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--hi-border);
}

.hi-score-list dt,
.hi-score-list dd { margin: 0; }

.hi-score-list dt { color: var(--hi-muted); }

.hi-score-list dd {
	font-size: 18px;
	font-weight: 500;
}

.hi-score-total {
	padding: 30px 0;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.hi-score-total span {
	max-width: 100px;
	color: var(--hi-muted);
	font-size: 14px;
	line-height: 1.4;
}

.hi-score-total strong {
	color: var(--hi-gold);
	font-size: clamp(64px,8vw,96px);
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: .8;
}

.hi-home-section {
	padding: clamp(88px,10vw,140px) 0;
	border-top: 1px solid var(--hi-border);
}

.hi-home-section__narrow { max-width: 900px; }

.hi-home-section h2 {
	max-width: 900px;
	margin: 0;
	font-size: var(--hi-h2);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1.06;
	text-wrap: balance;
}

.hi-home-section__narrow > p:last-child,
.hi-home-section__heading > p:last-child {
	max-width: 780px;
	margin: 28px 0 0;
	color: var(--hi-muted);
	font-size: var(--hi-body);
	line-height: 1.7;
}

.hi-pillar-grid {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(5,minmax(0,1fr));
	border-top: 1px solid var(--hi-border);
	border-left: 1px solid var(--hi-border);
}

.hi-pillar-card {
	min-height: 290px;
	padding: 30px;
	background: rgba(0,0,0,.12);
	border-right: 1px solid var(--hi-border);
	border-bottom: 1px solid var(--hi-border);
}

.hi-pillar-card > span {
	color: var(--hi-gold);
	font-size: 13px;
	letter-spacing: .12em;
}

.hi-pillar-card h3 {
	margin: 70px 0 16px;
	font-size: 26px;
	font-weight: 500;
}

.hi-pillar-card p {
	margin: 0;
	color: var(--hi-muted);
	font-size: 15px;
	line-height: 1.65;
}

/* Standard pages */

.hi-standard-page {
	padding: clamp(76px,9vw,120px) 0 clamp(100px,12vw,160px);
}

.hi-standard-page__inner { max-width: 980px; }

.hi-standard-page__header h1 {
	margin: 0;
	font-size: var(--hi-h1);
	letter-spacing: -.045em;
	line-height: 1.02;
}

.hi-standard-page__content {
	max-width: 790px;
	margin-top: 48px;
	color: var(--hi-muted);
	font-size: var(--hi-body);
	line-height: 1.75;
}

.hi-standard-page__content h2,
.hi-standard-page__content h3 {
	color: var(--hi-white);
	line-height: 1.15;
}

/* Footer */

.hi-site-footer {
	padding: 44px 0;
	background: var(--hi-black);
	border-top: 1px solid var(--hi-border);
}

.hi-site-footer__inner {
	width: min(100% - 48px,var(--hi-width));
	margin-inline: auto;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
}

.hi-site-footer p {
	margin: 0;
	color: var(--hi-muted);
	font-size: 14px;
	line-height: 1.6;
}

.hi-site-footer strong {
	color: var(--hi-white);
	font-weight: 500;
}

.hi-site-footer__meta { text-align: right; }

@media (max-width: 1024px) {
	.hi-home-hero__grid { grid-template-columns: 1fr; }
	.hi-score-panel { max-width: 620px; }
	.hi-pillar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
	.hi-site-header__inner {
		width: min(100% - 36px,var(--hi-width));
		min-height: 71px;
	}

	.hi-nav--desktop { display: none; }
	.hi-menu-toggle { display: block; }
}

@media (max-width: 600px) {

	.hi-brand__logo {
		width: 48px;
		height: 48px;
		max-height: 48px;
	}

	.hi-brand__picture {
		width: 48px;
		height: 48px;
	}
	:root {
		--hi-h1: clamp(34px,9vw,42px);
		--hi-h2: clamp(31px,8.5vw,40px);
	}

	.hi-shell,
	.hi-site-footer__inner {
		width: min(100% - 36px,var(--hi-width));
	}

	

	

	.hi-home-hero { padding: 82px 0 84px; }
	.hi-home-hero__content h1 br { display: none; }

	.hi-actions { flex-direction: column; }
	.hi-button { width: 100%; }

	.hi-pillar-grid { grid-template-columns: 1fr; }
	.hi-pillar-card { min-height: 230px; }
	.hi-pillar-card h3 { margin-top: 48px; }

	.hi-site-footer__inner {
		align-items: start;
		flex-direction: column;
	}

	.hi-site-footer__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.hi-button,
	.hi-nav a,
	.hi-nav-dropdown__toggle,
	.hi-nav-dropdown__toggle svg,
	.hi-mobile-submenu__toggle svg,
	.hi-menu-toggle span {
		transition: none;
	}

	.hi-button:hover { transform: none; }
}
