@charset "utf-8";

/* RESET
--------------------------------------------------*/
:root {
	--header: 80px;
}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
@view-transition {
	navigation: auto;
}
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	overflow-x: hidden;
}


/* TEXTURES
--------------------------------------------------*/
.background-diamonds::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/g%3E%3C/svg%3E") repeat;
	pointer-events: none;
}
.background-peaks::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='60' viewBox='0 0 100 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,60 50,0 100,60' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E") repeat-x bottom;
	pointer-events: none;
}
.background-dots::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E") repeat;
}


/* BUTTONS
--------------------------------------------------*/
.wp-element-button {
	transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.wp-element-button:hover {
	filter: brightness(1.15);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.wp-element-button:focus-visible {
	outline: 2px solid var(--wp--preset--color--site-forest);
	outline-offset: 2px;
}
.wp-element-button:active {
	filter: brightness(1.05);
	transform: translateY(0);
	box-shadow: none;
}


/* NAVIGATION
--------------------------------------------------*/
.wp-site-blocks {
  /* padding-block-start: var(--header); */
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(180, 168, 140, 0.2);
	z-index: 1000;
  /* min-height: var(--header) !important; */
}
@media (max-width: 789px) {
}
	
@media (max-width: 599px) {
	.site-header .is-content-justification-space-between {
		flex-wrap: nowrap;
		justify-content: flex-end !important;
		gap: var(--wp--preset--spacing--08);
	}
	.site-header .wp-block-image {
		width: 100%;
	}
	.site-header .wp-block-navigation {
		order: 3;
		padding: 6px;
		border-radius: var(--wp--custom--radius--small);
		background-color: var(--wp--preset--color--site-white);
	}
	.site-header .wp-block-button__link {
		text-wrap: nowrap;
	}
	#modal-1 {
		height: 100dvh;
		color: var(--wp--preset--color--site-white);
		background-color: var(--wp--preset--color--site-charcoal);
	}
}

/* DETAILING
--------------------------------------------------*/

/* HOME */
.steps-container {
	gap: 0;
	position: relative;
}
.steps-container::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--wp--preset--color--site-mist) 20%, var(--wp--preset--color--site-mist) 80%, transparent);
}
@media (max-width: 960px) {
	.steps-container {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.steps-container::before {
		display: none;
	}
}
.step {
	text-align: center;
	padding: 0 12px;
	position: relative;
	z-index: 1;
}
.step-marker {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--wp--preset--color--site-white);
	border: 2px solid var(--wp--preset--color--site-mist);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-family: var(--wp--preset--font-family--serif);
	font-size: 1rem;
	color: var(--wp--preset--color--site-forest);
	transition: all var(--ease);
}
.step:hover .step-marker {
	background: var(--wp--preset--color--site-forest);
	border-color: var(--wp--preset--color--site-forest);
	color: var(--wp--preset--color--site-white);
}
.step h4 {
	font-size: 0.95rem;
	color: var(--wp--preset--color--site-forest);
	margin-bottom: 8px;
}
.step p {
	font-size: 0.8rem;
	color: var(--wp--preset--color--site-slate);
	line-height: 1.6;
	font-weight: 300;
}

/* SERVICES */
.pricing-pill {
	background: var(--wp--preset--color--site-forest);
	color: var(--wp--preset--color--site-white);
	border-color: var(--wp--preset--color--site-forest);
}
.pricing-pill > .is-style-paragraph-sublabel {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--site-gold);
	color: var(--wp--preset--color--site-charcoal);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 16px;
	border-radius: 30px;
	white-space: nowrap;
	font-family: var(--wp--preset--font-family--sans);
}

/* CONTACT */
.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.contact-icon img {
	display: inline !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
}
.site-footer a {
	color: rgba(255,255,255,0.4);
	transition: color var(--wp--custom--motion--default);
}
.site-footer a:hover {
	color: var(--wp--preset--color--site-mist);
}

/* SVGs
--------------------------------------------------*/

/* LOGO HEADER */
.nav-logo-wrap {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 12px;
}
.nav-logo-svg {
	width: 44px;
	height: 34px;
	flex-shrink: 0;
}
.nav-logo-text {
	font-family: var(--wp--preset--font-family--serif);
	color: var(--wp--preset--color--site-forest);
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	display: block;
	line-height: 1;
}
.nav-logo-sub {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--site-sage);
	display: block;
	margin-top: 3px;
	font-weight: 600;
}

/* NEUROARCHITECTURE METHOD */
.brand-peaks-display {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}
.peaks-svg {
	width: 100%;
	max-width: 380px;
	filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
	animation: floatPeak 7s ease-in-out infinite;
}
@media (max-width: 960px) {
	.peaks-svg {
		max-width: 280px;
	}
}
@keyframes floatPeak {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
.peak-label {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}
.peak-label span:first-child {
	font-family: var(--wp--preset--font-family--serif);
	font-size: 0.72rem;
	color: var(--wp--preset--color--site-gold);
	letter-spacing: 0.1em;
}
.peak-label span:last-child {
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
	font-family: var(--wp--preset--font-family--sans);
}
.pl-diamond {
	top: 2%;
	left: 50%;
	transform: translateX(-50%);
}
.pl-left {
	top: 38%;
	left: 2%;
}
.pl-right {
	top: 38%;
	right: 0%;
}
.pl-base-left {
	bottom: 4%;
	left: 14%;
}
.pl-base-right {
	bottom: 4%;
	right: 8%;
}


/* ANIMATIONS
--------------------------------------------------*/
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.animate-fade-up {
	animation: fadeUp 0.8s ease both;
}
.animate-delay {
	animation-delay: 0.15s;
}


/* FORMS
--------------------------------------------------*/
label {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--site-stone);
	font-weight: 500;
	margin-bottom: 8px;
	font-family: var(--wp--preset--font-family--sans);
}
input[type=text], input[type=email], textarea, select {
	width: 100%;
	padding: 13px 18px;
	border: 1.5px solid rgba(140, 150, 140, 0.25);
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.9rem;
	color: var(--wp--preset--color--site-charcoal);
	background: var(--wp--preset--color--site-white);
	transition: border-color var(--ease), box-shadow var(--ease);
	outline: none;
	appearance: none;
}
input:focus, textarea:focus, select:focus {
	border-color: var(--wp--preset--color--site-forest);
	box-shadow: 0 0 0 3px rgba(44, 74, 53, 0.1);
}
textarea {
	resize: vertical;
	min-height: 110px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-submit {
	background: var(--wp--preset--color--site-forest);
	color: var(--wp--preset--color--site-white);
	border: none;
	border-radius: 4px;
	padding: 15px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--ease);
	width: 100%;
	margin-top: 6px;
}
.form-submit:hover {
	background: var(--wp--preset--color--site-pine);
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(44, 74, 53, 0.25);
}
@media (max-width: 960px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}