/* Hipno — style frontu (odwzorowanie palety OKLCH z projektu statycznego) */
:root {
	--hipno-radius: 0.75rem;
	--hipno-bg: oklch(0.985 0.005 80);
	--hipno-fg: oklch(0.22 0.03 145);
	--hipno-sage-50: oklch(0.97 0.01 145);
	--hipno-sage-100: oklch(0.94 0.02 145);
	--hipno-sage-200: oklch(0.88 0.04 145);
	--hipno-sage-300: oklch(0.78 0.06 145);
	--hipno-sage-400: oklch(0.65 0.08 145);
	--hipno-sage-500: oklch(0.55 0.08 145);
	--hipno-sage-600: oklch(0.45 0.08 145);
	--hipno-sage-700: oklch(0.38 0.07 145);
	--hipno-sage-800: oklch(0.32 0.06 145);
	--hipno-sage-900: oklch(0.25 0.05 145);
	--hipno-sand-100: oklch(0.95 0.02 80);
	--hipno-sand-200: oklch(0.91 0.03 80);
	--hipno-sand-400: oklch(0.78 0.05 70);
	--hipno-clay-100: oklch(0.93 0.03 55);
	--hipno-clay-400: oklch(0.68 0.09 40);
	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.hipno-body {
	margin: 0;
	background: var(--hipno-bg);
	color: var(--hipno-fg);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
}

.hipno-min-h-screen {
	min-height: 100vh;
}

.hipno-container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.hipno-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.hipno-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* --- Nagłówek --- */
.hipno-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

.hipno-header--home {
	background: #fefbf3;
	backdrop-filter: blur(16px);
	box-shadow: 0 1px 20px oklch(0.22 0.03 145 / 0.06);
}

.hipno-header--solid {
	background: #fefbf3;
	backdrop-filter: blur(16px);
	box-shadow: 0 1px 20px oklch(0.22 0.03 145 / 0.06);
}

.hipno-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4.5rem;
}

@media (min-width: 1024px) {
	.hipno-header__inner {
		min-height: 5rem;
	}
}

.hipno-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
}

.hipno-logo__mark {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: var(--hipno-sage-700);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hipno-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.hipno-logo__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--hipno-sage-800);
	transition: color 0.3s;
}

.hipno-logo__tag {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--hipno-sage-500);
}

/* Logo z: Wygląd → Dostosuj → Tożsamość witryny */
.hipno-site-branding--custom .custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.hipno-site-branding--custom .custom-logo {
	display: block;
	max-height: 2.5rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.hipno-site-branding--custom .custom-logo {
		max-height: 2.75rem;
	}
}

.hipno-site-branding--footer .custom-logo {
	max-height: 3rem;
	max-width: 100%;
}

.hipno-nav--desktop {
	display: none;
	align-items: center;
	gap: 0.25rem;
}

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

.hipno-nav__link {
	position: relative;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--hipno-sage-700);
	transition: color 0.3s;
}

.hipno-nav__link:hover {
	color: var(--hipno-sage-900);
}

.hipno-nav__cta {
	margin-left: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 9999px;
	text-decoration: none;
	background: var(--hipno-sage-700);
	color: #fff;
	transition: background 0.3s, box-shadow 0.3s;
}

.hipno-nav__cta:hover {
	background: var(--hipno-sage-800);
	box-shadow: 0 10px 25px oklch(0.38 0.07 145 / 0.2);
}

.hipno-nav__toggle--mobile {
	display: flex;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	color: var(--hipno-sage-700);
}

@media (min-width: 1024px) {
	.hipno-nav__toggle--mobile {
		display: none;
	}
}

.hipno-nav__toggle-icon {
	display: block;
	width: 1.5rem;
	height: 2px;
	background: currentColor;
	box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.hipno-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 40;
	padding: 6rem 1.5rem 2rem;
	background: oklch(0.985 0.005 80 / 0.98);
	backdrop-filter: blur(24px);
}

.hipno-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hipno-mobile-menu__nav a {
	padding: 0.75rem 1rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--hipno-sage-800);
	text-decoration: none;
	border-radius: 0.75rem;
}

.hipno-mobile-menu__nav a:hover {
	background: var(--hipno-sage-50);
}

.hipno-mobile-menu__cta {
	margin-top: 1rem;
	text-align: center;
	background: var(--hipno-sage-700) !important;
	color: #fff !important;
	border-radius: 9999px !important;
	padding: 0.875rem 1.5rem !important;
}

/* --- Hero --- */
.hipno-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hipno-hero__bg {
	position: absolute;
	inset: 0;
}

.hipno-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hipno-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		oklch(0.18 0.04 145 / 0.55),
		oklch(0.18 0.04 145 / 0.45),
		oklch(0.18 0.04 145 / 0.65)
	);
}

.hipno-hero__content {
	position: relative;
	z-index: 10;
	padding-top: 7rem;
	padding-bottom: 5rem;
	max-width: 48rem;
}

.hipno-hero__eyebrow {
	display: block;
	color: var(--hipno-sand-200);
	font-size: 0.875rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	opacity: 0.85;
}

.hipno-hero__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1.1;
	color: #fff;
	margin: 0 0 2rem;
}

.hipno-hero__title-accent {
	color: var(--hipno-sage-200);
}

.hipno-hero__br {
	display: none;
}

@media (min-width: 640px) {
	.hipno-hero__br {
		display: block;
	}
}

.hipno-hero__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	color: oklch(0.95 0.02 80 / 0.9);
	line-height: 1.6;
	margin: 0 0 2.5rem;
	max-width: 42rem;
}

.hipno-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hipno-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	border-radius: 9999px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.hipno-btn--light {
	background: rgba(255, 255, 255, 0.95);
	color: var(--hipno-sage-800);
}

.hipno-btn--light:hover {
	background: #fff;
	box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.hipno-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-weight: 500;
}

.hipno-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.hipno-btn--primary {
	background: var(--hipno-sage-700);
	color: #fff;
}

.hipno-btn--primary:hover {
	background: var(--hipno-sage-800);
	box-shadow: 0 10px 25px oklch(0.38 0.07 145 / 0.2);
}

.hipno-btn--whatsapp {
	background: #25d366;
	color: #fff;
	margin-top: 2.5rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.875rem 1.5rem;
}

.hipno-btn--whatsapp:hover {
	background: #20bd5a;
}

.hipno-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	background: none;
	border: 0;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.hipno-hero__scroll:hover {
	color: rgba(255, 255, 255, 0.9);
}

.hipno-hero__scroll-icon {
	display: block;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid currentColor;
	animation: hipno-bounce 2s ease-in-out infinite;
}

@keyframes hipno-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}

.hipno-hero__wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 0;
}

.hipno-hero__wave-svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

/* --- Sekcje ogólne --- */
.hipno-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

@media (min-width: 640px) {
	.hipno-section {
		padding: 8rem 0;
	}
}

.hipno-eyebrow {
	display: inline-block;
	color: var(--hipno-sage-500);
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hipno-eyebrow--on-dark {
	color: var(--hipno-sage-300);
}

.hipno-section__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--hipno-sage-900);
	line-height: 1.15;
	margin: 0 0 1.5rem;
}

.hipno-section__title-accent {
	color: var(--hipno-sage-500);
}

.hipno-section__lead {
	font-size: 1.125rem;
	color: var(--hipno-sage-600);
	line-height: 1.7;
	margin: 0;
	max-width: 42rem;
}

.hipno-section__intro {
	max-width: 42rem;
	margin-bottom: 4rem;
}

.hipno-section__intro--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.hipno-section__intro--center .hipno-section__lead {
	margin-left: auto;
	margin-right: auto;
}

/* --- Usługi --- */
.hipno-services {
	margin-top: -2.5rem;
}

.hipno-services__blob {
	position: absolute;
	top: -10rem;
	right: -10rem;
	width: 600px;
	height: 600px;
	opacity: 0.04;
	pointer-events: none;
	background: radial-gradient(circle, var(--hipno-sage-600) 0%, transparent 70%);
}

.hipno-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hipno-services__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

.hipno-service-card {
	position: relative;
	padding: 2rem 2.5rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	border: 1px solid transparent;
	transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s;
}

.hipno-service-card:hover {
	border-color: var(--hipno-sage-200);
	box-shadow: 0 20px 40px oklch(0.22 0.03 145 / 0.04);
	transform: translateY(-4px);
}

.hipno-service-card__icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: transform 0.3s;
}

.hipno-service-card:hover .hipno-service-card__icon {
	transform: scale(1.1);
}

.hipno-service-card__icon--sage {
	background: var(--hipno-sage-100);
	color: var(--hipno-sage-600);
}

.hipno-service-card__icon--clay {
	background: var(--hipno-clay-100);
	color: var(--hipno-clay-400);
}

.hipno-service-card__icon--sand {
	background: var(--hipno-sand-200);
	color: var(--hipno-sand-400);
}

.hipno-service-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.hipno-service-card__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
	margin: 0 0 1rem;
}

.hipno-service-card__text {
	margin: 0;
	color: var(--hipno-sage-600);
	line-height: 1.7;
}

/* --- O mnie --- */
.hipno-about {
	background: oklch(0.97 0.01 145 / 0.4);
}

.hipno-about__wave-top,
.hipno-about__wave-bottom {
	position: absolute;
	left: 0;
	right: 0;
	line-height: 0;
	pointer-events: none;
}

.hipno-about__wave-top {
	top: 0;
	transform: translateY(-1px);
}

.hipno-about__wave-bottom {
	bottom: 0;
	transform: translateY(1px);
}

.hipno-about__wave-svg {
	display: block;
	width: 100%;
	height: clamp(40px, 8vw, 80px);
}

.hipno-about__wave-svg--flip {
	transform: rotate(180deg);
}

.hipno-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.hipno-about__grid {
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
	}
}

.hipno-about__media {
	position: relative;
}

.hipno-about__portrait-wrap {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 25px 50px oklch(0.25 0.05 145 / 0.1);
}

.hipno-about__portrait {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

.hipno-about__portrait-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, oklch(0.25 0.05 145 / 0.2), transparent);
}

.hipno-about__room-card {
	position: absolute;
	bottom: -1.5rem;
	right: -1rem;
	width: 10rem;
	border-radius: 1rem;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 20px 40px oklch(0.25 0.05 145 / 0.1);
}

@media (min-width: 640px) {
	.hipno-about__room-card {
		width: 13rem;
		right: -2rem;
	}
}

.hipno-about__room-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top;
	display: block;
}

.hipno-about__blob {
	position: absolute;
	inset: -2rem;
	z-index: -1;
	opacity: 0.2;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><path d="M350,250Q340,370,230,420Q120,470,60,350Q0,230,70,130Q140,30,260,50Q380,70,350,250Z" fill="%23a3c4a8"/></svg>')
		no-repeat center / contain;
}

.hipno-about__copy p {
	font-size: 1.125rem;
	color: var(--hipno-sage-700);
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.hipno-about__copy p + p {
	font-size: 1rem;
	color: var(--hipno-sage-600);
}

.hipno-credentials {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.hipno-credentials {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1.5rem;
	}
}

.hipno-credentials__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--hipno-sage-700);
}

.hipno-credentials__item svg {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	border-radius: 0.75rem;
	background: var(--hipno-sage-100);
	color: var(--hipno-sage-600);
}

/* --- Filozofia --- */
.hipno-philosophy {
	padding: 7rem 0;
}

.hipno-philosophy__bg {
	position: absolute;
	inset: 0;
}

.hipno-philosophy__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hipno-philosophy__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		oklch(0.2 0.04 145 / 0.85),
		oklch(0.2 0.04 145 / 0.75),
		oklch(0.2 0.04 145 / 0.6)
	);
}

.hipno-philosophy__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.hipno-philosophy__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.hipno-philosophy__quote {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 500;
	color: #fff;
	line-height: 1.25;
	margin: 0 0 2rem;
}

.hipno-philosophy__rule {
	width: 4rem;
	height: 2px;
	background: oklch(0.65 0.08 145 / 0.6);
}

.hipno-philosophy__points {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hipno-phil-point {
	display: flex;
	gap: 1.5rem;
}

.hipno-phil-point__num {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 700;
	color: oklch(0.65 0.08 145 / 0.3);
	line-height: 1;
	flex-shrink: 0;
}

.hipno-phil-point__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem;
}

.hipno-phil-point__text {
	margin: 0;
	color: oklch(0.95 0.02 80 / 0.8);
	line-height: 1.6;
	font-size: 1rem;
}

/* --- Proces --- */
.hipno-process__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

@media (min-width: 768px) {
	.hipno-process__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.hipno-process-step__icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 0.75rem;
	border-radius: 1rem;
	background: var(--hipno-sage-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hipno-sage-600);
	transition: transform 0.3s, background 0.3s;
}

.hipno-process-step:hover .hipno-process-step__icon {
	background: var(--hipno-sage-200);
	transform: scale(1.1);
}

.hipno-process-step__icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.hipno-process-step__label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--hipno-sage-400);
	margin-bottom: 0.75rem;
}

.hipno-process-step__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
	margin: 0 0 0.75rem;
}

.hipno-process-step__text {
	margin: 0;
	font-size: 0.875rem;
	color: var(--hipno-sage-600);
	line-height: 1.6;
	max-width: 20rem;
	margin-left: auto;
	margin-right: auto;
}

.hipno-process__cta-wrap {
	text-align: center;
	margin-top: 4rem;
}

/* --- Opinie --- */
.hipno-testimonials__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	pointer-events: none;
	background-image: var(--hipno-testimonials-pattern);
	background-size: cover;
	background-position: center;
}

.hipno-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hipno-testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.hipno-testimonial-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border-radius: 1rem;
	padding: 2rem 2.5rem;
	border: 1px solid var(--hipno-sage-100);
	transition: border-color 0.5s, box-shadow 0.5s;
}

.hipno-testimonial-card:hover {
	border-color: var(--hipno-sage-200);
	box-shadow: 0 20px 40px oklch(0.22 0.03 145 / 0.04);
}

.hipno-testimonial-card__quote-icon {
	color: var(--hipno-sage-200);
	margin-bottom: 1.5rem;
}

.hipno-testimonial-card__quote-icon svg {
	width: 2rem;
	height: 2rem;
}

.hipno-testimonial-card__stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1.25rem;
	color: var(--hipno-sand-400);
}

.hipno-star {
	width: 1rem;
	height: 1rem;
}

.hipno-testimonial-card__text {
	margin: 0 0 2rem;
	color: var(--hipno-sage-700);
	line-height: 1.7;
}

.hipno-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--hipno-sage-100);
}

.hipno-testimonial-card__avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: var(--hipno-sage-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--hipno-sage-600);
	font-size: 0.875rem;
}

.hipno-testimonial-card__name {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
}

.hipno-testimonial-card__role {
	margin: 0.125rem 0 0;
	font-size: 0.75rem;
	color: var(--hipno-sage-500);
}

/* --- Blog preview --- */
.hipno-blog-preview {
	background: oklch(0.97 0.01 145 / 0.3);
}

.hipno-blog-preview__head {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
	.hipno-blog-preview__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.hipno-blog-preview__all {
	align-self: flex-start;
}

.hipno-blog-preview__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.hipno-blog-preview__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hipno-blog-preview__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hipno-post-card {
	height: 100%;
}

.hipno-post-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--hipno-sage-100);
	overflow: hidden;
	transition: box-shadow 0.5s, transform 0.5s;
}

.hipno-post-card__link:hover {
	box-shadow: 0 20px 40px oklch(0.55 0.08 145 / 0.12);
	transform: translateY(-4px);
}

.hipno-post-card__cover {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.hipno-post-card__img,
.hipno-post-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hipno-post-card__placeholder {
	background: var(--hipno-sage-100);
}

.hipno-post-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.25rem 0.75rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--hipno-sage-700);
	border-radius: 9999px;
}

.hipno-post-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hipno-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.75rem;
	color: var(--hipno-sage-400);
	margin-bottom: 0.75rem;
}

.hipno-post-card__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hipno-sage-900);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.hipno-post-card__link:hover .hipno-post-card__title {
	color: var(--hipno-sage-700);
}

.hipno-post-card__excerpt {
	margin: 0 0 1.25rem;
	flex: 1;
	font-size: 0.875rem;
	color: var(--hipno-sage-500);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hipno-post-card__more {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--hipno-sage-600);
}

.hipno-post-card__link:hover .hipno-post-card__more {
	color: var(--hipno-sage-800);
}

/* --- FAQ --- */
.hipno-faq {
	background: oklch(0.97 0.01 145 / 0.3);
}

.hipno-faq__wave-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-1px);
	line-height: 0;
}

.hipno-faq__wave-svg {
	display: block;
	width: 100%;
	height: clamp(40px, 8vw, 80px);
}

.hipno-faq__inner {
	max-width: 48rem;
	margin: 0 auto;
}

.hipno-faq-item {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border-radius: 1rem;
	border: 1px solid var(--hipno-sage-100);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.hipno-faq-item__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
}

.hipno-faq-item__q {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
}

.hipno-faq-item__chev {
	width: 1.25rem;
	height: 1.25rem;
	border-right: 2px solid var(--hipno-sage-500);
	border-bottom: 2px solid var(--hipno-sage-500);
	transform: rotate(45deg);
	transition: transform 0.3s;
	flex-shrink: 0;
}

.hipno-faq-item__btn[aria-expanded="true"] .hipno-faq-item__chev {
	transform: rotate(225deg);
}

.hipno-faq-item__panel {
	padding: 0 1.75rem 1.5rem;
}

.hipno-faq-item__panel p {
	margin: 0;
	color: var(--hipno-sage-600);
	line-height: 1.6;
}

/* --- Kontakt --- */
.hipno-contact {
	background: oklch(0.97 0.01 145 / 0.4);
}

.hipno-contact__wave-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-1px);
	line-height: 0;
}

.hipno-contact__wave-svg {
	display: block;
	width: 100%;
	height: clamp(40px, 8vw, 80px);
}

.hipno-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.hipno-contact__grid {
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
		align-items: start;
	}
}

.hipno-contact__list {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hipno-contact__row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.hipno-contact__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--hipno-sage-100);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--hipno-sage-600);
}

.hipno-contact__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.hipno-contact__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hipno-sage-500);
	margin: 0 0 0.125rem;
}

.hipno-contact__value {
	margin: 0;
	font-weight: 500;
	color: var(--hipno-sage-800);
	text-decoration: none;
}

a.hipno-contact__value:hover {
	color: var(--hipno-sage-600);
}

.hipno-contact__sub {
	margin: 0.125rem 0 0;
	font-size: 0.875rem;
	color: var(--hipno-sage-500);
}

.hipno-contact__form-wrap {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border-radius: 1.5rem;
	padding: 2rem 2.5rem;
	border: 1px solid var(--hipno-sage-100);
	box-shadow: 0 25px 50px oklch(0.22 0.03 145 / 0.03);
}

.hipno-form__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
	margin: 0 0 0.5rem;
}

.hipno-form__hint {
	font-size: 0.875rem;
	color: var(--hipno-sage-500);
	margin: 0 0 2rem;
}

.hipno-form__grid2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.hipno-form__grid2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hipno-form__field {
	margin-bottom: 1.25rem;
}

.hipno-form__field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--hipno-sage-700);
	margin-bottom: 0.5rem;
}

.hipno-form__optional {
	color: var(--hipno-sage-400);
	font-weight: 400;
}

.hipno-form__field input,
.hipno-form__field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid var(--hipno-sage-200);
	background: rgba(255, 255, 255, 0.6);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--hipno-sage-800);
}

.hipno-form__field input:focus,
.hipno-form__field textarea:focus {
	outline: none;
	border-color: var(--hipno-sage-300);
	box-shadow: 0 0 0 2px oklch(0.65 0.08 145 / 0.25);
}

.hipno-form__feedback {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--hipno-sage-700);
}

/* --- Stopka --- */
.hipno-site-footer {
	background: var(--hipno-sage-900);
	color: #fff;
	padding: 5rem 0 2rem;
}

.hipno-logo--footer .hipno-logo__mark--footer {
	background: rgba(255, 255, 255, 0.1);
}

.hipno-logo--footer .hipno-logo__name {
	color: #fff;
}

.hipno-logo--footer .hipno-logo__tag {
	color: var(--hipno-sage-300);
}

.hipno-site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.hipno-site-footer__grid {
		grid-template-columns: 5fr 3fr 4fr;
	}
}

.hipno-site-footer__desc {
	font-size: 0.875rem;
	color: var(--hipno-sage-300);
	line-height: 1.7;
	max-width: 22rem;
	margin: 1.5rem 0 0;
}

.hipno-site-footer__heading {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1.25rem;
}

.hipno-site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hipno-site-footer__links a {
	color: var(--hipno-sage-300);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s;
}

.hipno-site-footer__links a:hover {
	color: #fff;
}

.hipno-site-footer__contact p {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	color: var(--hipno-sage-300);
}

.hipno-site-footer__contact a {
	color: var(--hipno-sage-300);
	text-decoration: none;
}

.hipno-site-footer__contact a:hover {
	color: #fff;
}

.hipno-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	text-align: center;
}

@media (min-width: 640px) {
	.hipno-site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.hipno-site-footer__copy {
	margin: 0;
	font-size: 0.75rem;
	color: var(--hipno-sage-400);
}

.hipno-site-footer__legal {
	display: flex;
	gap: 1.5rem;
}

.hipno-site-footer__legal a {
	font-size: 0.75rem;
	color: var(--hipno-sage-400);
	text-decoration: none;
}

.hipno-site-footer__legal a:hover {
	color: var(--hipno-sage-200);
}

/* --- WhatsApp float --- */
.hipno-wa-float {
	position: fixed;
    bottom: 5.5rem;
    right: 1.8rem;
	z-index: 50;
	width: 3.5rem;
	height: 3.5rem;
}

.hipno-wa-float__ping {
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: #25d366;
	animation: hipno-ping 2s ease-out infinite;
	opacity: 0.2;
}

@keyframes hipno-ping {
	0% {
		transform: scale(1);
		opacity: 0.2;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

.hipno-wa-float__btn {
	position: relative;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 9999px;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 10px 25px oklch(0.55 0.2 150 / 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
}

.hipno-wa-float:hover .hipno-wa-float__btn {
	transform: scale(1.1);
	box-shadow: 0 12px 30px oklch(0.55 0.2 150 / 0.4);
}

.hipno-wa-float__tip {
	position: absolute;
	right: calc(100% + 0.75rem);
	top: 50%;
	transform: translateY(-50%);
	background: var(--hipno-sage-800);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hipno-wa-float:hover .hipno-wa-float__tip {
	opacity: 1;
}

/* --- Blog archiwum --- */
.hipno-blog-archive {
	background: var(--hipno-bg);
}

.hipno-blog-hero {
	position: relative;
	padding: 8rem 0 4rem;
	overflow: hidden;
}

@media (min-width: 640px) {
	.hipno-blog-hero {
		padding: 9rem 0 5rem;
	}
}

.hipno-blog-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, oklch(0.97 0.01 145 / 0.6), transparent);
}

.hipno-blog-hero__bg::before,
.hipno-blog-hero__bg::after {
	content: "";
	position: absolute;
	border-radius: 9999px;
	filter: blur(48px);
	opacity: 0.4;
}

.hipno-blog-hero__bg::before {
	width: 500px;
	height: 500px;
	top: 5rem;
	right: 0;
	background: var(--hipno-sage-100);
}

.hipno-blog-hero__bg::after {
	width: 400px;
	height: 400px;
	bottom: 0;
	left: 0;
	background: var(--hipno-sand-100);
}

.hipno-blog-hero__inner {
	position: relative;
	max-width: 42rem;
}

.hipno-blog-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 700;
	color: var(--hipno-sage-900);
	line-height: 1.1;
	margin: 0 0 1.5rem;
}

.hipno-blog-hero__title-accent {
	color: var(--hipno-sage-500);
	font-style: italic;
}

.hipno-blog-hero__lead {
	font-size: 1.125rem;
	color: var(--hipno-sage-600);
	line-height: 1.7;
	margin: 0;
}

.hipno-blog-filters {
	padding-bottom: 2rem;
}

.hipno-blog-filters__row {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: space-between;
}

@media (min-width: 640px) {
	.hipno-blog-filters__row {
		flex-direction: row;
		align-items: center;
	}
}

.hipno-cat-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hipno-cat-tab {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 9999px;
	text-decoration: none;
	background: var(--hipno-sage-50);
	color: var(--hipno-sage-600);
	transition: background 0.3s, color 0.3s;
}

.hipno-cat-tab:hover {
	background: var(--hipno-sage-100);
	color: var(--hipno-sage-800);
}

.hipno-cat-tab.is-active {
	background: var(--hipno-sage-700);
	color: #fff;
	box-shadow: 0 4px 12px oklch(0.38 0.07 145 / 0.2);
}

.hipno-blog-search input {
	width: 100%;
	min-width: 16rem;
	padding: 0.625rem 1rem 0.625rem 2.5rem;
	border-radius: 0.75rem;
	border: 1px solid var(--hipno-sage-200);
	background: #fff;
	font-size: 0.875rem;
}

.hipno-blog-grid-section {
	padding-bottom: 6rem;
	flex: 1;
}

.hipno-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.hipno-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hipno-blog-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hipno-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.hipno-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.hipno-pagination a,
.hipno-pagination span {
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	text-decoration: none;
	color: var(--hipno-sage-700);
	font-size: 0.875rem;
}

.hipno-pagination .current {
	background: var(--hipno-sage-100);
	font-weight: 600;
}

.hipno-blog-empty {
	text-align: center;
	padding: 5rem 1rem;
	color: var(--hipno-sage-500);
	font-size: 1.125rem;
}

/* --- Single post --- */
.hipno-single__cover {
	position: relative;
	padding-top: 5rem;
}

.hipno-single__cover-media {
	position: relative;
	overflow: hidden;
	min-height: min(55vh, 560px);
}

.hipno-single__cover-media .hipno-single__cover-inner {
	position: absolute;
}

.hipno-single__cover-img {
	width: 100%;
	height: min(55vh, 560px);
	object-fit: cover;
	display: block;
}

.hipno-single__cover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, oklch(0.25 0.05 145 / 0.7), oklch(0.25 0.05 145 / 0.1));
}

.hipno-single__cover-inner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem 1rem 2.5rem;
	z-index: 2;
}

@media (min-width: 640px) {
	.hipno-single__cover-inner {
		padding: 2.5rem 2rem 3rem;
	}
}

.hipno-single__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1rem;
}

.hipno-single__crumb a {
	color: inherit;
	text-decoration: none;
}

.hipno-single__crumb a:hover {
	color: rgba(255, 255, 255, 0.95);
}

.hipno-single__crumb-sep {
	opacity: 0.7;
}

.hipno-single__crumb-here {
	color: rgba(255, 255, 255, 0.85);
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hipno-single__badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.75rem;
	color: #fff;
	margin-bottom: 1rem;
}

.hipno-single__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.hipno-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

.hipno-single__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding: 3rem 0 5rem;
}

@media (min-width: 1024px) {
	.hipno-single__layout {
		grid-template-columns: 8fr 4fr;
		gap: 4rem;
		align-items: start;
	}
}

.hipno-single__content.entry-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--hipno-sage-700);
}

.hipno-single__content .wp-block-heading,
.hipno-single__content h2 {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--hipno-sage-900);
	margin: 2.5rem 0 1rem;
}

.hipno-single__content h3 {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 600;
	color: var(--hipno-sage-800);
	margin: 2rem 0 0.75rem;
}

.hipno-single__content p {
	margin: 0 0 1rem;
}

.hipno-single__cta-box {
	margin-top: 3.5rem;
	padding: 2rem 2.5rem;
	background: var(--hipno-sage-50);
	border-radius: 1rem;
	border: 1px solid var(--hipno-sage-100);
}

.hipno-single__cta-box h3 {
	margin-top: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--hipno-sage-900);
}

.hipno-single__cta-box p {
	color: var(--hipno-sage-600);
}

.hipno-single__back {
	margin-top: 2rem;
}

.hipno-single__back a {
	color: var(--hipno-sage-600);
	font-weight: 500;
	text-decoration: none;
}

.hipno-single__back a:hover {
	color: var(--hipno-sage-800);
}

.hipno-single__aside {
	position: sticky;
	top: 7rem;
}

.hipno-single__aside-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--hipno-sage-900);
	margin: 0 0 1.5rem;
}

.hipno-related {
	display: flex;
	gap: 1rem;
	padding: 0.75rem;
	margin: 0 -0.75rem;
	border-radius: 0.75rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.3s;
}

.hipno-related:hover {
	background: var(--hipno-sage-50);
}

.hipno-related__img {
	width: 5rem;
	height: 5rem;
	border-radius: 0.5rem;
	object-fit: cover;
	flex-shrink: 0;
}

.hipno-related__cat {
	display: block;
	font-size: 0.75rem;
	color: var(--hipno-sage-400);
	margin-bottom: 0.25rem;
}

.hipno-related__title {
	display: block;
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
	line-height: 1.3;
}

.hipno-related:hover .hipno-related__title {
	color: var(--hipno-sage-600);
}

.hipno-related__rt {
	display: block;
	font-size: 0.75rem;
	color: var(--hipno-sage-400);
	margin-top: 0.25rem;
}

.hipno-single__aside-box {
	margin-top: 2.5rem;
	padding: 1.5rem;
	background: var(--hipno-sage-50);
	border-radius: 1rem;
	border: 1px solid var(--hipno-sage-100);
}

.hipno-single__aside-box h4 {
	font-family: var(--font-display);
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	color: var(--hipno-sage-900);
}

.hipno-single__aside-box p {
	font-size: 0.875rem;
	color: var(--hipno-sage-500);
	margin: 0 0 1rem;
	line-height: 1.6;
}

.hipno-single__aside-box a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--hipno-sage-700);
	text-decoration: none;
}

.hipno-single__aside-box a:hover {
	color: var(--hipno-sage-900);
}

/* --- Strona --- */
.hipno-page-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: var(--hipno-sage-900);
	margin: 0 0 2rem;
}

.hipno-page-article .wp-block-heading {
	font-family: var(--font-display);
}

/* --- 404 --- */
.hipno-404 {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 0;
}

.hipno-404__inner {
	text-align: center;
	max-width: 28rem;
}

.hipno-404__code {
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 700;
	color: var(--hipno-sage-900);
	margin: 0 0 0.5rem;
}

.hipno-404__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--hipno-sage-800);
	margin: 0 0 1rem;
}

.hipno-404__text {
	color: var(--hipno-sage-600);
	margin: 0 0 2rem;
	line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: oklch(0.95 0.01 80);
}
::-webkit-scrollbar-thumb {
	background: oklch(0.7 0.04 145);
	border-radius: 4px;
}

::selection {
	background: oklch(0.88 0.04 145);
	color: var(--hipno-fg);
}
