:root {
	--feniks-purple: #45374f;
	--feniks-dark: #332a3d;
	--feniks-gold: #bb9c5e;
	--feniks-gold-light: #d7bd84;
	--feniks-text: #5f5866;
	--feniks-muted: #7a747f;
	--feniks-tint: #f8f5f0;
	--feniks-border: #e7e0d6;
	--feniks-white: #fff;
	--feniks-shell: 1192px;
	--feniks-serif: "Cormorant Garamond", Georgia, serif;
	--feniks-sans: "Mulish", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.feniks-site {
	margin: 0;
	background: #fff;
	color: var(--feniks-text);
	font-family: var(--feniks-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

.skip-link:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	overflow: visible;
	clip: auto;
	clip-path: none;
	background: #fff;
	color: var(--feniks-dark);
	white-space: normal;
}

.feniks-site img {
	max-width: 100%;
	height: auto;
}

.feniks-site a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.feniks-site h1,
.feniks-site h2,
.feniks-site h3 {
	color: var(--feniks-dark);
	font-family: var(--feniks-serif);
	line-height: 1.1;
	text-wrap: pretty;
}

.feniks-site h1 {
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	font-weight: 500;
}

.feniks-site h2 {
	font-size: clamp(2rem, 4vw, 2.65rem);
	font-weight: 500;
}

.feniks-site h3 {
	font-size: 1.45rem;
	font-weight: 600;
}

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

.feniks-shell--narrow {
	max-width: 850px;
}

.feniks-shell--faq {
	max-width: 840px;
}

.feniks-shell--content {
	max-width: 860px;
}

.feniks-topbar {
	padding: 8px 24px;
	background: var(--feniks-purple);
	color: #efe7da;
	font-size: .84rem;
	font-weight: 500;
	text-align: center;
}

.feniks-topbar a {
	color: var(--feniks-gold-light);
	font-weight: 700;
}

.feniks-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: #fff;
	box-shadow: 0 1px 0 rgba(69, 55, 79, .08);
}

.feniks-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: clamp(20px, 3vw, 44px);
	width: min(1320px, calc(100% - 48px));
	min-height: 98px;
	margin-inline: auto;
}

.feniks-brand {
	display: block;
	justify-self: start;
	line-height: 0;
}

.feniks-brand img {
	display: block;
	width: auto;
	height: 58px;
}

.feniks-nav {
	justify-self: center;
}

.feniks-header__cta {
	justify-self: end;
}

.feniks-menu,
.feniks-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.feniks-menu {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.1vw, 32px);
	color: #5a5360;
	font-size: .87rem;
	font-weight: 600;
}

.feniks-menu > li {
	position: relative;
}

.feniks-menu > li > a {
	display: inline-flex;
	align-items: center;
	padding: 38px 0;
}

.feniks-menu .current-menu-item > a,
.feniks-menu .current-menu-ancestor > a,
.feniks-menu a:hover {
	color: var(--feniks-purple);
}

.feniks-menu .menu-item-has-children > a::after {
	width: 8px;
	height: 8px;
	margin: -4px 0 0 9px;
	transform: rotate(45deg);
	border-right: 1.5px solid var(--feniks-gold);
	border-bottom: 1.5px solid var(--feniks-gold);
	content: "";
}

.feniks-menu .sub-menu {
	position: absolute;
	top: calc(100% - 13px);
	left: 50%;
	width: 280px;
	padding: 15px 0;
	visibility: hidden;
	transform: translate(-50%, 9px);
	border: 1px solid var(--feniks-border);
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(51, 42, 61, .12);
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.feniks-menu li:hover > .sub-menu,
.feniks-menu li:focus-within > .sub-menu {
	visibility: visible;
	transform: translate(-50%, 0);
	opacity: 1;
}

.feniks-menu .sub-menu a {
	display: block;
	padding: 10px 22px;
	font-size: .82rem;
	font-weight: 500;
	line-height: 1.35;
}

.admin-bar .feniks-header {
	top: 32px;
}

.feniks-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
}

.feniks-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 1px;
	margin: 5px auto;
	background: var(--feniks-dark);
}

.feniks-button {
	display: inline-block;
	padding: 15px 31px;
	border: 1px solid var(--feniks-purple);
	border-radius: 2px;
	background: var(--feniks-purple);
	color: #fff !important;
	font-family: var(--feniks-sans);
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.feniks-button:hover {
	border-color: var(--feniks-gold);
	background: var(--feniks-gold);
	color: var(--feniks-dark) !important;
}

.feniks-button--small {
	padding: 10px 19px;
	font-size: .84rem;
	white-space: nowrap;
}

.feniks-button--outline {
	border-color: #d8cbb2;
	background: transparent;
	color: var(--feniks-purple) !important;
}

.feniks-button--outline:hover {
	background: transparent;
}

.feniks-button--gold {
	border-color: var(--feniks-gold);
	background: var(--feniks-gold);
	color: var(--feniks-dark) !important;
}

.feniks-button--gold:hover {
	border-color: var(--feniks-gold-light);
	background: var(--feniks-gold-light);
}

.feniks-button--light {
	border-color: rgba(215, 189, 132, .5);
	background: transparent;
	color: #efe7da !important;
}

.feniks-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 26px;
}

.feniks-buttons--center {
	justify-content: center;
}

.feniks-kicker {
	margin-bottom: 12px;
	color: var(--feniks-gold);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.feniks-hero {
	padding: clamp(56px, 8vw, 96px) 24px 70px;
}

.feniks-hero--compact {
	padding-block: clamp(52px, 7vw, 80px);
}

.feniks-hero--center {
	text-align: center;
}

.feniks-hero h1 {
	max-width: 880px;
	margin: 0 auto 25px;
}

.feniks-hero p {
	max-width: 680px;
	margin: 0 auto;
	color: #6a636e;
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 1.7;
}

.feniks-title-rule {
	display: block;
	width: 48px;
	height: 2px;
	margin: 33px auto 0;
	background: var(--feniks-gold);
}

.feniks-wide-image {
	display: block;
	width: 100%;
	object-fit: cover;
}

.feniks-wide-image--hero {
	height: clamp(320px, 40vw, 500px);
}

.feniks-wide-image--between {
	height: clamp(260px, 28vw, 400px);
}

.feniks-section {
	padding: clamp(58px, 8vw, 86px) 0;
}

.feniks-section--tint {
	background: var(--feniks-tint);
}

.feniks-section--center {
	text-align: center;
}

.feniks-section h2 {
	margin: 0 0 16px;
}

.feniks-lead {
	color: var(--feniks-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.feniks-section-heading {
	max-width: 680px;
	margin: 0 auto 48px;
	text-align: center;
}

.feniks-section-heading h2 {
	margin: 0 0 13px;
}

.feniks-section-heading p {
	margin: 0 auto;
	color: var(--feniks-muted);
}

.feniks-form-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(32px, 5vw, 64px);
	max-width: 820px;
	margin: 48px auto 0;
	text-align: left;
}

.feniks-form-card {
	padding-top: 21px;
	border-top: 2px solid var(--feniks-purple);
}

.feniks-form-card--gold {
	border-color: var(--feniks-gold);
}

.feniks-form-card h3 {
	margin: 0 0 8px;
	font-size: 1.65rem;
}

.feniks-form-card p {
	margin: 0;
	color: var(--feniks-muted);
	font-size: .94rem;
}

.feniks-form-card a {
	border-bottom: 1px solid var(--feniks-gold);
}

.feniks-services-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 17px;
}

.feniks-service-card {
	display: flex;
	flex-direction: column;
	min-height: 275px;
	padding: 27px 24px 21px;
	border: 1px solid #efe8dc;
	border-radius: 3px;
	background: #fff;
}

.feniks-service-card:hover {
	border-color: #e2d5bb;
	box-shadow: 0 12px 30px rgba(60, 48, 69, .09);
}

.feniks-service-card--static:hover {
	border-color: #efe8dc;
	box-shadow: none;
}

.feniks-service-card__icon {
	margin-bottom: 16px;
	color: var(--feniks-gold);
	line-height: 0;
}

.feniks-service-card h3 {
	margin: 0 0 9px;
	font-size: 1.26rem;
	line-height: 1.28;
}

.feniks-service-card p {
	margin: 0 0 18px;
	color: #847e89;
	font-size: .84rem;
	line-height: 1.65;
}

.feniks-service-card__more {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f3ede3;
	color: var(--feniks-purple);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.feniks-service-card__more b {
	color: var(--feniks-gold);
}

.feniks-about,
.feniks-contact-cta,
.feniks-rich-section {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(38px, 6vw, 72px);
}

.feniks-about h2,
.feniks-contact-cta h2 {
	margin: 0 0 21px;
}

.feniks-about p,
.feniks-contact-cta p {
	color: var(--feniks-text);
}

.feniks-about img,
.feniks-contact-cta img {
	width: 100%;
	height: clamp(380px, 40vw, 480px);
	border-radius: 3px;
	object-fit: cover;
}

.feniks-contact-cta img {
	object-position: center 15%;
}

.feniks-text-link {
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 2px solid var(--feniks-gold);
	color: var(--feniks-purple);
	font-size: .87rem;
	font-weight: 600;
}

.feniks-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: clamp(48px, 7vw, 78px);
	border-top: 1px solid var(--feniks-border);
}

.feniks-values article {
	padding: 38px 35px 0;
}

.feniks-values article:first-child {
	padding-left: 0;
}

.feniks-values article + article {
	border-left: 1px solid var(--feniks-border);
}

.feniks-values h3 {
	margin: 0 0 9px;
}

.feniks-values p {
	margin: 0;
	color: var(--feniks-muted);
	font-size: .9rem;
}

.feniks-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.feniks-steps::before {
	position: absolute;
	top: 12px;
	right: 9%;
	left: 9%;
	height: 1px;
	background: #dcccab;
	content: "";
}

.feniks-steps article {
	position: relative;
	text-align: center;
}

.feniks-step-dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	margin: 0 auto 22px;
	border: 1px solid #dcccab;
	border-radius: 50%;
	background: var(--feniks-tint);
}

.feniks-step-dot i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--feniks-gold);
}

.feniks-steps h3 {
	margin: 0 0 6px;
	font-family: var(--feniks-sans);
	font-size: .9rem;
	font-weight: 700;
}

.feniks-steps p {
	max-width: 190px;
	margin: 0 auto;
	color: #847e89;
	font-size: .8rem;
	line-height: 1.6;
}

.feniks-quote {
	min-height: clamp(360px, 40vw, 460px);
	background-position: center;
	background-size: cover;
}

.feniks-quote > div {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	padding: 50px 24px;
	background: linear-gradient(180deg, rgba(60, 48, 69, .72), rgba(51, 42, 61, .84));
}

.feniks-quote blockquote {
	max-width: 800px;
	margin: 0;
	color: #fff;
	font-family: var(--feniks-serif);
	font-size: clamp(2rem, 4.5vw, 2.7rem);
	font-style: italic;
	line-height: 1.3;
	text-align: center;
}

.feniks-reviews {
	overflow: hidden;
	padding: 70px 0;
}

.feniks-reviews .feniks-section-heading {
	margin-bottom: 36px;
}

.feniks-reviews__track {
	display: flex;
	gap: 0;
	width: max-content;
	padding: 0;
	animation: feniks-marquee 46s linear infinite;
}

.feniks-reviews__group {
	display: flex;
	flex: none;
	gap: 24px;
	padding-right: 24px;
}

.feniks-reviews article {
	flex: 0 0 360px;
	width: 360px;
	padding: 27px;
	border: 1px solid #ece4d6;
	border-radius: 4px;
}

.feniks-reviews article p {
	color: var(--feniks-text);
	font-size: .94rem;
	line-height: 1.6;
}

.feniks-reviews article strong {
	color: var(--feniks-dark);
	font-size: .86rem;
}

.feniks-stars {
	color: var(--feniks-gold-light);
	letter-spacing: 2px;
}

@keyframes feniks-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.feniks-faq {
	border-top: 1px solid #ece4d6;
}

.feniks-faq details {
	border-bottom: 1px solid #ece4d6;
}

.feniks-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 21px 2px;
	color: var(--feniks-dark);
	font-family: var(--feniks-serif);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.feniks-faq summary::-webkit-details-marker {
	display: none;
}

.feniks-faq summary span {
	color: var(--feniks-gold);
	transition: transform .2s ease;
}

.feniks-faq details[open] summary span {
	transform: rotate(180deg);
}

.feniks-faq details p {
	margin: 0;
	padding: 0 48px 24px 2px;
	color: #6a636e;
	font-size: .96rem;
	line-height: 1.75;
}

.feniks-page-hero,
.feniks-service-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
	align-items: stretch;
	min-height: 570px;
	background: #fff;
}

.feniks-page-hero__content,
.feniks-service-hero__content {
	align-self: center;
	max-width: 720px;
	padding: clamp(60px, 8vw, 110px) clamp(24px, 7vw, 100px);
}

.feniks-page-hero h1,
.feniks-service-hero h1 {
	margin: 0 0 22px;
	font-size: clamp(2.6rem, 5vw, 3.8rem);
}

.feniks-page-hero p,
.feniks-service-hero p {
	max-width: 620px;
	color: #6a636e;
	font-size: 1.07rem;
}

.feniks-page-hero > img,
.feniks-service-hero > img {
	width: 100%;
	height: 100%;
	min-height: 570px;
	object-fit: cover;
}

.feniks-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
	color: #9b94a0;
	font-size: .78rem;
}

.feniks-breadcrumbs a:hover {
	color: var(--feniks-gold);
}

.feniks-service-hero {
	grid-template-columns: repeat(2, minmax(360px, 1fr));
	min-height: 0;
	border-top: 1px solid #f0eae0;
}

.feniks-service-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	padding: clamp(44px, 5.5vw, 86px) clamp(24px, 4vw, 64px) clamp(44px, 5.5vw, 86px) clamp(24px, 5vw, 72px);
}

.feniks-service-hero h1 {
	margin-bottom: 22px;
	font-size: clamp(2.4rem, 4.6vw, 3.65rem);
	line-height: 1.06;
}

.feniks-service-hero p {
	max-width: 520px;
	margin: 0 0 31px;
	font-size: 1.08rem;
	line-height: 1.7;
}

.feniks-service-hero .feniks-buttons {
	margin-top: 0;
}

.feniks-service-hero > img {
	min-height: clamp(340px, 44vw, 620px);
}

@media (min-width: 821px) {
	.feniks-service-hero {
		height: 100vh;
		min-height: 100vh;
		max-height: 100vh;
	}

	.feniks-service-hero__content {
		align-self: stretch;
		justify-content: center;
		height: 100%;
		min-height: 0;
	}

	.feniks-service-hero > img {
		height: 100%;
		min-height: 0;
	}
}

.feniks-service-content {
	padding: clamp(56px, 8vw, 88px) 0;
	background: #faf7f2;
}

.feniks-service-content__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(300px, 1fr));
	align-items: center;
	gap: clamp(36px, 5vw, 64px);
	max-width: 1180px;
}

.feniks-service-content__grid > img {
	width: 100%;
	height: clamp(280px, 30vw, 380px);
	border-radius: 3px;
	object-fit: cover;
}

.feniks-title-rule--left {
	width: 40px;
	margin: 0 0 24px;
}

.feniks-service-content h2 {
	margin: 0 0 21px;
}

.feniks-service-content .feniks-prose p {
	margin: 0 0 17px;
	font-size: 1.02rem;
	line-height: 1.8;
}

.feniks-service-content .feniks-prose p:last-child {
	margin-bottom: 0;
}

.feniks-shell--service-options {
	max-width: 1000px;
}

.feniks-service-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: clamp(28px, 4vw, 56px);
}

.feniks-service-options article {
	text-align: center;
}

.feniks-service-option-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 21px;
	border: 1px solid #dcccab;
	border-radius: 50%;
	color: var(--feniks-gold);
}

.feniks-service-options h3 {
	margin: 0 0 11px;
	font-size: 1.65rem;
}

.feniks-service-options p {
	max-width: 340px;
	margin: 0 auto;
	color: var(--feniks-muted);
	font-size: .96rem;
	line-height: 1.7;
}

.feniks-service-banner {
	padding: clamp(44px, 6vw, 72px) 0;
	background: var(--feniks-purple);
	color: #efe7da;
}

.feniks-service-banner__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(300px, 1fr));
	align-items: center;
	gap: clamp(30px, 4vw, 56px);
	max-width: 1120px;
}

.feniks-service-banner h2 {
	margin: 0 0 11px;
	color: #fff;
	font-size: clamp(1.8rem, 3.6vw, 2.25rem);
}

.feniks-service-banner p {
	max-width: 440px;
	margin: 0;
	color: #cdc2d2;
}

.feniks-service-banner .feniks-buttons {
	justify-self: start;
	margin-top: 0;
}

.feniks-rich-section {
	align-items: start;
}

.feniks-rich-section h2 {
	max-width: 500px;
}

.feniks-prose {
	color: var(--feniks-text);
}

.feniks-prose > *:first-child {
	margin-top: 0;
}

.feniks-prose > *:last-child {
	margin-bottom: 0;
}

.feniks-prose h2,
.feniks-prose h3 {
	margin-top: 1.6em;
}

.feniks-prose a {
	color: var(--feniks-purple);
	border-bottom: 1px solid var(--feniks-gold);
}

.feniks-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 900px;
	margin-inline: auto;
}

.feniks-choice-grid article {
	padding: 34px;
	border-top: 2px solid var(--feniks-gold);
	background: #fff;
}

.feniks-choice-grid h3 {
	margin: 0 0 10px;
	font-size: 1.65rem;
}

.feniks-choice-grid p {
	margin: 0;
	color: var(--feniks-muted);
}

.feniks-simple-cta {
	padding: clamp(58px, 8vw, 90px) 24px;
	background: var(--feniks-dark);
	color: #efe7da;
	text-align: center;
}

.feniks-simple-cta h2 {
	margin: 0 0 12px;
	color: #fff;
}

.feniks-simple-cta p {
	max-width: 650px;
	margin: 0 auto 27px;
	color: #d3c8d7;
}

.feniks-related-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.feniks-related-heading h2 {
	margin: 0;
}

.feniks-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
}

.feniks-related-grid a,
.feniks-related-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 95px;
	padding: 22px;
	border: 1px solid #ece4d6;
	background: #fff;
	color: var(--feniks-dark);
	font-family: var(--feniks-serif);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
}

.feniks-related-grid a:hover {
	border-color: #dcccab;
	box-shadow: 0 10px 26px rgba(60, 48, 69, .07);
}

.feniks-related-card {
	min-height: 78px;
	color: var(--feniks-dark);
}

.feniks-related-grid b {
	color: var(--feniks-gold);
}

.feniks-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
	gap: clamp(35px, 7vw, 90px);
}

.feniks-contact-details article {
	padding: 30px 0;
	border-bottom: 1px solid var(--feniks-border);
}

.feniks-contact-details article:first-child {
	padding-top: 0;
}

.feniks-contact-details__phone {
	display: block;
	margin-bottom: 8px;
	color: var(--feniks-dark);
	font-family: var(--feniks-serif);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
}

.feniks-contact-details__email {
	color: var(--feniks-dark);
	font-weight: 600;
}

.feniks-contact-details p {
	color: var(--feniks-muted);
}

.feniks-contact-form {
	padding: clamp(26px, 4vw, 44px);
	border: 1px solid #ece4d6;
	background: #fff;
}

.feniks-contact-form h2 {
	margin: 0 0 8px;
}

.feniks-contact-form > p {
	margin-top: 0;
	color: var(--feniks-muted);
}

.feniks-contact-form .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 17px;
	grid-column-gap: 15px;
}

.feniks-contact-form .gform_wrapper.gravity-theme .gfield_label {
	display: block;
	margin: 0 0 6px;
	color: var(--feniks-dark);
	font-size: .82rem;
	font-weight: 700;
}

.feniks-contact-form .gform_wrapper.gravity-theme .gfield_required {
	color: var(--feniks-gold);
}

.feniks-contact-form .gform_wrapper.gravity-theme input[type="text"],
.feniks-contact-form .gform_wrapper.gravity-theme input[type="email"],
.feniks-contact-form .gform_wrapper.gravity-theme input[type="tel"],
.feniks-contact-form .gform_wrapper.gravity-theme textarea {
	display: block;
	width: 100%;
	padding: 12px 13px;
	border: 1px solid #dcd3c6;
	border-radius: 1px;
	background: #fff;
	color: var(--feniks-dark);
	font: 400 .95rem var(--feniks-sans);
}

.feniks-contact-form .gform_wrapper.gravity-theme input:focus,
.feniks-contact-form .gform_wrapper.gravity-theme textarea:focus {
	border-color: var(--feniks-gold);
	outline: 2px solid rgba(187, 156, 94, .16);
}

.feniks-contact-form .gform_wrapper.gravity-theme .gform_footer {
	margin: 22px 0 0;
	padding: 0;
}

.feniks-contact-form .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
	width: auto;
	margin: 0;
	padding: 13px 23px;
	border: 1px solid var(--feniks-purple);
	background: var(--feniks-purple);
	color: #fff;
	font-size: .84rem;
	font-weight: 700;
	cursor: pointer;
}

.feniks-contact-form .gform_wrapper.gravity-theme .gform_validation_errors {
	margin-bottom: 20px;
	border: 0;
	border-radius: 0;
	background: #f8eaea;
	box-shadow: none;
}

.feniks-contact-form .gform_wrapper.gravity-theme .gfield_validation_message {
	border: 0;
	background: #f8eaea;
	font-size: .8rem;
}

.feniks-form-message {
	margin: 18px 0;
	padding: 12px 15px;
	font-size: .9rem;
}

.feniks-form-message--success {
	background: #edf6ef;
	color: #285f35;
}

.feniks-form-message--error {
	background: #f8eaea;
	color: #7a2a2a;
}

.feniks-footer {
	padding: 54px 0 30px;
	background: var(--feniks-dark);
	color: #cdc2d2;
}

.feniks-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr .9fr .9fr;
	gap: 40px;
	padding-bottom: 38px;
	border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.feniks-footer h2 {
	margin: 0 0 14px;
	color: var(--feniks-gold-light);
	font-family: var(--feniks-sans);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.feniks-footer p {
	margin: 0;
	font-size: .88rem;
}

.feniks-footer a:hover {
	color: var(--feniks-gold-light);
}

.feniks-footer__logo {
	display: block;
	color: #fff;
	font-family: var(--feniks-serif);
	font-size: 2.15rem;
	font-weight: 600;
	line-height: 1;
}

.feniks-footer__sub {
	display: block;
	margin-bottom: 17px;
	color: var(--feniks-gold-light);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .34em;
	text-transform: uppercase;
}

.feniks-footer__brand p {
	max-width: 340px;
}

.feniks-footer__brand p a {
	color: var(--feniks-gold-light);
}

.feniks-footer__phone {
	margin-bottom: 5px !important;
	color: #fff;
	font-size: 1.15rem !important;
	font-weight: 600;
}

.feniks-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .88rem;
}

.feniks-footer-menu li {
	margin-bottom: 6px;
}

.feniks-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px;
	color: #9c90a6;
	font-size: .78rem;
}

@media (max-width: 1100px) {
	.feniks-services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feniks-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.feniks-menu-toggle {
		display: block;
		justify-self: end;
	}

	.feniks-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 12px 24px 24px;
		border-top: 1px solid var(--feniks-border);
		background: #fff;
		box-shadow: 0 18px 40px rgba(51, 42, 61, .1);
	}

	.feniks-nav.is-open {
		display: block;
	}

	.feniks-menu {
		display: block;
	}

	.feniks-menu > li > a {
		padding: 10px 0;
	}

	.feniks-menu .sub-menu {
		position: static;
		width: auto;
		padding: 0 0 7px 15px;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		opacity: 1;
	}

	.feniks-menu .sub-menu a {
		padding: 6px 0;
	}

	.feniks-menu .menu-item-has-children > a::after {
		margin-top: -3px;
	}
}

@media (max-width: 820px) {
	.feniks-shell {
		width: min(var(--feniks-shell), calc(100% - 36px));
	}

	.feniks-header__cta {
		display: none;
	}

	.feniks-header__inner {
		grid-template-columns: auto 1fr;
	}

	.feniks-page-hero,
	.feniks-service-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.feniks-page-hero__content,
	.feniks-service-hero__content {
		padding: 55px 24px;
	}

	.feniks-page-hero > img,
	.feniks-service-hero > img {
		min-height: 0;
		height: 360px;
	}

	.feniks-service-content__grid,
	.feniks-service-options,
	.feniks-service-banner__grid {
		grid-template-columns: 1fr;
	}

	.feniks-service-content__grid > img {
		height: 340px;
	}

	.feniks-service-banner .feniks-buttons {
		justify-self: stretch;
	}

	.feniks-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feniks-about,
	.feniks-contact-cta,
	.feniks-rich-section,
	.feniks-contact-grid {
		grid-template-columns: 1fr;
	}

	.feniks-about img {
		order: -1;
	}

	.feniks-values {
		grid-template-columns: 1fr;
	}

	.feniks-values article,
	.feniks-values article:first-child {
		padding: 27px 0;
	}

	.feniks-values article + article {
		border-top: 1px solid var(--feniks-border);
		border-left: 0;
	}

	.feniks-steps {
		grid-template-columns: 1fr;
		gap: 27px;
	}

	.feniks-steps::before {
		display: none;
	}

	.feniks-step-dot {
		margin-bottom: 12px;
	}

	.feniks-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feniks-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.feniks-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.feniks-topbar {
		padding-inline: 14px;
		font-size: .74rem;
		line-height: 1.45;
	}

	.feniks-topbar span:last-child {
		display: none;
	}

	.feniks-header__inner {
		grid-template-columns: auto 1fr auto;
		width: calc(100% - 30px);
		min-height: 80px;
	}

	.feniks-brand img {
		height: 47px;
	}

	.feniks-header__cta {
		display: none;
	}

	.feniks-hero {
		padding-inline: 18px;
	}

	.feniks-hero h1 {
		font-size: clamp(2.45rem, 13vw, 3.5rem);
	}

	.feniks-form-cards,
	.feniks-services-grid,
	.feniks-choice-grid,
	.feniks-related-grid,
	.feniks-form-row {
		grid-template-columns: 1fr;
	}

	.feniks-service-card {
		min-height: 0;
	}

	.feniks-related-heading,
	.feniks-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.feniks-footer__grid {
		grid-template-columns: 1fr;
	}

	.feniks-footer__brand {
		grid-column: auto;
	}

	.feniks-reviews article {
		flex-basis: 310px;
		width: 310px;
	}

	.feniks-faq summary {
		font-size: 1.2rem;
	}

	.feniks-faq details p {
		padding-right: 6px;
	}
}

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

	.feniks-reviews__track {
		animation: none;
	}
}
