/* ============ CUSTOM PROPERTIES ============ */
:root {
	--pink: #ee6c8b;
	--pink-dark: #d24a6b;
	--pink-light: #ffe3ea;
	--teal: #3ec6c6;
	--teal-dark: #2aa3a3;
	--yellow: #ffc857;
	--cream: #fffaf3;
	--cream-alt: #fdf1e7;
	--ink: #332c3b;
	--ink-soft: #6b6373;
	--white: #ffffff;
	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 32px;
	--shadow-sm: 0 4px 14px rgba(51, 44, 59, 0.08);
	--shadow: 0 14px 40px rgba(51, 44, 59, 0.14);
	--shadow-lg: 0 24px 60px rgba(51, 44, 59, 0.22);
	--header-h: 84px;
	--ease: cubic-bezier(0.22, 0.85, 0.32, 1);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Nunito', sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}
button {
	font: inherit;
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
}
h1,
h2,
h3,
h4 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ink);
}
section {
	position: relative;
}
.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.icon {
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* generic eyebrow / headings */
.eyebrow {
	display: inline-block;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: var(--pink-dark);
	margin-bottom: 10px;
}
.eyebrow.light {
	color: var(--yellow);
}
.center {
	text-align: center;
	display: block;
}
h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	margin-bottom: 16px;
}
h2.light {
	color: var(--white);
}

/* ============ SCROLL REVEAL ============ */
.reveal,
.reveal-item {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.in-view,
.reveal-item.in-view {
	opacity: 1;
	transform: translateY(0);
}
.service-cards .reveal:nth-child(1) {
	transition-delay: 0.05s;
}
.service-cards .reveal:nth-child(2) {
	transition-delay: 0.15s;
}
.service-cards .reveal:nth-child(3) {
	transition-delay: 0.25s;
}
.service-cards .reveal:nth-child(4) {
	transition-delay: 0.35s;
}
.gallery-grid .reveal:nth-child(4n + 1) {
	transition-delay: 0.05s;
}
.gallery-grid .reveal:nth-child(4n + 2) {
	transition-delay: 0.15s;
}
.gallery-grid .reveal:nth-child(4n + 3) {
	transition-delay: 0.25s;
}
.gallery-grid .reveal:nth-child(4n + 4) {
	transition-delay: 0.35s;
}
.timeline .reveal:nth-child(odd) {
	transition-delay: 0.05s;
}
.timeline .reveal:nth-child(even) {
	transition-delay: 0.15s;
}

/* ============ BUTTONS ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border-radius: 50px;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	transition:
		transform 0.35s var(--ease),
		box-shadow 0.35s var(--ease),
		background 0.35s var(--ease);
}
.btn-primary {
	background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
	color: var(--white);
	box-shadow: 0 10px 26px rgba(214, 72, 106, 0.4);
}
.btn-primary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 34px rgba(214, 72, 106, 0.5);
}
.btn-ghost {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(6px);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.28);
	transform: translateY(-4px);
}
.btn-lg {
	padding: 18px 42px;
	font-size: 1.1rem;
	margin-top: 10px;
}

/* ============ HEADER ============ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 22px 0;
	transition:
		padding 0.35s var(--ease),
		background 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
	padding: 12px 0;
	background: rgba(255, 250, 243, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-sm);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.15;
	color: var(--white);
	transition: color 0.35s var(--ease);
	white-space: nowrap;
}
.logo--stacked {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.site-header.scrolled .logo {
	color: var(--ink);
}
.logo-highlight {
	color: var(--yellow);
}
.site-header.scrolled .logo-highlight {
	color: var(--pink);
}
.site-footer .logo span {
	color: var(--yellow);
}
.logo-tag {
	font-family: 'Nunito', sans-serif;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	transition: color 0.35s var(--ease);
}
.site-header.scrolled .logo-tag {
	color: var(--ink-soft);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}
.main-nav a {
	position: relative;
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--white);
	padding: 6px 0;
	transition: color 0.3s var(--ease);
}
.site-header.scrolled .main-nav a {
	color: var(--ink);
}
.main-nav a:not(.nav-cta)::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--yellow);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s var(--ease);
}
.site-header.scrolled .main-nav a:not(.nav-cta)::after {
	background: var(--pink);
}
.main-nav a:not(.nav-cta):hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.nav-cta {
	background: var(--white);
	color: var(--pink-dark) !important;
	padding: 10px 22px;
	border-radius: 50px;
	box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	color: var(--white);
	position: relative;
	z-index: 1001;
}
.site-header.scrolled .nav-toggle {
	color: var(--ink);
}
.nav-toggle .icon {
	width: 26px;
	height: 26px;
	position: absolute;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.nav-toggle .icon-x {
	opacity: 0;
	transform: rotate(-90deg);
}
.nav-toggle.open .icon-menu {
	opacity: 0;
	transform: rotate(90deg);
}
.nav-toggle.open .icon-x {
	opacity: 1;
	transform: rotate(0);
}

/* ============ HERO ============ */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	padding: calc(var(--header-h) + 40px) 0 50px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
	0% {
		transform: scale(1) translate(0, 0);
	}
	100% {
		transform: scale(1.12) translate(-1%, -1%);
	}
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(51, 20, 35, 0.72) 0%,
		rgba(51, 20, 35, 0.55) 45%,
		rgba(51, 20, 35, 0.85) 100%
	);
}
.hero-shapes {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.55;
	animation: float 9s ease-in-out infinite;
}
.shape-1 {
	width: 90px;
	height: 90px;
	background: var(--yellow);
	top: 18%;
	left: 8%;
	animation-duration: 10s;
}
.shape-2 {
	width: 60px;
	height: 60px;
	background: var(--teal);
	top: 65%;
	left: 88%;
	animation-duration: 8s;
	animation-delay: 0.6s;
}
.shape-3 {
	width: 40px;
	height: 40px;
	background: var(--white);
	top: 30%;
	left: 80%;
	animation-duration: 7s;
	animation-delay: 1.2s;
}
.shape-4 {
	width: 70px;
	height: 70px;
	background: var(--pink-light);
	top: 75%;
	left: 15%;
	animation-duration: 11s;
	animation-delay: 0.3s;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0) translateX(0);
	}
	50% {
		transform: translateY(-26px) translateX(14px);
	}
}

.hero-content {
	position: relative;
	z-index: 3;
	color: var(--white);
	text-align: center;
	max-width: 840px;
	margin: auto auto 50px;
}
.hero-eyebrow {
	display: inline-block;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 0.85rem;
	color: var(--yellow);
	margin-bottom: 18px;
}
.hero h1 {
	font-size: clamp(2.1rem, 5.2vw, 3.6rem);
	color: var(--white);
	margin-bottom: 22px;
}
.hero h1 em {
	font-style: normal;
	color: var(--pink-light);
}
.hero-lead {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.92);
	max-width: 640px;
	margin: 0 auto 34px;
	font-weight: 600;
}
.hero-actions {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
}

/* hero transition delays for staggered entrance */
.hero .reveal-item {
	transition-delay: 0.1s;
}
.hero .reveal-item:nth-child(2) {
	transition-delay: 0.25s;
}
.hero .reveal-item:nth-child(3) {
	transition-delay: 0.4s;
}
.hero .reveal-item:nth-child(4) {
	transition-delay: 0.55s;
}

.hero-panel {
	position: relative;
	z-index: 4;
}
.hero-services {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.hs-card {
	aspect-ratio: 1/1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
	padding: 14px 10px;
	background: rgba(20, 14, 20, 0.32);
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	border-radius: 6px;
	color: var(--white);
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	font-size: 0.86rem;
	transition:
		transform 0.35s var(--ease),
		background 0.35s var(--ease),
		border-color 0.35s var(--ease);
}
.hs-card .icon {
	width: 34px;
	height: 34px;
	color: var(--white);
	transition: transform 0.35s var(--ease);
}
.hs-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--yellow);
}
.hs-card:hover .icon {
	color: var(--yellow);
	transform: scale(1.1);
}

.scroll-cue {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	color: var(--white);
	opacity: 0.85;
	animation: bounce 2s ease-in-out infinite;
}
.scroll-cue .icon {
	width: 28px;
	height: 28px;
}
@keyframes bounce {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 8px);
	}
}

/* ============ ABOUT ============ */
.about {
	padding: 150px 0 110px;
}
.about-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
	align-items: center;
}
.about-media {
	position: relative;
}
.about-media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4/5;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.about-media:hover img {
	transform: scale(1.02) rotate(-0.5deg);
}
.about-media-badge {
	position: absolute;
	bottom: -18px;
	right: -18px;
	background: var(--yellow);
	color: var(--ink);
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	padding: 14px 22px;
	border-radius: 50px;
	box-shadow: var(--shadow);
	font-size: 0.92rem;
	transform: rotate(-4deg);
}
.about-text h2 {
	margin-bottom: 18px;
}
.about-text p {
	color: var(--ink-soft);
	margin-bottom: 16px;
	font-size: 1.03rem;
}
.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}
.pill {
	background: var(--pink-light);
	color: var(--pink-dark);
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	padding: 8px 16px;
	border-radius: 50px;
}

/* ============ OFFER INTRO ============ */
.offer-intro {
	padding: 40px 0 70px;
	text-align: center;
}
.offer-intro h2 {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.offer-lead {
	max-width: 700px;
	margin: 0 auto 14px;
	color: var(--ink-soft);
	font-size: 1.05rem;
}
.offer-lead-2 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	color: var(--pink-dark);
}

/* ============ SERVICE GROUPS ============ */
.service-group {
	padding: 70px 0;
}
.service-group.alt-bg {
	background: var(--cream-alt);
}
.group-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 44px;
}
.group-head h3 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	margin-bottom: 8px;
}
.group-head p {
	color: var(--ink-soft);
}

.service-cards {
	display: grid;
	gap: 26px;
}
.service-cards.cols-2 {
	grid-template-columns: repeat(2, 1fr);
}
.service-cards.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.service-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 34px 26px;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(51, 44, 59, 0.06);
	text-align: center;
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease),
		border-color 0.4s var(--ease);
	scroll-margin-top: 110px;
}
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow);
	border-color: var(--pink-light);
}
.sc-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--pink-light), #fff);
	border-radius: 50%;
	color: var(--pink-dark);
	transition:
		transform 0.5s var(--ease),
		background 0.5s var(--ease);
}
.sc-icon .icon {
	width: 34px;
	height: 34px;
}
.service-card:hover .sc-icon {
	transform: scale(1.1) rotate(-8deg);
	background: linear-gradient(135deg, var(--yellow), #ffe9b8);
	color: #8a5a10;
}
.service-card h4 {
	font-size: 1.12rem;
	margin-bottom: 10px;
}
.service-card p {
	color: var(--ink-soft);
	font-size: 0.96rem;
}

/* ============ FEATURE BLOCK (edukacja wczesnoszkolna) ============ */
.feature-block {
	padding: 80px 0;
}
.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.feature-media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 5/4;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.feature-media:hover img {
	transform: scale(1.03);
}
.feature-text .sc-icon {
	margin: 0 0 22px;
}
.feature-text h3 {
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	margin-bottom: 16px;
}
.feature-text p {
	color: var(--ink-soft);
	font-size: 1.03rem;
}

/* ============ GALLERY ============ */
.gallery {
	padding: 100px 0;
	text-align: center;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 50px;
	text-align: left;
}
.g-item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1/1;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}
.g-item:nth-child(4n + 1) {
	aspect-ratio: 1/1.2;
}
.g-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.g-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(51, 20, 35, 0) 40%,
		rgba(51, 20, 35, 0.55) 100%
	);
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}
.g-item .g-zoom {
	position: absolute;
	bottom: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	padding: 8px;
	box-sizing: border-box;
	background: var(--white);
	color: var(--pink-dark);
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.6);
	transition:
		opacity 0.4s var(--ease),
		transform 0.4s var(--ease);
}
.g-item:hover img {
	transform: scale(1.08);
}
.g-item:hover::after {
	opacity: 1;
}
.g-item:hover .g-zoom {
	opacity: 1;
	transform: scale(1);
}

/* ============ EDUCATION TIMELINE ============ */
.education {
	padding: 100px 0;
}
.timeline {
	max-width: 760px;
	margin: 50px auto 0;
	position: relative;
	padding-left: 34px;
	border-left: 2px dashed var(--pink-light);
}
.timeline li {
	position: relative;
	padding-bottom: 30px;
	padding-left: 26px;
}
.timeline li:last-child {
	padding-bottom: 0;
}
.t-dot {
	position: absolute;
	left: -43px;
	top: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0 5px var(--pink-light);
	transition: transform 0.4s var(--ease);
}
.timeline li.in-view .t-dot {
	transform: scale(1.15);
}
.timeline p {
	font-weight: 600;
	color: var(--ink);
}

/* ============ CTA / CONTACT ============ */
.cta-contact {
	padding: 120px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	color: var(--white);
}
.cta-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			160deg,
			rgba(51, 20, 40, 0.92) 10%,
			rgba(214, 74, 107, 0.88) 100%
		),
		url('../assets/tlo.jpg');
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.cta-inner {
	position: relative;
	z-index: 1;
}
.cta-lead {
	max-width: 620px;
	margin: 0 auto 40px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 980px;
	margin: 0 auto 44px;
}
.contact-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	border-radius: var(--radius);
	padding: 28px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition:
		transform 0.4s var(--ease),
		background 0.4s var(--ease);
}
.contact-card .icon {
	width: 30px;
	height: 30px;
	color: var(--yellow);
	margin-bottom: 6px;
}
.contact-card .c-label {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.8;
}
.contact-card .c-value {
	font-weight: 700;
}
a.contact-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.18);
}

/* ============ FOOTER ============ */
.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.75);
	padding: 60px 0 24px;
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 24px;
}
.site-footer .logo {
	color: var(--white);
}
.footer-inner p {
	margin-top: 10px;
	font-size: 0.92rem;
	max-width: 360px;
}
.footer-nav {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
}
.footer-nav a {
	font-weight: 600;
	transition: color 0.3s;
}
.footer-nav a:hover {
	color: var(--pink);
}
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}
.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-size: 1.1rem;
	transition:
		background 0.3s,
		color 0.3s,
		transform 0.3s;
}
.social-link:hover {
	background: var(--pink);
	color: var(--white);
	transform: translateY(-3px);
}
.copyright {
	font-size: 0.85rem;
	text-align: center;
	opacity: 0.7;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
	position: fixed;
	bottom: 26px;
	right: 26px;
	z-index: 900;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--pink-dark);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition:
		opacity 0.4s var(--ease),
		transform 0.4s var(--ease),
		visibility 0.4s;
}
.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top .icon {
	width: 22px;
	height: 22px;
}
.back-to-top:hover {
	background: var(--pink);
}

/* ============ LIGHTBOX ============ */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 14, 22, 0.92);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s var(--ease),
		visibility 0.4s;
}
.lightbox.open {
	opacity: 1;
	visibility: visible;
}
.lightbox img {
	max-width: 88vw;
	max-height: 82vh;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	transform: scale(0.92);
	transition: transform 0.4s var(--ease);
}
.lightbox.open img {
	transform: scale(1);
}
.lb-close,
.lb-prev,
.lb-next {
	position: absolute;
	color: var(--white);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	transition: background 0.3s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
	background: rgba(255, 255, 255, 0.22);
}
.lb-close {
	top: 26px;
	right: 26px;
}
.lb-prev {
	left: 26px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-next {
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-close .icon,
.lb-prev .icon,
.lb-next .icon {
	width: 24px;
	height: 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.about-media {
		max-width: 420px;
		margin: 0 auto;
	}
	.feature-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.feature-media {
		order: -1;
	}
	.service-cards.cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-services {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 760px) {
	:root {
		--header-h: 70px;
	}
	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: min(320px, 80vw);
		background: var(--cream);
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 26px;
		padding: 40px;
		transform: translateX(100%);
		transition: transform 0.45s var(--ease);
		box-shadow: var(--shadow-lg);
	}
	.main-nav.open {
		transform: translateX(0);
	}
	.main-nav a {
		color: var(--ink) !important;
		font-size: 1.1rem;
	}
	.main-nav a::after {
		background: var(--pink) !important;
	}
	.nav-toggle {
		display: flex;
	}
	.nav-cta {
		background: var(--pink);
		color: var(--white) !important;
	}

	.hero-services {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	.hs-card {
		font-size: 0.76rem;
		padding: 10px 6px;
		gap: 8px;
	}
	.hs-card .icon {
		width: 28px;
		height: 28px;
	}

	.service-cards.cols-2,
	.service-cards.cols-4 {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.about {
		padding: 110px 0 80px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
