:root {
	--color-rose: #c9a9b8;
	--color-text: #4f4f4f;
	--color-heading: #2d2d2d;
	--color-border: #e9e9e9;
	--color-soft: #f7f7f7;
	--font-body: 'Raleway', sans-serif;
	--font-heading: 'Prata', serif;
	--container: 1200px;
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: #fff;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-rose);
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.site-main {
	min-height: 40vh;
}

.site-header {
	background: #fff;
	border-bottom: 1px solid #f1f1f1;
}

.site-header__inner {
	padding: 24px 0;
	text-align: center;
	position: relative;
}

.site-branding {
	margin-bottom: 24px;
}

.site-logo img,
.custom-logo {
	max-height: 128px;
	width: auto;
	margin: 0 auto;
}

.desktop-nav {
	display: none;
}

.primary-menu,
.mobile-menu,
.header-socials {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.08em;
	font-weight: 500;
	color: #666;
}

.header-socials {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
	font-size: 18px;
}

.mobile-menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	font-size: 28px;
	color: #444;
	cursor: pointer;
	padding: 8px;
}

.mobile-nav {
	display: none;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #f1f1f1;
}

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

.mobile-menu li {
	margin: 0 0 12px;
}

.mobile-menu a {
	display: block;
	padding: 8px 0;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.08em;
	font-weight: 500;
}

.home-banner {
	margin-top: 24px;
}

.home-banner__media {
	position: relative;
	min-height: 220px;
	height: clamp(220px, 40vw, 400px);
	overflow: hidden;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-banner__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.home-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.home-banner__content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 16px;
}

.home-banner__content h1 {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 400;
}

.home-banner__content p {
	margin: 0;
	font-size: 16px;
	font-weight: 300;
}

.offer-grid-section {
	padding: 48px 0;
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.offer-card {
	display: block;
	text-align: center;
	position: relative;
}

.offer-card__image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f2f2f2;
	margin-bottom: 12px;
	border: 1px solid #f2f2f2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.offer-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.offer-card:hover .offer-card__image img {
	transform: scale(1.05);
}

.offer-card h3 {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12px;
	font-weight: 600;
	color: #333;
}

.offer-card p {
	margin: 6px 0 0;
	font-size: 11px;
	color: #9b9b9b;
}

.offer-card__badge {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	background: var(--color-rose);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 4px 8px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.price-gallery {
	background: #fafafa;
	border-top: 1px solid #f1f1f1;
	padding: 48px 0;
}

.price-gallery h2 {
	margin: 0 0 32px;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 400;
	color: var(--color-heading);
}

.price-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.price-gallery__grid img {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.front-page-content,
.default-page,
.content-area {
	padding: 0px;
}

.entry-title,
.archive-title {
	font-family: var(--font-heading);
	color: var(--color-heading);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	margin: 0 0 24px;
}

.post-card {
	padding: 24px;
	border: 1px solid var(--color-border);
	margin-bottom: 24px;
}

.post-card__title {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 400;
}

.site-footer {
	background: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 40px 0;
	margin-top: 32px;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.site-footer__left,
.site-footer__right {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
}

.footer-contact-item i {
	color: var(--color-rose);
	margin-top: 4px;
}

.footer-contact-item span {
	font-size: 12px;
	color: #9b9b9b;
}

.site-footer__right a {
	color: var(--color-rose);
}

.not-found {
	padding: 64px 0;
	text-align: center;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.screen-reader-text:focus {
	left: 16px;
	top: 16px;
	z-index: 9999;
	background: #fff;
	padding: 8px 12px;
	border: 1px solid #000;
	color: #000;
}

@media (min-width: 768px) {
	.offer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}

	.price-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

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

	.site-footer__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		text-align: left;
	}

	.site-footer__right {
		text-align: right;
		align-items: flex-end;
	}

	.footer-contact-item {
		justify-content: flex-start;
	}

	.price-gallery__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.page-imported__content {
	padding: 48px 0 72px;
	max-width: var(--container); /* Zmienione z 960px */
	margin: 0 auto;
}

.page-imported__content h1,
.page-imported__content h2,
.page-imported__content h3,
.page-imported__content h4,
.page-imported__content h5,
.page-imported__content h6 {
	font-family: var(--font-heading);
	color: var(--color-heading);
	line-height: 1.2;
	margin: 0 0 20px;
}

.page-imported__content h1 {
	font-size: clamp(32px, 4vw, 48px);
}

.page-imported__content h2 {
	font-size: clamp(26px, 3vw, 36px);
	margin-top: 28px;
}

.page-imported__content h3 {
	font-size: clamp(20px, 2.4vw, 28px);
	margin-top: 24px;
}

.page-imported__content p,
.page-imported__content li {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color-text);
	margin: 0 0 18px;
}

.page-imported__content ul,
.page-imported__content ol {
	margin: 0 0 24px 24px;
}

.page-imported__content img {
	margin: 24px 0;
	border-radius: 4px;
}

.page-imported__content iframe {
	width: 100%;
	max-width: 100%;
	min-height: 420px;
	border: 0;
	margin: 24px 0;
}

.page-imported__content form {
	margin: 24px 0;
}

.page-imported__content .wp-block-embed,
.page-imported__content .responsive-iframe {
	margin: 24px 0;
}

@media (max-width: 767px) {
	.page-imported__content {
		padding: 32px 0 48px;
	}

	.page-imported__content p,
	.page-imported__content li {
		font-size: 16px;
	}

	.page-imported__content iframe {
		min-height: 260px;
	}
}

.page-boxed {
	max-width: var(--container); /* Zmienione z 1140px */
	margin: 0 auto;
	padding: 48px 16px 72px;
}
.page-boxed > *:first-child {
	margin-top: 0;
}

.page-boxed h1,
.page-boxed h2,
.page-boxed h3,
.page-boxed h4,
.page-boxed h5,
.page-boxed h6 {
	font-family: var(--font-heading);
	color: var(--color-heading);
	line-height: 1.2;
	margin: 0 0 20px;
}

.page-boxed h1 {
	font-size: clamp(32px, 4vw, 46px);
}

.page-boxed h2 {
	font-size: clamp(26px, 3vw, 34px);
	margin-top: 28px;
}

.page-boxed h3 {
	font-size: clamp(21px, 2.2vw, 28px);
	margin-top: 24px;
}

.page-boxed p,
.page-boxed li {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color-text);
}

.page-boxed p,
.page-boxed ul,
.page-boxed ol,
.page-boxed blockquote,
.page-boxed table,
.page-boxed iframe,
.page-boxed form {
	margin-bottom: 20px;
}

.page-boxed ul,
.page-boxed ol {
	padding-left: 22px;
}

.page-boxed img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 24px 0;
}

.page-boxed iframe {
	width: 100%;
	min-height: 420px;
	border: 0;
}

@media (max-width: 767px) {
	.page-boxed {
		padding: 32px 16px 48px;
	}

	.page-boxed p,
	.page-boxed li {
		font-size: 16px;
	}

	.page-boxed iframe {
		min-height: 260px;
	}
}

/* =========================
   HEADER
   ========================= */

.site-header {
	position: relative;
	background: #ffffff;
	border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.site-header__topbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(45, 45, 45, 0.06);
	background: rgba(250, 248, 249, 0.96);
	backdrop-filter: blur(10px);
}

.site-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
}

.topbar-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.topbar-link,
.topbar-socials a,
.mobile-nav__contact a,
.mobile-nav__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
}

.topbar-link {
	gap: 10px;
	min-width: 0;
	color: #5c5c5c;
	font-size: 13px;
	text-decoration: none;
}

.topbar-link span {
	white-space: nowrap;
}

.topbar-socials,
.mobile-nav__socials {
	display: flex;
	align-items: center;
	gap: 8px;
}

.topbar-socials a,
.mobile-nav__socials a {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	color: #4f4f4f;
	text-decoration: none;
}

.site-header__main {
	position: relative;
	padding: 26px 0 18px;
	text-align: center;
}

.site-branding {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.site-logo img,
.custom-logo,
.site-logo-link img {
	display: block;
	max-height: 120px;
	width: auto;
	margin: 0 auto;
}

.desktop-nav {
	display: none;
}

.primary-menu,
.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu-btn {
	position: absolute;
	right: 0;
	top: 28px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(45, 45, 45, 0.12);
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	padding: 0;
}

.mobile-menu-btn__line {
	display: block;
	width: 18px;
	height: 2px;
	background: #2d2d2d;
	border-radius: 999px;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	display: none;
	margin-top: 14px;
	text-align: left;
}

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

.mobile-nav__inner {
}

.mobile-menu li {
	margin: 0;
}

.mobile-menu a {
	display: block;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #444;
	border-bottom: 1px solid rgba(45, 45, 45, 0.06);
}

.mobile-nav__contact {
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mobile-nav__contact a {
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
	min-width: 0;
	color: #4f4f4f;
	text-decoration: none;
	font-size: 14px;
}

.mobile-nav__socials {
	padding-top: 8px;
	justify-content: flex-start;
}

.primary-menu a:hover,
.mobile-menu a:hover,
.topbar-link:hover,
.topbar-socials a:hover,
.mobile-nav__contact a:hover,
.mobile-nav__socials a:hover {
	color: #c9a9b8;
}

.topbar-socials a:hover,
.mobile-nav__socials a:hover,
.mobile-menu-btn:hover {
	background: rgba(201, 169, 184, 0.08);
}

.primary-menu a,
.mobile-menu-btn,
.topbar-link,
.topbar-socials a,
.mobile-nav__contact a,
.mobile-nav__socials a,
.mobile-menu a,
.back-to-top {
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		opacity 0.25s ease,
		box-shadow 0.25s ease;
}

.site-header a:focus-visible,
.site-header button:focus-visible,
.back-to-top:focus-visible {
	outline: 2px solid #c9a9b8;
	outline-offset: 3px;
}

	.topbar-socials a {
		font-size: 20px !important;
	}

/* DESKTOP */
@media (min-width: 1024px) {
	.mobile-menu-btn,
	.mobile-nav {
		display: none !important;
	}

	.site-header__main {
		padding: 34px 0 20px;
	}

	.site-branding {
		margin-bottom: 24px;
	}

	.site-logo img,
	.custom-logo,
	.site-logo-link img {
		max-height: 150px;
	}

	.desktop-nav {
		display: block;
	}

	.primary-menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}

	.primary-menu li {
		margin: 0;
	}

	.primary-menu a {
		display: inline-flex;
		align-items: center;
		padding: 10px 0;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		text-decoration: none;
		color: #5a5a5a;
		position: relative;
	}

	.primary-menu a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 2px;
		width: 100%;
		height: 1px;
		background: #c9a9b8;
		transform: scaleX(0);
		transform-origin: center;
	}

	.primary-menu .current-menu-item > a,
	.primary-menu .current_page_item > a,
	.primary-menu a:hover {
		color: #2d2d2d;
	}

	.primary-menu .current-menu-item > a::after,
	.primary-menu .current_page_item > a::after,
	.primary-menu a:hover::after {
		transform: scaleX(1);
	}
}

/* TABLET / MOBILE */
@media (max-width: 1023px) {
	.site-header__main {
		padding: 16px 0 14px;
	}

	.site-branding {
		margin-bottom: 0;
	}

	.site-logo img,
	.custom-logo,
	.site-logo-link img {
		max-height: 90px;
	}

	.topbar-link {
		font-size: 12px;
	}

	.topbar-link span {
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 767px) {
	.site-header__topbar-inner {
		padding: 6px 0;
		align-items: center;
	}

	.topbar-left {
		gap: 2px 8px;
	}

	.topbar-link {
		gap: 8px;
		font-size: 11px;
		min-height: 38px;
	}

	.topbar-socials {
		gap: 2px;
	}

	.topbar-socials a {
		width: 38px;
		height: 38px;
		min-width: 38px;
		min-height: 38px;
		font-size: 20px !important;
	}

	.site-header__main {
		padding: 14px 0 10px;
	}

	.site-logo img,
	.custom-logo,
	.site-logo-link img {
		max-height: 78px;
	}

	.mobile-menu-btn {
		top: 18px;
		width: 44px;
		height: 44px;
	}

	.mobile-menu a {
		font-size: 13px;
		letter-spacing: 0.07em;
	}

	.mobile-nav__contact a {
		font-size: 13px;
		word-break: break-word;
	}
}

/* =========================
   BACK TO TOP
   ========================= */

.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1200;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(45, 45, 45, 0.92);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover {
	background: #c9a9b8;
	color: #ffffff;
}

@media (max-width: 767px) {
	.back-to-top {
		right: 14px;
		bottom: 14px;
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header *,
	.site-header *::before,
	.site-header *::after,
	.back-to-top {
		transition: none !important;
		animation: none !important;
	}
}

/* =========================
   PAGE HERO / BREADCRUMBS
   ========================= */

.page-hero {
	background: #faf8f9;
	border-bottom: 1px solid rgba(45, 45, 45, 0.06);
}

.page-hero__inner {
	padding: 26px 0 30px;
	text-align: center;
}

.page-hero__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 10px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.6;
	color: #7a7a7a;
	text-align: center;
}

.page-hero__breadcrumbs a {
	color: #7a7a7a;
	text-decoration: none;
}

.page-hero__breadcrumbs a:hover {
	color: #c9a9b8;
}

.breadcrumb-separator {
	color: #b9a8b1;
	font-size: 12px;
	line-height: 1;
}

.breadcrumb-current {
	color: #4f4f4f;
}

.page-hero__title {
	margin: 0;
	font-family: 'Prata', serif;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.15;
	color: #2d2d2d;
	text-align: center;
}

@media (max-width: 767px) {
	.page-hero__inner {
		padding: 18px 0 22px;
	}

	.page-hero__breadcrumbs {
		font-size: 12px;
		gap: 4px 8px;
		margin-bottom: 8px;
	}

	.page-hero__title {
		font-size: clamp(26px, 7vw, 34px);
	}
}

.mobile-menu-btn {
	z-index: 1002;
}

.mobile-nav {
	position: relative;
	z-index: 1001;
}

@media (max-width: 1023px) {
	.desktop-nav {
		display: none !important;
	}

	.mobile-nav.is-open {
		display: block !important;
	}
}