/* -------------------- Contact page -------------------- */
.np-contact {
	--np-contact-cream: #fbf8f3;
	--np-contact-beige: #efe4d7;
	--np-contact-nude: #dec6b7;
	--np-contact-blush: #f9e4ec;
	--np-contact-ink: #111111;
	--np-contact-shadow: 0 24px 70px rgba(37, 24, 22, .12);
	background: #fff;
	color: var(--np-text);
	font-family: 'Poppins', 'Montserrat', var(--np-font-body);
	overflow: hidden;
}

.np-contact h1,
.np-contact h2,
.np-contact h3,
.np-contact-quote p {
	font-family: var(--np-font-display);
	font-weight: 500;
	letter-spacing: 0;
}

.np-contact img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-contact .np-btn {
	letter-spacing: 0;
}

.np-contact__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-family: 'Montserrat', 'Poppins', var(--np-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--np-accent);
}

.np-contact__eyebrow::before {
	content: '';
	display: inline-block;
	width: 42px;
	height: 1px;
	background: currentColor;
}

.np-contact-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 540px;
	padding: 54px 0 50px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.94) 0%, rgba(251,248,243,.92) 42%, rgba(249,228,236,.7) 100%),
		var(--np-contact-cream);
	overflow: hidden;
}

.np-contact-hero::after {
	content: '';
	position: absolute;
	right: -12%;
	top: -18%;
	width: 560px;
	aspect-ratio: 1;
	border: 1px solid rgba(224, 47, 103, .16);
	border-radius: 50%;
	pointer-events: none;
}

.np-contact-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
	align-items: center;
	gap: 52px;
}

.np-contact-hero__title {
	max-width: 650px;
	margin: 0 0 26px;
	font-size: 86px;
	font-style: italic;
	line-height: .96;
	color: var(--np-contact-ink);
}

.np-contact-hero__text {
	max-width: 620px;
	margin: 0 0 34px;
	font-size: 16px;
	line-height: 1.9;
	color: var(--np-text-soft);
}

.np-contact-hero__visual {
	position: relative;
	min-height: 430px;
}

.np-contact-hero__slab {
	position: absolute;
	left: 0;
	top: 44px;
	width: 50%;
	height: 62%;
	background: linear-gradient(180deg, var(--np-contact-beige), rgba(255,255,255,.46));
	border-radius: 8px;
	transform: rotate(-4deg);
}

.np-contact-hero__arch {
	position: absolute;
	right: 24px;
	top: 14px;
	width: 64%;
	height: 80%;
	background: var(--np-contact-nude);
	border-radius: 300px 300px 8px 8px;
	opacity: .62;
	transform: rotate(3deg);
}

.np-contact-hero__image {
	position: absolute;
	right: 0;
	top: 0;
	width: 68%;
	max-width: 420px;
	aspect-ratio: 4 / 5;
	margin: 0;
	border: 8px solid rgba(255,255,255,.96);
	border-radius: 300px 300px 8px 8px;
	overflow: hidden;
	box-shadow: var(--np-contact-shadow);
	transform: translateY(12px);
	transition: transform .8s var(--np-ease), filter .8s var(--np-ease);
}

.np-contact-hero__image img {
	object-position: 84% center;
}

.np-contact-hero__visual:hover .np-contact-hero__image {
	transform: translateY(2px);
	filter: saturate(1.04) contrast(1.02);
}

.np-contact-hero__label {
	position: absolute;
	left: 7%;
	bottom: 12%;
	display: inline-flex;
	padding: 13px 18px;
	background: var(--np-accent);
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(224,47,103,.22);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
	color: #fff;
}

.np-contact-hero__mark {
	position: absolute;
	left: 9%;
	top: 12%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	background: rgba(255,255,255,.7);
	border: 1px solid rgba(255,255,255,.76);
	border-radius: 50%;
	box-shadow: 0 18px 48px rgba(37,24,22,.1);
	backdrop-filter: blur(18px);
	font-family: var(--np-font-display);
	font-size: 32px;
	font-style: italic;
	color: var(--np-accent);
}

.np-contact-shape {
	position: absolute;
	pointer-events: none;
	animation: npContactFloat 8s var(--np-ease) infinite alternate;
}

.np-contact-shape--hero-a {
	left: 4%;
	bottom: 12%;
	width: 150px;
	height: 150px;
	background: var(--np-contact-beige);
	border-radius: 50% 50% 8px 8px;
	opacity: .7;
}

.np-contact-shape--hero-b {
	right: 43%;
	top: 14%;
	width: 116px;
	height: 116px;
	background: var(--np-contact-blush);
	border-radius: 8px 80px 8px 80px;
	opacity: .78;
	animation-delay: .8s;
}

.np-contact-shape--hero-c {
	left: 43%;
	top: 9%;
	width: 86px;
	height: 148px;
	border: 1px solid rgba(17,17,17,.12);
	border-radius: 90px 90px 8px 8px;
	transform: rotate(14deg);
	animation-delay: .4s;
}

.np-contact-main {
	position: relative;
	padding: 124px 0 132px;
	background: #fff;
	overflow: hidden;
}

.np-contact-main__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
	gap: 50px;
	align-items: start;
}

.np-contact-form-panel,
.np-contact-details {
	position: relative;
}

.np-contact-form-panel {
	padding: 48px;
	background: rgba(255,255,255,.72);
	border: 1px solid rgba(255,255,255,.74);
	border-radius: 8px;
	box-shadow: var(--np-contact-shadow);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.np-contact-form-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(251,248,243,.84), rgba(255,255,255,.58) 52%, rgba(249,228,236,.48));
	pointer-events: none;
}

.np-contact-form-panel > * {
	position: relative;
	z-index: 1;
}

.np-contact-form-panel h2,
.np-contact-details h2,
.np-contact-map h2 {
	margin: 0 0 30px;
	font-size: 56px;
	font-style: italic;
	line-height: 1.04;
	color: var(--np-contact-ink);
}

.np-contact-notice {
	margin: 0 0 24px;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.6;
}

.np-contact-notice--success {
	background: rgba(224,47,103,.09);
	border: 1px solid rgba(224,47,103,.18);
	color: var(--np-accent);
}

.np-contact-notice--error {
	background: rgba(17,17,17,.06);
	border: 1px solid rgba(17,17,17,.14);
	color: var(--np-contact-ink);
}

.np-contact-form__trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.np-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.np-contact-field {
	display: grid;
	gap: 9px;
	margin: 0 0 22px;
}

.np-contact-field span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--np-contact-ink);
}

.np-contact-field input,
.np-contact-field textarea {
	width: 100%;
	min-height: 56px;
	padding: 15px 16px;
	background: rgba(255,255,255,.8);
	border: 1px solid rgba(17,17,17,.12);
	border-radius: 8px;
	box-shadow: none;
	font-family: 'Poppins', 'Montserrat', var(--np-font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--np-text);
	outline: none;
	transition: border-color .25s var(--np-ease), box-shadow .25s var(--np-ease), background .25s var(--np-ease);
}

.np-contact-field textarea {
	min-height: 168px;
	resize: vertical;
}

.np-contact-field input:focus,
.np-contact-field textarea:focus {
	background: #fff;
	border-color: rgba(224,47,103,.48);
	box-shadow: 0 0 0 4px rgba(224,47,103,.1);
}

.np-contact-form__submit {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
	border: 0;
	cursor: pointer;
}

.np-contact-details {
	padding: 44px 0 0;
}

.np-contact-card-list {
	display: grid;
	gap: 18px;
}

.np-contact-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 22px;
	background: linear-gradient(135deg, #fff, rgba(251,248,243,.94));
	border: 1px solid var(--np-line);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(37, 24, 22, .08);
	color: var(--np-text);
	transition: transform .35s var(--np-ease), box-shadow .35s var(--np-ease), border-color .35s var(--np-ease);
}

.np-contact-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 22px;
	bottom: 22px;
	width: 3px;
	background: var(--np-accent);
}

.np-contact-card:hover {
	transform: translateY(-5px);
	border-color: rgba(224,47,103,.22);
	box-shadow: 0 24px 70px rgba(37, 24, 22, .12);
	color: var(--np-text);
}

.np-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: rgba(224,47,103,.08);
	border: 1px solid rgba(224,47,103,.18);
	border-radius: 50%;
	color: var(--np-accent);
}

.np-contact-card__icon .np-icon {
	width: 22px;
	height: 22px;
}

.np-contact-card__body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.np-contact-card__body span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--np-accent);
}

.np-contact-card__body strong {
	font-family: 'Poppins', 'Montserrat', var(--np-font-body);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	color: var(--np-contact-ink);
	word-break: break-word;
}

.np-contact-shape--main-a {
	right: -42px;
	top: 90px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(224,47,103,.18);
	border-radius: 50%;
}

.np-contact-shape--main-b {
	left: 5%;
	bottom: 82px;
	width: 132px;
	height: 132px;
	background: rgba(224,47,103,.1);
	border-radius: 80px 8px 80px 8px;
	animation-delay: .7s;
}

.np-contact-map {
	padding: 110px 0 124px;
	background:
		linear-gradient(135deg, rgba(241,231,219,.86), rgba(255,255,255,.9) 54%, rgba(249,228,236,.68)),
		var(--np-contact-cream);
}

.np-contact-map__head {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.np-contact-map__head .np-contact__eyebrow::before {
	display: none;
}

.np-contact-map__frame {
	position: relative;
	height: 480px;
	border: 8px solid #fff;
	border-radius: 8px;
	box-shadow: var(--np-contact-shadow);
	overflow: hidden;
	background: var(--np-contact-beige);
}

.np-contact-map__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(.85) contrast(.96) brightness(1.02);
}

.np-contact-quote {
	position: relative;
	padding: 118px 0;
	background: var(--np-contact-ink);
	color: #fff;
	overflow: hidden;
}

.np-contact-quote p {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	font-size: 56px;
	font-style: italic;
	line-height: 1.16;
	text-align: center;
}

.np-contact-quote p::first-letter {
	color: var(--np-accent);
}

.np-contact-shape--quote-a {
	left: 8%;
	top: 24%;
	width: 138px;
	height: 138px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 80px 80px 8px 8px;
}

.np-contact-shape--quote-b {
	right: 9%;
	bottom: 20%;
	width: 150px;
	height: 150px;
	background: rgba(224,47,103,.12);
	border-radius: 80px 8px 80px 8px;
	animation-delay: .6s;
}

.np-contact [data-np-reveal] {
	animation: npContactFadeUp .85s var(--np-ease) both;
}

.np-contact [data-np-reveal]:nth-child(2) {
	animation-delay: .12s;
}

@keyframes npContactFadeUp {
	from {
		opacity: 0;
		transform: translateY(26px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes npContactFloat {
	from { transform: translate3d(0, 0, 0) rotate(0deg); }
	to { transform: translate3d(12px, -16px, 0) rotate(4deg); }
}

@media (max-width: 1080px) {
	.np-contact-hero__grid,
	.np-contact-main__grid {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.np-contact-hero__title {
		font-size: 70px;
	}

	.np-contact-hero__visual {
		min-height: 600px;
		max-width: 660px;
		margin: 0 auto;
		width: 100%;
	}

	.np-contact-details {
		padding-top: 0;
	}
}

@media (max-width: 760px) {
	.np-contact-hero,
	.np-contact-main,
	.np-contact-map,
	.np-contact-quote {
		padding-top: 56px;
		padding-bottom: 62px;
	}

	.np-contact-hero__grid,
	.np-contact-main__grid {
		gap: 30px;
	}

	.np-contact-hero__title {
		font-size: 54px;
	}

	.np-contact-form-panel h2,
	.np-contact-details h2,
	.np-contact-map h2 {
		font-size: 44px;
	}

	.np-contact-hero__text {
		font-size: 14px;
		line-height: 1.68;
		margin-bottom: 22px;
	}

	.np-contact-hero__visual {
		min-height: 360px;
	}

	.np-contact-hero__image {
		width: 74%;
	}

	.np-contact-hero__mark {
		width: 68px;
		height: 68px;
		font-size: 25px;
	}

	.np-contact-hero__label {
		left: 0;
		bottom: 14%;
		font-size: 11px;
	}

	.np-contact-shape--hero-a,
	.np-contact-shape--hero-c {
		display: none;
	}

	.np-contact-form-panel {
		padding: 34px 28px;
	}

	.np-contact-form__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.np-contact-card {
		grid-template-columns: 50px minmax(0, 1fr);
		padding: 20px 18px;
	}

	.np-contact-card__icon {
		width: 50px;
		height: 50px;
	}

	.np-contact-map__frame {
		height: 420px;
		border-width: 5px;
	}

	.np-contact-quote p {
		font-size: 38px;
	}
}

@media (max-width: 520px) {
	.np-contact-hero__title {
		font-size: 44px;
	}

	.np-contact-form-panel h2,
	.np-contact-details h2,
	.np-contact-map h2 {
		font-size: 38px;
	}

	.np-contact__eyebrow::before {
		width: 28px;
	}

	.np-contact-hero__visual {
		min-height: 310px;
	}

	.np-contact-hero__arch {
		right: 18px;
	}

	.np-contact-hero__label {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 266px;
	}

	.np-contact-form-panel {
		padding: 30px 20px;
	}

	.np-contact-field input,
	.np-contact-field textarea {
		min-height: 54px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.np-contact-card {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.np-contact-map__frame {
		height: 360px;
	}

	.np-contact-quote p {
		font-size: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.np-contact *,
	.np-contact *::before,
	.np-contact *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}