:root {
	--hegde-navy: #1b2a41;
	--hegde-amber: #f2b134;
	--hegde-charcoal: #222222;
	--hegde-sand: #f6f1e8;
	--hegde-cream: #fcf7ef;
	--hegde-steel: #5f6f85;
	--hegde-line: rgba(27, 42, 65, 0.12);
	--hegde-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
	--hegde-radius: 28px;
}

body {
	font-family: "Lato", Arial, sans-serif;
	color: var(--hegde-charcoal);
	background:
		radial-gradient(circle at top left, rgba(242, 177, 52, 0.12), transparent 28%),
		linear-gradient(180deg, #fffdf9 0%, #f4efe6 100%);
}

h1,
h2,
h3,
.wp-block-site-title {
	font-family: "Montserrat", Arial, sans-serif;
}

.hegde-primary-navigation__list,
.hegde-cta-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.hegde-primary-navigation__list {
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.hegde-primary-navigation__list > li {
	display: flex;
	flex: 0 0 auto;
}

.hegde-primary-navigation a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.4rem;
	padding: 0.66rem 0.9rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.hegde-primary-navigation li.current-menu-item a,
.hegde-primary-navigation li.current_page_item a,
.hegde-primary-navigation a:hover,
.hegde-primary-navigation a:focus-visible {
	color: #ffffff;
	background: rgba(242, 177, 52, 0.16);
	border-color: rgba(242, 177, 52, 0.45);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
	transform: translateY(-1px);
}

.hegde-cta-strip {
	align-items: center;
	justify-content: flex-end;
	gap: 0.8rem;
	padding: 0;
}

.hegde-cta-strip .wp-element-button {
	border-radius: 999px;
	font-weight: 700;
	padding: 0.9rem 1.3rem;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
	text-decoration: none;
	border: 1px solid transparent;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		filter 180ms ease;
}

.hegde-cta-strip .wp-element-button:hover,
.hegde-cta-strip .wp-element-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
	filter: brightness(1.04);
}

.hegde-cta-strip .wp-element-button:active {
	transform: translateY(0);
}

.hegde-site-header {
	position: relative;
	padding: 1.2rem 0 1.5rem;
	margin-bottom: 0.9rem;
	overflow: hidden;
	border-bottom: none;
	border-radius: 0 0 calc(var(--hegde-radius) + 6px) calc(var(--hegde-radius) + 6px);
	background:
		radial-gradient(circle at 88% 8%, rgba(242, 177, 52, 0.12), transparent 24%),
		linear-gradient(180deg, #18273b 0%, #1c2b41 100%);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.hegde-site-header::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--hegde-amber), transparent);
	opacity: 0.8;
	pointer-events: none;
}

.hegde-site-header__inner {
	width: min(1720px, calc(100vw - 32px));
	max-width: none !important;
	margin-inline: auto;
}

.hegde-site-header__top {
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.hegde-site-header__brand {
	gap: 0.35rem;
}

.hegde-site-header .wp-block-site-tagline {
	margin: 0;
	max-width: 40rem;
	color: rgba(246, 241, 232, 0.84);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}

.hegde-site-header__nav-row {
	width: 100%;
	gap: 0.75rem;
}

.hegde-site-header__nav-shell {
	flex: 1 1 auto;
	width: 100%;
	padding: 0.55rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hegde-nav-toggle {
	display: none;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1rem 0.6rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	font-family: inherit;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition:
		background-color 180ms ease,
		border-color 180ms ease;
}

.hegde-nav-toggle:hover,
.hegde-nav-toggle:focus-visible {
	background: rgba(242, 177, 52, 0.18);
	border-color: rgba(242, 177, 52, 0.45);
}

.hegde-nav-toggle__box {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	width: 18px;
	height: 13px;
}

.hegde-nav-toggle__box span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition:
		transform 200ms ease,
		opacity 200ms ease;
}

.hegde-nav-toggle[aria-expanded="true"] .hegde-nav-toggle__box span:first-child {
	transform: translateY(5.5px) rotate(45deg);
}

.hegde-nav-toggle[aria-expanded="true"] .hegde-nav-toggle__box span:nth-child(2) {
	opacity: 0;
}

.hegde-nav-toggle[aria-expanded="true"] .hegde-nav-toggle__box span:last-child {
	transform: translateY(-5.5px) rotate(-45deg);
}

.hegde-site-header .wp-block-site-title {
	font-size: clamp(1.5rem, 2vw, 2rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hegde-site-header .wp-block-site-title a {
	color: inherit;
	text-decoration: none;
}

.hegde-page-shell {
	padding: 2rem 0 5rem;
}

.hegde-page-shell__inner {
	width: min(1440px, calc(100vw - 80px));
	max-width: none !important;
	margin-inline: auto;
	padding: 2rem clamp(1.5rem, 2.6vw, 2.35rem) clamp(2.75rem, 4vw, 3.5rem);
	border: 1px solid rgba(27, 42, 65, 0.08);
	border-radius: 34px;
	background:
		radial-gradient(circle at top left, rgba(242, 177, 52, 0.1), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 239, 0.94));
	box-shadow: var(--hegde-shadow);
}

.hegde-page-intro {
	margin-bottom: 1.6rem;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid rgba(27, 42, 65, 0.1);
}

.hegde-page-intro__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--hegde-steel);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hegde-page-intro .wp-block-post-title {
	margin: 0;
	font-size: clamp(2.35rem, 4vw, 4rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.hegde-page-content {
	width: 100%;
	max-width: none !important;
}

.hegde-page-content > p:first-child {
	max-width: 72rem;
	margin-top: 0;
	font-size: 1.16rem;
	line-height: 1.72;
	color: #314256;
}

.hegde-page-content h2 {
	margin-top: 2.4rem;
	margin-bottom: 0.95rem;
	font-size: clamp(1.75rem, 2.6vw, 2.4rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hegde-page-content h3 {
	margin-bottom: 0.7rem;
	font-size: 1.28rem;
	line-height: 1.15;
}

.hegde-page-content p,
.hegde-page-content li {
	max-width: 74rem;
	font-size: 1.02rem;
	line-height: 1.72;
}

.hegde-page-content ul {
	padding-left: 1.3rem;
}

.hegde-page-content .wp-block-columns {
	gap: 1.1rem;
	margin-top: 1.15rem;
}

.hegde-page-content .wp-block-column {
	padding: 1.3rem 1.35rem;
	border: 1px solid rgba(27, 42, 65, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.hegde-page-content .wp-block-column > *:first-child {
	margin-top: 0;
}

.hegde-page-content .wp-block-column > *:last-child {
	margin-bottom: 0;
}

.hegde-homepage {
	gap: 0;
	padding-bottom: 5rem;
	width: 100%;
	max-width: none !important;
}

.hegde-homepage > .wp-block-cover,
.hegde-homepage > section,
.hegde-homepage > .wp-block-group {
	margin-block: 0;
}

.hegde-section-eyebrow {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(242, 177, 52, 0.16);
	color: var(--hegde-navy);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hegde-section-eyebrow--light {
	background: rgba(255, 255, 255, 0.14);
	color: var(--hegde-sand);
}

.hegde-hero {
	overflow: hidden;
	position: relative;
	margin-top: 0;
	border-radius: calc(var(--hegde-radius) + 6px);
	background:
		radial-gradient(circle at 84% 18%, rgba(242, 177, 52, 0.18), transparent 18%),
		radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.07), transparent 16%),
		linear-gradient(135deg, #132238 0%, #1d2e49 48%, #243954 100%);
	box-shadow: var(--hegde-shadow);
}

.hegde-hero::after {
	content: "";
	position: absolute;
	inset: auto -3% -16% auto;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 177, 52, 0.18), transparent 72%);
	pointer-events: none;
}

.hegde-hero__shell {
	width: min(1720px, calc(100vw - 32px));
	max-width: none !important;
	padding: clamp(1.35rem, 2.5vw, 2.1rem) clamp(1.5rem, 3vw, 2.9rem) clamp(1.55rem, 2.8vw, 2.3rem);
}

.hegde-hero__body {
	width: min(1320px, 100%);
	max-width: none !important;
	margin: 0 !important;
}

.hegde-hero__content {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}

.hegde-hero__content h1 {
	max-width: 13.5ch;
	font-size: clamp(2rem, 3.1vw, 3.35rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	margin: 0 0 0.9rem;
}

.hegde-hero__content > *,
.hegde-hero__proof {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
}

.hegde-hero__content p {
	max-width: 52rem;
	font-size: 1.02rem;
	line-height: 1.62;
}

.hegde-hero__lede {
	margin-bottom: 0;
}

.hegde-hero .hegde-section-eyebrow {
	margin-bottom: 1.15rem;
	padding: 0.52rem 1rem;
	background: rgba(242, 177, 52, 0.22);
	color: rgb(255, 248, 236);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hegde-hero__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	gap: 0.65rem;
	list-style: none;
	padding: 0;
	margin: 1.15rem 0 0;
}

.hegde-hero__tags li {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.52rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	font-weight: 700;
	font-size: 0.89rem;
	line-height: 1;
	color: rgba(255, 248, 236, 0.96);
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.hegde-hero__tags li:hover {
	background: rgba(242, 177, 52, 0.16);
	border-color: rgba(242, 177, 52, 0.4);
	transform: translateY(-1px);
}

.hegde-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	gap: 0.9rem;
	margin-top: 1.35rem;
}

.hegde-hero__proof-item {
	height: 100%;
	padding: 0.95rem 1rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 36px rgba(8, 15, 28, 0.18);
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		background-color 180ms ease;
}

.hegde-hero__proof-item:hover {
	transform: translateY(-3px);
	border-color: rgba(242, 177, 52, 0.35);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
}

.hegde-hero__proof-item .hegde-section-eyebrow {
	margin-bottom: 0.62rem;
	padding: 0.36rem 0.72rem;
	font-size: 0.7rem;
}

.hegde-hero__proof-item h3 {
	margin: 0 0 0.36rem;
	font-size: 1.18rem;
	line-height: 1.08;
}

.hegde-hero__proof-item p:last-child {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
}

.hegde-trust-band {
	margin-top: -2.8rem;
	position: relative;
	z-index: 2;
	padding: 1.45rem 1.6rem 1.8rem;
	border-radius: var(--hegde-radius);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: var(--hegde-shadow);
}

.hegde-metric-grid {
	gap: 0.85rem;
}

.hegde-metric-card {
	padding: 1.1rem 1.2rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(27, 42, 65, 0.08);
}

.hegde-home-section {
	position: relative;
	padding: 2.25rem 1.6rem;
	border-radius: var(--hegde-radius);
	border: 1px solid var(--hegde-line);
	box-shadow: var(--hegde-shadow);
	margin-top: 1rem;
	overflow: hidden;
}

.hegde-home-section::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: linear-gradient(90deg, var(--hegde-amber), rgba(242, 177, 52, 0));
}

.hegde-home-section--products,
.hegde-home-section--contact {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.65));
}

.hegde-home-section--about {
	background: linear-gradient(180deg, rgba(246, 241, 232, 0.98), rgba(255, 250, 244, 0.9));
}

.hegde-home-section--locations {
	background:
		radial-gradient(circle at top right, rgba(242, 177, 52, 0.18), transparent 24%),
		linear-gradient(180deg, #162438 0%, #223651 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

.hegde-home-section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	margin-bottom: 0.85rem;
}

.hegde-home-section p,
.hegde-home-section li {
	font-size: 0.99rem;
	line-height: 1.62;
}

.hegde-feature-grid {
	gap: 0.85rem;
	margin-top: 1rem;
}

.hegde-feature-card {
	height: 100%;
	padding: 1.1rem 1.15rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(27, 42, 65, 0.08);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.hegde-feature-card h3 {
	margin-bottom: 0.65rem;
}

.hegde-feature-card--dark {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.hegde-feature-card--dark p {
	color: rgba(255, 255, 255, 0.84);
}

.hegde-home-section ul {
	padding-left: 1.1rem;
}

.hegde-site-footer {
	padding-top: 1.25rem;
	padding-bottom: 2rem;
}

.hegde-site-footer p {
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
}

.hegde-footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 0.85rem;
}

.hegde-footer-legal-links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.hegde-footer-legal-links a:hover,
.hegde-footer-legal-links a:focus-visible {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

@media (min-width: 1200px) {
	.hegde-primary-navigation__list {
		flex-wrap: nowrap;
		gap: 0.55rem;
		justify-content: space-between;
	}

	.hegde-primary-navigation a {
		min-height: 2.2rem;
		padding: 0.58rem 0.8rem;
		font-size: 0.88rem;
		letter-spacing: 0.01em;
	}

	.hegde-site-header__nav-shell {
		padding: 0.45rem 0.5rem;
	}
}

@media (max-width: 900px) {
	.hegde-site-header {
		padding: 1rem 0 1.2rem;
		margin-bottom: 0.65rem;
		border-radius: 0 0 26px 26px;
	}

	.hegde-site-header__inner,
	.hegde-page-shell__inner {
		width: min(100vw - 28px, 1780px);
		margin-inline: auto;
	}

	.hegde-site-header__top {
		margin-bottom: 0.9rem;
	}

	.hegde-nav-toggle {
		display: inline-flex;
	}

	.hegde-site-header__nav-row {
		flex-wrap: wrap;
	}

	.hegde-site-header__nav-shell {
		flex: 1 1 100%;
		order: 3;
		width: 100%;
		max-height: 0;
		margin-top: 0;
		padding: 0;
		border-width: 0;
		border-radius: 22px;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition:
			max-height 260ms ease,
			opacity 200ms ease,
			padding 260ms ease,
			margin-top 260ms ease;
	}

	.hegde-site-header__nav-shell.is-open {
		max-height: 40rem;
		margin-top: 0.75rem;
		padding: 0.65rem;
		border-width: 1px;
		opacity: 1;
		pointer-events: auto;
	}

	.hegde-primary-navigation__list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.4rem;
	}

	.hegde-primary-navigation__list > li {
		width: 100%;
	}

	.hegde-primary-navigation a {
		width: 100%;
		justify-content: flex-start;
	}

	.hegde-cta-strip {
		justify-content: flex-start;
	}

	.hegde-page-shell {
		padding: 1rem 0 3rem;
	}

	.hegde-page-shell__inner {
		padding: 1.5rem 1rem 2.25rem;
		border-radius: 24px;
	}

	.hegde-page-content > p:first-child {
		font-size: 1.03rem;
	}

	.hegde-hero {
		margin-top: 0;
		border-radius: 26px;
	}

	.hegde-hero__shell {
		padding: 1.8rem 1rem 2rem;
	}

	.hegde-hero__body {
		width: 100%;
	}

	.hegde-hero__content h1 {
		max-width: 12ch;
		font-size: clamp(2.65rem, 14vw, 4rem);
	}

	.hegde-hero__proof {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin-top: 1.2rem;
	}

	.hegde-trust-band {
		margin-top: 1rem;
		padding: 1.5rem;
	}

	.hegde-home-section {
		padding: 2rem 1.25rem;
		border-radius: 24px;
	}
}

@media (max-width: 900px) and (min-width: 601px) {
	.hegde-hero__proof {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.hegde-site-header__brand {
		width: 100%;
	}

	.hegde-cta-strip {
		width: 100%;
		gap: 0.6rem;
	}

	.hegde-cta-strip .wp-element-button {
		flex: 1 1 auto;
		padding: 0.85rem 1rem;
		text-align: center;
	}

	.hegde-nav-toggle {
		width: 100%;
		justify-content: center;
	}

	.hegde-site-header__nav-row {
		width: 100%;
	}

	.hegde-hero__content h1 {
		font-size: clamp(2.1rem, 11vw, 2.9rem);
	}

	.hegde-hero__tags li {
		min-height: 2.4rem;
		padding: 0.42rem 0.75rem;
		font-size: 0.82rem;
	}

	.hegde-hero__proof-item {
		padding: 0.85rem 0.9rem 0.9rem;
	}
}
