body.mobile-menu-open {
	overflow: hidden;
}

/* Site header — fixed positioning + scroll / menu states */
.site-header {
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

/* WordPress admin bar offset */
body.admin-bar .site-header--fixed {
	top: 32px;
}

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

.site-header--default {
	background-color: color-mix(in oklch, var(--background) 95%, transparent);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.site-header--hero {
	background-color: transparent;
	border-bottom: 1px solid transparent;
}

.site-header--hero.is-scrolled,
.site-header--hero.is-open {
	background-color: #fff;
	border-bottom-color: var(--border);
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}

.site-header-spacer {
	height: 5.25rem;
}

.site-header__logo--dark {
	display: none;
}

.site-header--hero.is-scrolled .site-header__logo--light,
.site-header--hero.is-open .site-header__logo--light {
	display: none;
}

.site-header--hero.is-scrolled .site-header__logo--dark,
.site-header--hero.is-open .site-header__logo--dark {
	display: block;
}

.site-header--hero.is-scrolled .site-header__toggle,
.site-header--hero.is-open .site-header__toggle {
	color: var(--foreground);
}

.site-header--hero.is-scrolled .site-header__desktop-nav a,
.site-header--hero.is-open .site-header__desktop-nav a {
	color: var(--muted-foreground);
}

.site-header--hero.is-scrolled .site-header__desktop-nav a:hover,
.site-header--hero.is-open .site-header__desktop-nav a:hover {
	color: var(--foreground);
}

/* Hamburger */
.site-header__toggle {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
}

.site-header__bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 1.5rem;
	height: 1.5rem;
}

.site-header__bar {
	display: block;
	width: 1.5rem;
	height: 2px;
	background-color: currentColor;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
	transform-origin: center;
}

.site-header.is-open .site-header__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.site-header.is-open .site-header__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.site-header__mobile-menu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
	padding-top: 0;
	padding-bottom: 0;
}

.site-header__mobile-menu--dark {
	border-top: 1px solid transparent;
	background-color: var(--background);
}

.site-header__mobile-menu--light {
	border-top: 1px solid rgb(255 255 255 / 0.15);
	background-color: rgb(0 0 0 / 0.9);
}

.site-header.is-open .site-header__mobile-menu {
	max-height: 32rem;
	opacity: 1;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-header--hero.is-open .site-header__mobile-menu--light {
	background-color: #fff;
	border-top-color: var(--border);
}

.site-header--hero.is-open .site-header__mobile-menu--light a {
	color: var(--muted-foreground) !important;
}

.site-header--hero.is-open .site-header__mobile-menu--light a:hover {
	color: var(--foreground) !important;
}

.site-header__mobile-menu .menu-item {
	animation: menu-item-in 0.35s ease both;
}

.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(1) { animation-delay: 0.05s; }
.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(2) { animation-delay: 0.1s; }
.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(3) { animation-delay: 0.15s; }
.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(4) { animation-delay: 0.2s; }
.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(5) { animation-delay: 0.25s; }
.site-header.is-open .site-header__mobile-menu .menu-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes menu-item-in {
	from {
		opacity: 0;
		transform: translateY(-0.5rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scroll reveal */
.scroll-reveal {
	opacity: 0;
	transform: translateY(1.25rem);
	transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal--soft {
	transform: translateY(0.75rem);
	transition-duration: 0.5s;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Hero load-in (above the fold) */
.hero-reveal {
	opacity: 0;
	transform: translateY(1rem);
	animation: hero-reveal-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes hero-reveal-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal,
	.scroll-reveal--soft,
	.hero-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}
}

/* Homepage contact form — reset inherited white text from #contact */
#contact .home-contact-form {
	--gf-color-primary: var(--primary);
	--gf-color-in-primary: var(--primary-foreground);
	--gf-color-label: var(--foreground);
	--gf-color-text: var(--foreground);
	--gf-ctrl-label-color-primary: var(--foreground);
	--gf-ctrl-label-color-secondary: var(--muted-foreground);
	--gf-ctrl-border-color: var(--border);
	--gf-ctrl-border-color-focus: var(--primary);
	background: #fff;
	color: var(--foreground);
	padding: 2rem;
	border-radius: 0.125rem;
	box-shadow: 0 8px 32px rgb(0 0 0 / 0.25);
	text-align: left;
}

#contact .home-contact-form .gform_wrapper,
#contact .home-contact-form .gform_body,
#contact .home-contact-form .gform_fields,
#contact .home-contact-form .gfield {
	color: var(--foreground);
}

#contact .home-contact-form .gform_wrapper {
	margin: 0;
	max-width: none;
}

#contact .home-contact-form .gform_heading {
	margin-bottom: 1.5rem;
}

#contact .home-contact-form .gform_title {
	color: var(--foreground) !important;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

#contact .home-contact-form .gform_description,
#contact .home-contact-form .gform_required_legend {
	color: var(--muted-foreground) !important;
	font-size: 0.875rem;
	margin: 0;
}

#contact .home-contact-form .gfield_label,
#contact .home-contact-form .gform-field-label,
#contact .home-contact-form label,
#contact .home-contact-form legend,
#contact .home-contact-form .gfield_label_before_complex {
	color: var(--foreground) !important;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
	display: block;
}

#contact .home-contact-form .gfield_required,
#contact .home-contact-form .gfield_required_text {
	color: #dc2626 !important;
}

#contact .home-contact-form .gform_fields {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
}

#contact .home-contact-form .gfield {
	margin: 0;
	width: 100%;
}

#contact .home-contact-form .gfield--width-half {
	width: calc(50% - 0.625rem);
}

@media (max-width: 640px) {
	#contact .home-contact-form .gfield--width-half {
		width: 100%;
	}
}

#contact .home-contact-form input:not([type='submit']):not([type='button']):not([type='hidden']):not([type='checkbox']):not([type='radio']),
#contact .home-contact-form textarea,
#contact .home-contact-form select {
	width: 100%;
	background: #fff !important;
	color: var(--foreground) !important;
	border: 1px solid var(--border) !important;
	border-radius: 0.125rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact .home-contact-form input:focus,
#contact .home-contact-form textarea:focus,
#contact .home-contact-form select:focus {
	outline: none;
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary) 25%, transparent);
}

#contact .home-contact-form input::placeholder,
#contact .home-contact-form textarea::placeholder {
	color: var(--muted-foreground);
	opacity: 1;
}

#contact .home-contact-form .gform_footer {
	margin-top: 1.5rem;
	padding: 0;
}

#contact .home-contact-form .gform_button,
#contact .home-contact-form input[type='submit'],
#contact .home-contact-form button[type='submit'] {
	background-color: var(--primary) !important;
	color: var(--primary-foreground) !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
	padding: 0.875rem 2rem;
	border: 0 !important;
	border-radius: 0.125rem;
	cursor: pointer;
	width: auto;
	transition: opacity 0.2s ease;
}

#contact .home-contact-form .gform_button:hover,
#contact .home-contact-form input[type='submit']:hover,
#contact .home-contact-form button[type='submit']:hover {
	opacity: 0.9;
}

#contact .home-contact-form .validation_message,
#contact .home-contact-form .gfield_validation_message {
	color: #dc2626 !important;
	font-size: 0.8125rem;
	margin-top: 0.375rem;
}

#contact .home-contact-form .gfield_error input,
#contact .home-contact-form .gfield_error textarea,
#contact .home-contact-form .gfield_error select {
	border-color: #dc2626 !important;
}
.home-contact-form.mt-10.max-w-2xl.mx-auto.text-left {
    background: #e8eef2;
    padding: 7%;
    border-radius: 20px;
}
.home-contact-form .gform_heading {
    display: none;
}
.home-contact-form label.gfield_label.gform-field-label {
    font-size: 17px;
}