:root {
	--bg: #fff8fc;
	--bg-alt: #fff;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-strong: #ffffff;
	--text: #2d2434;
	--muted: #6c5b70;
	--line: rgba(79, 53, 82, 0.12);
	--accent: #d94c8f;
	--accent-dark: #9b2f63;
	--accent-soft: #ffe2ee;
	--shadow: 0 20px 50px rgba(96, 46, 83, 0.12);
	--radius: 24px;
	--radius-sm: 16px;
	--wrap: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

body {
	margin: 0;
	font-family: "DM Sans", Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(255, 210, 231, 0.8), transparent 32%),
		radial-gradient(circle at right, rgba(245, 235, 255, 0.85), transparent 25%),
		linear-gradient(180deg, #fff7fb 0%, #fff 35%, #fff7fb 100%);
	line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

.wrap {
	width: min(calc(100% - 2rem), var(--wrap));
	margin: 0 auto;
}

.section {
	padding: 5rem 0;
}

.section-alt {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(8px);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 2rem;
}

.section-heading-inline {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: end;
	flex-wrap: wrap;
}

.section-heading h2,
.hero h1,
.about-grid h2,
.contact-section h2 {
	font-family: "Playfair Display", Georgia, serif;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0;
}

.section-heading h2,
.about-grid h2,
.contact-section h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	margin-bottom: 0.75rem;
}

.section-heading p,
.about-grid p,
.contact-section p {
	margin: 0;
	color: var(--muted);
}

.eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 248, 252, 0.75);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 0;
}

.brand img {
	height: clamp(48px, 6vw, 64px);
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.site-nav a {
	font-weight: 600;
	color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--accent-dark);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 0.28rem;
	background: none;
	border: 0;
	padding: 0.3rem;
	cursor: pointer;
}

.nav-toggle span {
	width: 1.5rem;
	height: 2px;
	background: var(--text);
	border-radius: 999px;
}

.hero {
	padding: 4.5rem 0 4rem;
}

.hero-grid,
.about-grid,
.contact-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.hero-grid {
	grid-template-columns: 1.08fr 0.92fr;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 6vw, 5.4rem);
	margin-bottom: 1rem;
}

.lead {
	font-size: 1.12rem;
	color: var(--muted);
	max-width: 60ch;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin: 2rem 0 1.4rem;
	flex-wrap: wrap;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: #fff;
	font-weight: 700;
	box-shadow: var(--shadow);
	cursor: pointer;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button-ghost {
	background: rgba(255, 255, 255, 0.65);
	color: var(--accent-dark);
	border-color: rgba(155, 47, 99, 0.18);
	box-shadow: none;
}

.button-sm {
	min-height: 2.6rem;
	padding-inline: 1rem;
}

.hero-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.7rem;
}

.hero-points li {
	position: relative;
	padding-left: 1.7rem;
	font-weight: 500;
}

.hero-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: var(--accent-soft);
	box-shadow: inset 0 0 0 4px var(--accent);
}

.hero-art {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 1rem;
	align-items: center;
}

.hero-stack {
	display: grid;
	gap: 1rem;
}

.hero-card,
.card,
.price-card,
.contact-form,
.contact-card,
.note-panel {
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-card {
	overflow: hidden;
}

.hero-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* .hero-card-large {
	min-height: 500px;
} */

.tilt-a {
	transform: rotate(-2deg);
}

.tilt-b {
	transform: rotate(3deg);
}

.tilt-c {
	transform: rotate(-3deg);
}

.cards {
	display: grid;
	gap: 1.5rem;
}

.three-up {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
	overflow: hidden;
}

.service-card img,
.about-art img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.card-body {
	padding: 1.4rem;
}

.card-body h3,
.price-card h3,
.note-panel h3 {
	margin: 0 0 0.6rem;
	font-size: 1.35rem;
}

.card-body p,
.price-card p,
.note-panel p {
	margin: 0;
	color: var(--muted);
}

.filters {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.filter {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.85);
	color: var(--muted);
	cursor: pointer;
	font-weight: 700;
}

.filter.is-active {
	background: var(--accent-dark);
	color: #fff;
	border-color: transparent;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.gallery-item {
	padding: 0;
	border: 0;
	background: var(--surface-strong);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	cursor: pointer;
	text-align: left;
}

.gallery-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.gallery-item span {
	display: block;
	padding: 0.95rem 1rem 1rem;
	font-weight: 700;
	color: var(--text);
}

.gallery-item.is-hidden {
	display: none;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.price-card,
.note-panel,
.contact-form,
.contact-card {
	padding: 1.5rem;
}

.price-table {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
}

.price-table div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--line);
}

.price-table span {
	color: var(--muted);
}

.fine-print {
	margin-top: 1rem;
	font-size: 0.95rem;
}

.note-panel {
	margin-top: 1.5rem;
	background: linear-gradient(135deg, rgba(255, 226, 238, 0.95), rgba(255, 255, 255, 0.9));
}

.about-grid {
	grid-template-columns: 1fr 0.95fr;
}

.social-row {
	margin-top: 1.5rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-weight: 700;
}

.social-link img {
	width: 1.1rem;
	height: 1.1rem;
}

.contact-grid {
	grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
	display: inline-block;
	margin: 1.5rem 0 1rem;
	background: rgba(255, 255, 255, 0.85);
}

.contact-card .label {
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.contact-card a {
	font-size: 1.4rem;
	font-weight: 800;
}

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

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form label {
	display: grid;
	gap: 0.45rem;
	font-weight: 700;
}

.contact-form span {
	font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(79, 53, 82, 0.14);
	background: rgba(255, 255, 255, 0.95);
	color: var(--text);
}

.contact-form textarea {
	resize: vertical;
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.site-footer {
	padding: 1.6rem 0 2.5rem;
	border-top: 1px solid var(--line);
}

.footer-wrap {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-wrap p {
	margin: 0;
	color: var(--muted);
}

.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	place-items: center;
	padding: 1rem;
	background: rgba(26, 16, 24, 0.82);
	z-index: 200;
}

.lightbox.is-open {
	display: grid;
}

.lightbox img {
	max-width: min(100%, 1100px);
	max-height: 80vh;
	border-radius: 24px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
	margin: 0.85rem 0 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
}

.lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
}

@media (max-width: 980px) {

	.hero-grid,
	.about-grid,
	.contact-grid,
	.pricing-grid,
	.three-up,
	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-grid,
	.about-grid,
	.contact-grid {
		align-items: start;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-card-large {
		min-height: 0;
	}
}

@media (max-width: 760px) {

	html {
		scroll-padding-top: 6rem;
	}

	.section {
		padding: 4rem 0;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 1rem;
		left: 1rem;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid var(--line);
		border-radius: 20px;
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.section-heading-inline,
	.footer-wrap {
		align-items: start;
	}

	.about-grid,
	.contact-grid,
	.pricing-grid,
	.three-up,
	.gallery-grid,
	.field-grid {
		grid-template-columns: 1fr;
	}

	.service-card img,
	.about-art img,
	.gallery-item img {
		height: auto;
	}

	.hero-art {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		max-width: 280px;
		margin: 1rem auto 0;
		align-items: start;
	}

	.hero-stack {
		gap: 0.75rem;
	}

	.hero-card {
		width: 100%;
	}

	.hero-card img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
	}

	.hero-card-large {
		min-height: 0;
		max-height: none;
	}

	.hero-card-large img {
		max-height: 180px;
		object-fit: cover;
	}

	.hero-stack .hero-card img {
		max-height: 120px;
		object-fit: cover;
	}

	.hero-copy h1 {
		font-size: clamp(2.5rem, 13vw, 4rem);
	}

	.hero-actions {
		flex-direction: column;
	}

	.button,
	.button-sm {
		width: 100%;
	}
}