:root {
	--nik-pink: #ff2f93;
	--nik-pink-strong: #e8177e;
	--nik-black: #090a12;
	--nik-ink: #141a2c;
	--nik-muted: #5f6984;
	--nik-line: #d8deef;
	--nik-surface: #ffffff;
	--nik-blue: #2f57d9;
}

* {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body.nikolina-body {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
	min-height: 100vh;
	font-family: "Space Grotesk", sans-serif;
	color: var(--nik-ink);
	background:
		radial-gradient(
			circle at 14% 10%,
			rgba(255, 47, 147, 0.14),
			transparent 32%
		),
		radial-gradient(circle at 84% 8%, rgba(47, 87, 217, 0.16), transparent 28%),
		linear-gradient(160deg, #f9fbff 0%, #f1f5ff 40%, #f7f9ff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: 0.04em;
	line-height: 0.96;
}

p {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

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

main {
	overflow-x: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 12px;
	z-index: 999;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: #fff;
	color: #111;
	box-shadow: 0 10px 24px rgba(22, 30, 52, 0.18);
}

.skip-link:focus {
	left: 12px;
}

.nik-container {
	width: min(1200px, calc(100% - 2rem));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 220;
	padding-top: 0.7rem;
}

.header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 1.2rem;
	background: linear-gradient(
		140deg,
		rgba(255, 255, 255, 0.84),
		rgba(237, 243, 255, 0.68)
	);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: 0 14px 36px rgba(39, 51, 87, 0.14);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.brand-logo {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.brand-text {
	display: grid;
	line-height: 1;
}

.brand-name {
	font-family: "Sora", "Space Grotesk", sans-serif;
	font-size: 1.08rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #1c2845;
}

.brand-sub {
	margin-top: 0.24rem;
	font-size: 0.66rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(34, 48, 81, 0.7);
}

.desktop-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.desktop-menu li a {
	display: inline-flex;
	padding: 0.55rem 0.86rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #25365e;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease,
		color 0.25s ease;
}

.desktop-menu li a:hover,
.desktop-menu li.current-menu-item a {
	color: var(--nik-blue);
	background: rgba(255, 255, 255, 0.8);
	transform: translateY(-1px);
}

.desktop-nav {
	display: none;
}

.menu-toggle {
	position: relative;
	z-index: 260;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(123, 142, 188, 0.5);
	border-radius: 999px;
	background: linear-gradient(
		140deg,
		rgba(255, 255, 255, 0.95),
		rgba(227, 236, 255, 0.72)
	);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.8),
		0 10px 24px rgba(45, 62, 108, 0.2);
	color: #20335f;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.menu-toggle:hover {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 14px 30px rgba(45, 62, 108, 0.22);
}

.menu-toggle:active {
	transform: scale(0.95);
}

.menu-toggle__icon {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.2rem;
	height: 0.92rem;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #314fa7, #24408f);
	transform-origin: center;
	transition:
		transform 0.3s ease,
		opacity 0.2s ease,
		width 0.3s ease;
}

.menu-toggle__icon span:nth-child(2) {
	width: 82%;
	margin-left: auto;
}

.menu-toggle__icon span:nth-child(3) {
	width: 66%;
	margin-left: auto;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(3) {
	width: 100%;
	margin-left: 0;
	transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 240;
	display: grid;
	place-items: center;
	padding: clamp(5.2rem, 8vh, 6.2rem) 1.2rem
		calc(5.6rem + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(
		165deg,
		rgba(247, 251, 255, 0.96),
		rgba(241, 246, 255, 0.92)
	);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, -16px, 0);
	pointer-events: none;
	transition:
		opacity 0.28s ease,
		transform 0.32s ease,
		visibility 0.28s ease;
}

.mobile-menu::before,
.mobile-menu::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(60px);
	pointer-events: none;
}

.mobile-menu::before {
	width: 260px;
	height: 260px;
	left: -60px;
	top: 8%;
	background: rgba(47, 87, 217, 0.25);
}

.mobile-menu::after {
	width: 300px;
	height: 300px;
	right: -80px;
	bottom: 10%;
	background: rgba(255, 47, 147, 0.24);
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}

.mobile-menu__panel {
	position: relative;
	z-index: 2;
	width: min(540px, 100%);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.1rem;
	overflow-y: auto;
	scrollbar-width: none;
}

.mobile-menu__panel::-webkit-scrollbar {
	display: none;
}

.mobile-menu-brand {
	display: grid;
	justify-items: center;
	gap: 0.18rem;
	text-align: center;
}

.mobile-menu-brand__name {
	font-family: "Sora", "Space Grotesk", sans-serif;
	font-size: clamp(1rem, 4.6vw, 1.2rem);
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #1f2f53;
}

.mobile-menu-brand__sub {
	font-size: 0.66rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(31, 47, 83, 0.74);
}

.mobile-menu-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.34rem;
	text-align: center;
}

.mobile-menu-list li {
	opacity: 0;
	transform: translateY(14px) scale(0.97);
	transition:
		opacity 0.28s ease,
		transform 0.33s ease;
}

.mobile-menu.is-open .mobile-menu-list li {
	opacity: 1;
	transform: none;
}

.mobile-menu.is-open .mobile-menu-list li:nth-child(1) {
	transition-delay: 0.03s;
}

.mobile-menu.is-open .mobile-menu-list li:nth-child(2) {
	transition-delay: 0.07s;
}

.mobile-menu.is-open .mobile-menu-list li:nth-child(3) {
	transition-delay: 0.11s;
}

.mobile-menu.is-open .mobile-menu-list li:nth-child(4) {
	transition-delay: 0.15s;
}

.mobile-menu.is-open .mobile-menu-list li:nth-child(5) {
	transition-delay: 0.19s;
}

.mobile-menu-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.35rem;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(1.15rem, 6vw, 1.7rem);
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #24365d;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list .current-menu-item a {
	color: var(--nik-pink-strong);
	transform: translateY(-1px);
}

body.menu-open {
	overflow: hidden;
}

.mobile-call-fixed {
	position: fixed;
	left: 50%;
	bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
	z-index: 210;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.8rem 1.12rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: linear-gradient(130deg, #2f57d9, #ff2f93);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transform: translateX(-50%);
	box-shadow: 0 14px 28px rgba(39, 51, 87, 0.34);
}

.mobile-call-fixed:hover {
	color: #fff;
}

.section-shell {
	padding-block: 5.4rem;
}

.section-kicker,
.hero-kicker {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.92rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	border: 1px solid rgba(130, 149, 194, 0.34);
	background: linear-gradient(
		140deg,
		rgba(255, 255, 255, 0.84),
		rgba(235, 243, 255, 0.6)
	);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #2a3c66;
}

.section-title,
.hero-title {
	margin-top: 0.7 rem;
	font-size: clamp(2.4rem, 5vw, 5.25rem);
	line-height: 0.92;
	color: #1b2742;
}

.section-description,
.hero-description {
	font-size: clamp(1rem, 1.6vw, 1.16rem);
	line-height: 1.72;
	color: var(--nik-muted);
	max-width: 65ch;
}

.glass-panel,
.glass-card,
.blog-card,
.faq-item,
.contact-form-wrap,
.single-post-wrap,
.contact-placeholder {
	position: relative;
	border-radius: 1.3rem;
	border: 1px solid rgba(138, 157, 203, 0.34);
	background: linear-gradient(
		150deg,
		rgba(255, 255, 255, 0.85),
		rgba(232, 240, 255, 0.6)
	);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: 0 12px 30px rgba(43, 58, 100, 0.1);
	overflow: hidden;
}

.glass-panel::before,
.glass-card::before,
.blog-card::before,
.faq-item::before,
.contact-form-wrap::before,
.single-post-wrap::before,
.contact-placeholder::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 48%;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.58),
		rgba(255, 255, 255, 0)
	);
	pointer-events: none;
}

.btn-primary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.btn-primary {
	color: #fff;
	background: linear-gradient(120deg, #2f57d9, #6c7dff 48%, #ff2f93);
	box-shadow: 0 14px 28px rgba(47, 87, 217, 0.3);
}

.btn-primary:hover {
	color: #fff;
	transform: translateY(-2px);
}

.btn-ghost {
	border: 1px solid rgba(125, 145, 194, 0.45);
	background: rgba(255, 255, 255, 0.8);
	color: #27385f;
}

.btn-ghost:hover {
	color: var(--nik-blue);
	transform: translateY(-2px);
}

.hero-section {
	position: relative;
	padding-block: clamp(5.5rem, 8vw, 7rem);
}


.hero-mobile-brand {
	display: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.2rem, 3vw, 2.8rem);
	align-items: center;
}

.hero-visual {
	position: relative;
	isolation: isolate;
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: -2% -7% 6% -7%;
	z-index: 0;
	border-radius: 999px;
	background:
		radial-gradient(circle at 32% 22%, rgba(255, 47, 147, 0.54), transparent 34%),
		radial-gradient(circle at 70% 70%, rgba(47, 87, 217, 0.46), transparent 38%),
		linear-gradient(135deg, rgba(255, 47, 147, 0.22), rgba(47, 87, 217, 0.2));
	filter: blur(26px);
	opacity: 0.9;
	animation: heroAura 7.4s ease-in-out infinite;
}

.hero-frame {
	position: relative;
	z-index: 2;
	padding: 0.65rem;
	background: none;
	box-shadow: none;
	overflow: hidden;
	border-radius: 1.55rem;
	transform: perspective(960px) rotateY(var(--hero-ry, 0deg))
		rotateX(var(--hero-rx, 0deg));
	transition: transform 0.35s ease;
}

/* Graficzna oprawa hero: ramka i refleks są dekoracją, bez wpływu na treść. */
.hero-frame::before,
.hero-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	pointer-events: none;
}

.hero-frame::before {
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow:
		inset 0 0 0 1px rgba(255, 47, 147, 0.2),
		inset 0 0 34px rgba(255, 255, 255, 0.16);
}

.hero-frame::after {
	background: linear-gradient(
		115deg,
		transparent 18%,
		rgba(255, 255, 255, 0.08) 34%,
		rgba(255, 255, 255, 0.42) 46%,
		rgba(255, 47, 147, 0.18) 52%,
		transparent 66%
	);
	mix-blend-mode: screen;
	transform: translateX(-140%);
	animation: heroGlassSweep 6.4s ease-in-out infinite;
}

.hero-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: min(84vh, 780px);
	object-fit: cover;
	object-position: center 18%;
	border-radius: 1.2rem;
	animation: softFloat 7.2s ease-in-out infinite;
}


.hero-content {
	display: grid;
	gap: 1.1rem;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.hero-vertical-text {
	position: absolute;
	left: -31%;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	font-family: "Syne", sans-serif;
	font-size: clamp(2rem, 4.2vw, 4rem);
	font-weight: 800;
	letter-spacing: 0.15em;
	background: linear-gradient(
		120deg,
		rgba(28, 48, 98, 0.45),
		rgba(255, 47, 147, 0.48)
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.72;
	pointer-events: none;
	user-select: none;
}

.grid-cards {
	display: grid;
	gap: 1.2rem;
}
.session-showcase {
	position: relative;
}

.session-showcase-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: clamp(1.4rem, 4vw, 4rem);
	align-items: center;
}

.session-photo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.2vw, 1.5rem);
	align-items: center;
}

.session-photo-card {
	position: relative;
	margin: 0;
	padding: 0.55rem;
	border-radius: 1.55rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(236, 242, 255, 0.58));
	box-shadow: 0 20px 42px rgba(38, 53, 92, 0.15);
	overflow: hidden;
}

.session-photo-card--offset {
	transform: translateY(2rem);
	animation-delay: 0.5s;
}

.session-photo-card img {
	display: block;
	width: 100%;
	height: clamp(360px, 46vw, 580px);
	object-fit: cover;
	object-position: center 24%;
	border-radius: 1.15rem;
}

.session-photo-card figcaption {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 0.68rem 0.82rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(14px) saturate(150%);
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #27385f;
}

.session-parallax {
	position: relative;
	min-height: clamp(390px, 58vh, 640px);
	display: flex;
	align-items: center;
	padding-block: 5rem;
	background-image: linear-gradient(90deg, rgba(245, 248, 255, 0.92), rgba(245, 248, 255, 0.38) 48%, rgba(10, 14, 28, 0.1)), var(--session-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}

.session-parallax::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 44%;
	background: linear-gradient(0deg, rgba(247, 249, 255, 0.86), rgba(247, 249, 255, 0));
	pointer-events: none;
}

.session-parallax--right {
	background-image: linear-gradient(270deg, rgba(245, 248, 255, 0.92), rgba(245, 248, 255, 0.36) 50%, rgba(10, 14, 28, 0.08)), var(--session-bg);
}

.session-parallax--right .nik-container {
	display: flex;
	justify-content: flex-end;
}

.session-parallax__content {
	position: relative;
	z-index: 2;
	max-width: 520px;
	padding: clamp(1.25rem, 2.4vw, 2rem);
}

.session-parallax__content h2 {
	font-size: clamp(2.2rem, 4vw, 4.3rem);
	color: #1b2742;
}

.session-parallax__content p:not(.section-kicker) {
	margin-top: 1rem;
	color: var(--nik-muted);
	line-height: 1.72;
}


.info-card,
.offer-card,
.testimonial-card,
.blog-card,
.faq-item {
	padding: 1.35rem;
}

.info-card h3,
.offer-card h3,
.testimonial-author,
.blog-card h3,
.faq-question,
.contact-placeholder h3 {
	font-size: 1.35rem;
	color: #22325a;
}

.info-card p,
.offer-card p,
.testimonial-text,
.blog-card p,
.faq-answer p,
.contact-list,
.contact-placeholder p {
	color: var(--nik-muted);
	line-height: 1.7;
}

.offer-price {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.95rem;
	letter-spacing: 0.03em;
	color: #273860;
}

.testimonial-result {
	font-size: 0.9rem;
	color: #475b89;
}

.faq-item summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.8rem;
	list-style: none;
	cursor: pointer;
}

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

.faq-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.faq-hint {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.3rem 0.54rem;
	border-radius: 999px;
	background: rgba(47, 87, 217, 0.1);
	color: #3f5692;
}

.faq-icon {
	position: relative;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 999px;
	border: 1px solid rgba(84, 107, 166, 0.36);
	background: rgba(255, 255, 255, 0.84);
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.6rem;
	height: 2px;
	background: #36508f;
	transform: translate(-50%, -50%);
	transition:
		transform 0.24s ease,
		opacity 0.24s ease;
}

.faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition:
		grid-template-rows 0.3s ease,
		margin-top 0.3s ease;
}

.faq-answer p {
	overflow: hidden;
}

.faq-item[open] .faq-answer {
	grid-template-rows: 1fr;
	margin-top: 0.8rem;
}

.faq-item[open] .faq-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.blog-card-thumb {
	display: block;
	overflow: hidden;
	border-radius: 1rem;
}

.blog-card-thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
	transform: scale(1.05);
}

.blog-card-body {
	margin-top: 1rem;
	display: grid;
	gap: 0.5rem;
}

.blog-card-meta {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #506088;
}

.blog-card-link {
	display: inline-flex;
	margin-top: 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--nik-blue);
}

.contact-wrap {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-box,
.contact-form-wrap,
.contact-placeholder {
	padding: 1.5rem;
}

.contact-list {
	display: grid;
	gap: 0.6rem;
}

.contact-list a {
	color: #253863;
}

.contact-list a:hover {
	color: var(--nik-blue);
}

.contact-form-wrap .wpcf7,
.contact-form-wrap .wpcf7 form {
	display: grid;
	gap: 0.92rem;
}

.contact-form-wrap .wpcf7 p {
	margin: 0;
}

.contact-form-wrap .wpcf7 br {
	display: none;
}

.contact-form-wrap .wpcf7 label {
	display: grid;
	gap: 0.35rem;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2d3f6d;
}

.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 input[type="url"],
.contact-form-wrap .wpcf7 textarea,
.contact-form-wrap .wpcf7 select {
	width: 100%;
	padding: 0.8rem 0.95rem;
	border-radius: 0.86rem;
	border: 1px solid rgba(125, 144, 189, 0.42);
	background: rgba(255, 255, 255, 0.92);
	color: #22345d;
}

.contact-form-wrap .wpcf7 textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 textarea:focus,
.contact-form-wrap .wpcf7 select:focus {
	outline: none;
	border-color: rgba(47, 87, 217, 0.68);
	box-shadow: 0 0 0 4px rgba(47, 87, 217, 0.14);
}

.contact-form-wrap .wpcf7 .wpcf7-submit {
	width: 100%;
	padding: 0.9rem 1.2rem;
	border: 0;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(120deg, #2f57d9, #6c7dff 48%, #ff2f93);
	box-shadow: 0 14px 28px rgba(47, 87, 217, 0.28);
	cursor: pointer;
}

.contact-form-wrap .wpcf7 .wpcf7-submit:hover {
	filter: brightness(1.04);
}

.contact-form-wrap .wpcf7 .wpcf7-not-valid-tip {
	font-size: 0.76rem;
	color: #c8236f;
}

.contact-form-wrap .wpcf7 .wpcf7-response-output {
	margin: 0;
	padding: 0.7rem 0.86rem;
	border-radius: 0.8rem;
	font-size: 0.82rem;
}

.site-footer {
	padding-bottom: 1.7rem;
}

.footer-shell {
	padding: 1.2rem 1.3rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(138, 157, 203, 0.34);
	background: linear-gradient(
		150deg,
		rgba(255, 255, 255, 0.82),
		rgba(232, 240, 255, 0.58)
	);
	box-shadow: 0 12px 30px rgba(43, 58, 100, 0.1);
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem 1rem;
}

.footer-menu a {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4b5d86;
}

.footer-legal-link {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	border: 1px solid rgba(138, 157, 203, 0.34);
	background: rgba(255, 255, 255, 0.58);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #4b5d86;
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-legal-link:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 47, 147, 0.4);
	color: #ff2f93;
}

.footer-copy {
	font-size: 0.84rem;
	color: #5a6888;
}

.page-document {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 18px 42px rgba(43, 58, 100, 0.1);
	overflow: visible;
}

.page-document::before {
	display: none;
}

.page-document .section-kicker {
	color: #2a3c66;
	background: #fff;
	border-color: rgba(130, 149, 194, 0.42);
}

.page-document .section-title {
	color: #17223d;
}

.entry-content {
	color: #263655;
	line-height: 1.76;
}

.entry-content > * + * {
	margin-top: 1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.6rem;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	color: #17223d;
}

.entry-content p,
.entry-content li {
	color: #31405f;
}

.entry-content strong {
	color: #1d2b49;
}

.pagination-wrap .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	padding: 0;
}

.pagination-wrap a,
.pagination-wrap span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.4rem;
	padding-inline: 0.75rem;
	border-radius: 0.8rem;
	border: 1px solid rgba(126, 146, 189, 0.4);
	background: rgba(255, 255, 255, 0.88);
	color: #30426a;
}

.pagination-wrap .current {
	background: var(--nik-blue);
	border-color: var(--nik-blue);
	color: #fff;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.62s ease,
		transform 0.62s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.float-soft {
	animation: softFloat 6.8s ease-in-out infinite;
}

@keyframes softFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-7px);
	}
}

@keyframes orbPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.92;
	}
	50% {
		transform: scale(1.04);
		opacity: 1;
	}
}

@keyframes heroAura {
	0%,
	100% {
		transform: scale(0.98) rotate(0deg);
		opacity: 0.82;
	}
	50% {
		transform: scale(1.05) rotate(2deg);
		opacity: 1;
	}
}

@keyframes heroGlassSweep {
	0%,
	38% {
		transform: translateX(-140%);
	}
	58%,
	100% {
		transform: translateX(140%);
	}
}


@media (max-width: 1200px) {
	.hero-vertical-text {
		display: none;
	}
}

@media (min-width: 1024px) {
	.desktop-nav {
		display: block;
	}

	.menu-toggle {
		display: none;
	}

	.mobile-menu {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.brand-text {
		display: none;
	}

	.mobile-call-fixed {
		display: inline-flex;
	}

	.hero-grid,
	.contact-wrap,
	.session-showcase-grid {
		grid-template-columns: 1fr;
		min-width: 0;
	}

	.session-parallax {
		background-attachment: scroll;
	}
}

@media (max-width: 768px) {
	.section-shell {
		padding-block: 4.1rem;
	}

	.hero-section {
		padding-block: 2.3rem 3.4rem;
		overflow: hidden;
	}

.hero-mobile-brand {
	display: grid;
	gap: 0.24rem;
	width: min(100%, 27rem);
	margin: 0 auto 1.2rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 1.25rem;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(238, 242, 255, 0.48));
	backdrop-filter: blur(14px) saturate(150%);
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	box-shadow: 0 16px 34px rgba(45, 62, 108, 0.12);
	text-align: center;
}

.hero-mobile-brand p {
	font-family: "Sora", "Space Grotesk", sans-serif;
	font-size: clamp(1.05rem, 5vw, 1.34rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #1f2f53;
}

.hero-mobile-brand a {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nik-pink-strong);
}

	.hero-grid {
		gap: 1.1rem;
	}

	.hero-frame {
		max-width: 100%;
	}

	.hero-visual::before {
		inset: 2% 4% 8%;
		filter: blur(20px);
	}

	.hero-image {
		height: min(72vh, 640px);
		object-position: center 14%;
	}

	.session-photo-grid {
		grid-template-columns: 1fr;
	}

	.session-photo-card--offset {
		transform: none;
	}

	.session-photo-card img {
		height: min(72vh, 620px);
	}

	.session-parallax {
		min-height: 520px;
		align-items: flex-end;
		padding-block: 3.2rem;
		background-position: center top;
	}

	.hero-content {
		margin-top: 0.8rem;
	}

	.hero-cta {
		gap: 0.56rem;
	}

	.hero-cta .btn-primary,
	.hero-cta .btn-ghost {
		flex: 1 1 auto;
	}

	.mobile-call-fixed {
		font-size: 0.72rem;
		padding: 0.72rem 0.94rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
		scroll-behavior: auto !important;
	}
}

body.menu-open .site-header {
	z-index: 320;
}

body.menu-open .header-shell {
	justify-content: flex-end;
	border-color: transparent;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
}

body.menu-open .brand,
body.menu-open .desktop-nav {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

body.menu-open .menu-toggle {
	border-color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.82);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.92),
		0 18px 34px rgba(45, 62, 108, 0.18);
}

body.menu-open .menu-toggle__icon span {
	background: linear-gradient(90deg, var(--nik-pink-strong), var(--nik-blue));
}
