/*
Theme Name: Elight
Theme URI: http://localhost/Elight
Description: Elight — an elegant bridal/beauty makeup theme. Demo clone of the paletteaffair.in layout, built as a Hello Elementor child theme.
Author: Elight
Version: 1.0.0
Template: hello-elementor
Text Domain: elight
*/

/* ============================================================
   Design tokens
   ============================================================ */
:root {
	--pa-rose: #e01171;          /* hot pink from logo */
	--pa-rose-dark: #c00f60;
	--pa-brown: #000000;         /* black CTA / footer */
	--pa-brown-dark: #000000;    /* pure black */
	--pa-btn: #e01171;           /* hot pink buttons */
	--pa-ink: #000000;           /* black text/headings */
	--pa-text: #2c2523;          /* deep charcoal body text */
	--pa-cream: #fff5f7;         /* soft rose-cream background */
	--pa-gold: #d4af37;          /* metallic gold accents */
	--serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--sans: 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;
	--script: 'Parisienne', 'Cormorant Garamond', cursive;
	--maxw: 1340px;
}

/* ============================================================
   Base
   ============================================================ */
body.elight {
	margin: 0;
	font-family: var(--sans);
	color: var(--pa-text);
	font-size: 16px;
	line-height: 1.7;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

.elight h1, .elight h2, .elight h3, .elight h4, .elight h5, .elight h6 {
	font-family: var(--serif);
	color: var(--pa-ink);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 .5em;
}

.elight a { color: var(--pa-brown); text-decoration: none; }
.elight img { max-width: 100%; height: auto; display: block; }

.pa-container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	box-sizing: border-box;
}

.pa-btn {
	display: inline-block;
	background: var(--pa-btn);
	color: #fff;
	font-family: var(--sans);
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: 12px;
	padding: 14px 34px;
	border-radius: 2px;
	transition: background .25s ease, transform .25s ease;
}
.pa-btn:hover { background: #422f25; color: #fff; transform: translateY(-2px); }

.pa-section { padding: 84px 0; }
.pa-section--cream { background: var(--pa-cream); }
.pa-overline {
	text-transform: uppercase;
	letter-spacing: .35em;
	font-size: 12px;
	font-weight: 500;
	color: var(--pa-rose-dark);
	margin: 0 0 14px;
}
.pa-center { text-align: center; }

/* ============================================================
   Top bar
   ============================================================ */
.pa-topbar {
	background: #161210;
	color: #d9cfc8;
	font-size: 13px;
}
.pa-topbar .pa-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 38px;
	gap: 16px;
	flex-wrap: wrap;
}
.pa-topbar a { color: #f0e7e1; }
.pa-topbar a:hover { color: var(--pa-rose); }
.pa-topbar-social { display: flex; gap: 14px; }
.pa-topbar-social a { display: inline-flex; }

/* ============================================================
   Header / logo
   ============================================================ */
.pa-header { background: #fff; }
.pa-header-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 24px;
	position: relative;
}
.pa-logo { text-align: center; line-height: 1; }
.pa-logo a { color: var(--pa-ink); }
.pa-logo .pa-logo-name {
	font-family: var(--script);
	font-size: 46px;
	color: var(--pa-ink);
	display: block;
}
.pa-logo .pa-logo-sub {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: .42em;
	font-size: 10px;
	color: var(--pa-rose-dark);
	margin-top: 4px;
}

/* ============================================================
   Navigation
   ============================================================ */
.pa-nav { background: var(--pa-rose); }
.pa-nav .pa-container { display: flex; justify-content: center; }
.pa-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pa-nav li { position: relative; }
.pa-nav li a {
	display: block;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 13px;
	font-weight: 400;
	padding: 16px 20px;
	transition: background .2s ease;
}
.pa-nav li a:hover { background: rgba(0,0,0,.10); color: #fff; }

/* submenu */
.pa-nav li ul {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0,0,0,.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .22s ease;
	z-index: 50;
	flex-direction: column;
}
.pa-nav li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.pa-nav li ul li a {
	color: var(--pa-ink);
	padding: 12px 22px;
	letter-spacing: .08em;
	border-bottom: 1px solid #f0e6e0;
}
.pa-nav li ul li a:hover { background: var(--pa-cream); color: var(--pa-brown); }
.pa-nav .menu-item-has-children > a::after { content: " ▾"; font-size: 10px; opacity: .8; }

.pa-nav-toggle {
	display: none;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--pa-btn);
	color: #fff;
	border: 0;
	font-size: 20px;
	width: 44px;
	height: 40px;
	border-radius: 3px;
	cursor: pointer;
}

/* ============================================================
   Hero
   ============================================================ */
.pa-hero {
	display: flex;
	min-height: 540px;
	background: #000000;
	overflow: hidden;
	position: relative;
}
.pa-hero-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}
.pa-hero-video,
.pa-hero-gif {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pa-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(224, 17, 113, 0.2) 100%);
	z-index: 2;
}
.pa-hero-left,
.pa-hero-right {
	flex: 1 1 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 3;
}
.pa-hero-left {
	background-size: cover;
	background-position: center top;
}
.pa-hero-left::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.65));
}
.pa-hero-right { background: #000000; }
.pa-hero--has-media .pa-hero-left,
.pa-hero--has-media .pa-hero-right {
	background: transparent !important;
}
.pa-hero--has-media .pa-hero-left::after {
	display: none;
}
.pa-hero-left--blank {
	background: radial-gradient(120% 120% at 30% 20%, #ff85be, rgba(255,133,190,0) 60%),
		linear-gradient(135deg, #e01171 0%, #700030 60%, #000000 100%);
}
.pa-hero-left--blank::after { background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.pa-hero-initial {
	position: relative;
	z-index: 2;
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1;
	font-size: clamp(190px, 31vw, 450px);
	color: transparent;
	-webkit-text-stroke: 2px rgba(255,255,255,.2);
	opacity: .92;
}
.pa-hero-initial--light { -webkit-text-stroke-color: rgba(224,17,113,.25); }
.pa-hero-script {
	position: absolute;
	z-index: 4;
	text-align: center;
	color: #fff;
	transform: rotate(-6deg);
}
.pa-hero-script-text {
	display: block;
	font-family: var(--script);
	font-size: clamp(46px, 7vw, 98px);
	color: #fff;
	text-shadow: 0 6px 26px rgba(0,0,0,.5);
}
.pa-hero-script-sub {
	display: block;
	text-transform: uppercase;
	letter-spacing: .4em;
	font-size: 12px;
	color: var(--pa-rose);
	margin-top: 14px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

/* ----- Full-width hero slideshow ----- */
.pa-hero--slider {
	display: block;
	position: relative;
	min-height: clamp(560px, 90vh, 1000px);
}
.pa-hero-slides { position: absolute; inset: 0; z-index: 1; }
.pa-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease;
}
.pa-hero-slide.is-active { opacity: 1; }
.pa-hero-slide--blank {
	background: radial-gradient(120% 120% at 30% 20%, #ff85be, rgba(255,133,190,0) 60%),
		linear-gradient(135deg, #e01171 0%, #700030 60%, #000000 100%);
}
.pa-hero-slide .pa-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pa-hero--slider .pa-hero-overlay { z-index: 2; }
.pa-hero-center {
	position: relative;
	z-index: 3;
	min-height: clamp(560px, 90vh, 1000px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 50px 20px;
}
.pa-hero-brand {
	font-family: var(--script);
	font-size: clamp(56px, 9vw, 132px);
	line-height: 1;
	color: #fff;
	text-shadow: 0 6px 30px rgba(0,0,0,.55);
}
.pa-hero-center .pa-hero-script-text {
	font-family: var(--script);
	font-size: clamp(28px, 5vw, 58px);
	color: #ffd9ec;
	margin-top: 4px;
	text-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.pa-hero-center .pa-hero-script-sub {
	text-transform: uppercase;
	letter-spacing: .42em;
	font-size: 12px;
	color: #fff;
	margin-top: 18px;
	font-weight: 600;
}
.pa-hero-arrow {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	background: rgba(255,255,255,.18);
	color: #fff;
	border: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}
.pa-hero-arrow:hover { background: rgba(255,255,255,.38); }
.pa-hero-prev { left: 18px; }
.pa-hero-next { right: 18px; }
.pa-hero-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	z-index: 4;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.pa-hero-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,.45);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease;
}
.pa-hero-dot.is-active { background: #fff; }

/* ============================================================
   Intro
   ============================================================ */
.pa-intro { text-align: center; }
.pa-intro h2 {
	font-family: var(--script);
	font-size: 52px;
	color: var(--pa-ink);
	margin-bottom: 26px;
}
.pa-intro p { max-width: 760px; margin: 0 auto 16px; }
.pa-intro .pa-btn { margin-top: 24px; }

/* ============================================================
   Services
   ============================================================ */
.pa-services h2 { font-size: 44px; text-align: center; }
.pa-services .pa-sub { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.pa-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.pa-card {
	background: #fff;
	border: 1px solid #efe4dd;
	border-radius: 4px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.pa-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(107,85,74,.16); }
.pa-card-img {
	display: block;
	height: 190px;
	background: linear-gradient(135deg, #ff8ebc, #e01171);
}
.pa-card-img--photo { height: auto; }
.pa-card-img--photo img { width: 100%; height: 190px; object-fit: cover; display: block; }
.pa-card:nth-child(2) .pa-card-img { background: linear-gradient(135deg, #e01171, #8a0b46); }
.pa-card:nth-child(3) .pa-card-img { background: linear-gradient(135deg, #8a0b46, #300217); }
.pa-card:nth-child(4) .pa-card-img { background: linear-gradient(135deg, #ff8ebc, #c00f60); }
.pa-card:nth-child(5) .pa-card-img { background: linear-gradient(135deg, #c00f60, #400520); }
.pa-card:nth-child(6) .pa-card-img { background: linear-gradient(135deg, #f2529c, #9e0c50); }
.pa-card-body { padding: 24px; }
.pa-card-body h3 { font-size: 25px; margin-bottom: 8px; }
.pa-card-body p { margin: 0 0 16px; font-size: 14.5px; }
.pa-card-link {
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: 11px;
	font-weight: 600;
	color: var(--pa-rose-dark);
}

/* ============================================================
   Stats
   ============================================================ */
.pa-stats { background: var(--pa-cream); }
.pa-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}
.pa-stat { padding: 10px; }
.pa-stat .pa-stat-icon {
	font-size: 30px;
	color: var(--pa-rose-dark);
	margin-bottom: 12px;
}
.pa-stat h5 { font-size: 23px; margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.pa-testimonials { background: var(--pa-cream); }
.pa-testimonials h2 { text-align: center; font-size: 44px; margin-bottom: 44px; }

/* Photo + quote carousel */
.pa-testi-carousel { position: relative; display: flex; align-items: center; gap: 12px; }
.pa-testi-viewport { overflow: hidden; flex: 1 1 auto; }
.pa-testi-track { display: flex; transition: transform .55s ease; will-change: transform; }
.pa-testi-slide {
	flex: 0 0 50%;
	box-sizing: border-box;
	display: flex;
	gap: 28px;
	padding: 10px 26px;
	align-items: flex-start;
}
.pa-testi-person { flex: 0 0 168px; text-align: center; }
.pa-testi-photo {
	width: 168px;
	height: 200px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 14px;
	background: var(--pa-rose);
}
.pa-testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pa-testi-photo--initial {
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-family: var(--serif); font-size: 70px;
}
.pa-testi-name { font-family: var(--serif); color: var(--pa-rose-dark); font-size: 22px; margin: 0; }
.pa-testi-body { flex: 1 1 auto; }
.pa-testi-mark {
	font-family: var(--serif);
	font-size: 58px;
	color: var(--pa-rose);
	line-height: .5;
	display: block;
	margin-bottom: 14px;
}
.pa-testi-body p { font-style: italic; color: var(--pa-text); margin: 0; line-height: 1.75; }
.pa-testi-arrow {
	flex: 0 0 auto;
	width: 40px; height: 40px;
	background: var(--pa-rose);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}
.pa-testi-arrow:hover { background: var(--pa-rose-dark); }
.pa-testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.pa-testi-dots button {
	width: 9px; height: 9px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: var(--pa-rose);
	opacity: .4;
	cursor: pointer;
	transition: opacity .2s ease;
}
.pa-testi-dots button.is-active { opacity: 1; }
@media (max-width: 800px) {
	.pa-testi-slide { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 8px 12px; }
	.pa-testi-person { flex: 0 0 auto; }
	.pa-testi-mark { margin-bottom: 6px; }
}

/* ============================================================
   Instagram
   ============================================================ */
.pa-instagram { background: var(--pa-cream); text-align: center; }
.pa-instagram .pa-insta-handle {
	display: inline-block;
	color: var(--pa-rose-dark);
	margin-bottom: 8px;
}
.pa-instagram .pa-insta-handle:hover { color: var(--pa-brown); }
.pa-instagram h2 { font-size: 40px; margin-bottom: 40px; }
.pa-insta-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 1100px;
	margin: 0 auto;
}
/* Square photo tiles: each live embed is cropped to show just the post image */
.pa-insta-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
	background: #efe4dd;
}
.pa-insta-item .instagram-media {
	position: absolute !important;
	top: -54px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 !important;
	border: 0 !important;
	width: 100% !important;
}
.pa-insta-cta { margin-top: 40px; }
.pa-logo img.custom-logo { max-height: 64px; width: auto; margin: 0 auto; }

/* ============================================================
   Portfolio
   ============================================================ */
.pa-portfolio h2 { text-align: center; font-size: 44px; }
.pa-portfolio .pa-sub { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.pa-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.pa-portfolio-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 4px;
}
.pa-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pa-portfolio-item:hover img { transform: scale(1.06); }
.pa-portfolio-item--blank {
	background: linear-gradient(135deg, #ff8ebc, #e01171);
	opacity: .35;
}
.pa-portfolio-cap {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 18px 14px 12px;
	color: #fff;
	font-family: var(--serif);
	font-size: 17px;
	background: linear-gradient(transparent, rgba(40,25,20,.7));
	opacity: 0;
	transition: opacity .3s ease;
}
.pa-portfolio-item:hover .pa-portfolio-cap { opacity: 1; }

/* ============================================================
   Awards & Press
   ============================================================ */
.pa-awards h2 { font-size: 44px; }
.pa-awards .pa-sub { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.pa-awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.pa-award {
	text-align: center;
	background: var(--pa-cream);
	border: 1px solid #efe4dd;
	border-radius: 6px;
	padding: 30px 22px;
}
.pa-award-icon { font-size: 34px; color: var(--pa-rose-dark); margin-bottom: 14px; }
.pa-award-img {
	width: 100%;
	height: 150px;
	margin-bottom: 16px;
	border-radius: 4px;
	overflow: hidden;
}
.pa-award-img img { width: 100%; height: 100%; object-fit: cover; }
.pa-award h3 { font-size: 21px; margin-bottom: 8px; }
.pa-award p { font-size: 14px; margin: 0; }

/* ============================================================
   CTA before footer
   ============================================================ */
.pa-cta {
	background: var(--pa-brown);
	text-align: center;
	padding: 70px 0;
	color: #f4ece6;
}
.pa-cta .pa-overline { color: #e3cfc4; }
.pa-cta h2 { color: #fff; font-size: 48px; margin: 0 0 26px; }
.pa-cta .pa-btn { background: #fff; color: var(--pa-brown); }
.pa-cta .pa-btn:hover { background: #ffe5ee; color: var(--pa-brown-dark); }

/* ============================================================
   Footer
   ============================================================ */
.pa-footer {
	background: var(--pa-brown-dark);
	color: #d9cabf;
	padding: 60px 0 0;
	font-size: 14.5px;
}
.pa-footer a { color: #d9cabf; }
.pa-footer a:hover { color: #fff; }
.pa-footer-grid {
	display: grid;
	grid-template-columns: .8fr 1fr 1fr 1.2fr;
	gap: 36px;
	padding-bottom: 46px;
}
.pa-footer h6 {
	color: #fff;
	font-size: 19px;
	text-transform: none;
	margin-bottom: 18px;
}
.pa-footer ul { list-style: none; margin: 0; padding: 0; }
.pa-footer ul li { margin-bottom: 10px; }
.pa-footer-social { display: flex; gap: 12px; }
.pa-footer-social a {
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,.10);
	display: inline-flex; align-items: center; justify-content: center;
}
.pa-footer-social a:hover { background: var(--pa-rose); }
.pa-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.14);
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
}
.pa-footer-bottom p { margin: 0; }

/* ============================================================
   WhatsApp float
   ============================================================ */
.pa-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	z-index: 999;
}
.pa-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   Generic inner page content
   ============================================================ */
.pa-page { padding: 64px 0; }
.pa-page-header {
	background: var(--pa-cream);
	text-align: center;
	padding: 60px 0;
}
.pa-page-header h1 { font-size: 46px; }
.pa-page .pa-container { max-width: 1180px; }
.pa-page h1, .pa-page h2 { color: var(--pa-ink); }

/* Service / inner-page banner (from the page's Featured Image) */
.pa-service-banner {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	background-color: #2a1d17;
}
.pa-service-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,12,8,.10) 0%, rgba(20,12,8,.10) 55%, rgba(20,12,8,.55) 100%);
}
.pa-service-banner .pa-container {
	position: relative;
	z-index: 2;
	padding-bottom: 0;
}
.pa-service-title {
	display: inline-block;
	margin: 0;
	transform: translateY(50%);
	background: rgba(199,154,127,.92);
	color: #fff;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 40px;
	line-height: 1.1;
	padding: 16px 34px;
	border-radius: 3px;
	box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

/* ----- Styling for owner-added blocks inside .pa-page ----- */
.pa-page p { margin: 0 0 20px; }
.pa-page > .pa-container > p:first-of-type {
	font-size: 19px;
	line-height: 1.8;
	color: var(--pa-ink);
	text-align: center;
	max-width: 760px;
	margin: 0 auto 36px;
}
.pa-page h2 { font-family: var(--serif); font-size: 34px; margin: 40px 0 16px; }
.pa-page h3 { font-family: var(--serif); font-size: 26px; margin: 30px 0 12px; }
.pa-page ul, .pa-page ol { margin: 0 0 22px; padding-left: 22px; }
.pa-page li { margin-bottom: 8px; }
.pa-page a { color: var(--pa-rose-dark); text-decoration: underline; }
.pa-page blockquote {
	margin: 28px 0;
	padding: 6px 0 6px 24px;
	border-left: 3px solid var(--pa-rose);
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	color: var(--pa-ink);
}
/* Images */
.pa-page .wp-block-image,
.pa-page figure.wp-block-image { margin: 0 0 26px; }
.pa-page .wp-block-image img,
.pa-page img {
	border-radius: 6px;
	box-shadow: 0 14px 34px rgba(107,85,74,.14);
}
/* Masonry gallery — Pinterest-style columns, natural image heights */
.pa-page .wp-block-gallery {
	display: block !important;
	column-count: 3;
	column-gap: 16px;
	margin: 8px 0 30px;
	list-style: none;
	padding: 0;
}
.pa-page .wp-block-gallery figure.wp-block-image,
.pa-page .wp-block-gallery .wp-block-image {
	width: 100% !important;
	margin: 0 0 16px !important;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	overflow: hidden;
	border-radius: 6px;
	display: block;
}
.pa-page .wp-block-gallery img {
	width: 100% !important;
	height: auto !important;
	display: block;
	object-fit: contain !important;
	box-shadow: none;
	transition: transform .5s ease;
}
.pa-page .wp-block-gallery .wp-block-image:hover img { transform: scale(1.05); }
/* Buttons -> reuse the .pa-btn look */
.pa-page .wp-block-button__link {
	display: inline-block;
	background: var(--pa-btn);
	color: #fff;
	font-family: var(--sans);
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: 12px;
	padding: 14px 34px;
	border-radius: 2px;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease;
}
.pa-page .wp-block-button__link:hover { background: #422f25; transform: translateY(-2px); }

/* ============================================================
   Image lightbox
   ============================================================ */
.pa-page img,
.pa-portfolio-item img { cursor: zoom-in; }
.pa-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(15, 8, 6, .92);
	display: none;
	align-items: center;
	justify-content: center;
}
.pa-lightbox.is-open { display: flex; }
.pa-lb-img {
	max-width: 90vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.pa-lb-close {
	position: absolute;
	top: 18px;
	right: 26px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
}
.pa-lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .15);
	color: #fff;
	border: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}
.pa-lb-nav:hover { background: rgba(255, 255, 255, .32); }
.pa-lb-prev { left: 22px; }
.pa-lb-next { right: 22px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
	.pa-cards, .pa-testi-grid { grid-template-columns: repeat(2, 1fr); }
	.pa-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.pa-insta-grid { grid-template-columns: repeat(2, 1fr); }
	.pa-footer-grid { grid-template-columns: repeat(2, 1fr); }
	.pa-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
	.pa-awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.pa-nav-toggle { display: block; position: static; top: auto; right: auto; transform: none; }
	.pa-nav .pa-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex-wrap: wrap;
		min-height: 52px;
	}
	.pa-nav ul { display: none; flex-direction: column; width: 100%; }
	.pa-nav.is-open ul { display: flex; }
	.pa-nav.is-open ul li a { border-top: 1px solid rgba(255,255,255,.18); }
	.pa-nav li ul {
		position: static; opacity: 1; visibility: visible;
		transform: none; box-shadow: none; display: none;
		background: rgba(0,0,0,.08);
	}
	.pa-nav li.is-open > ul { display: block; }
	.pa-hero { flex-direction: column; min-height: 0; }
	.pa-hero-left, .pa-hero-right { min-height: 320px; }
	.pa-hero-initial { font-size: clamp(160px, 40vw, 300px); }
}
@media (max-width: 600px) {
	.pa-cards, .pa-testi-grid, .pa-stats-grid, .pa-insta-grid, .pa-footer-grid, .pa-awards-grid {
		grid-template-columns: 1fr;
	}
	.pa-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.pa-intro h2, .pa-cta h2 { font-size: 38px; }
	.pa-hero-left, .pa-hero-right { min-height: 260px; }
	.pa-footer-bottom { flex-direction: column; text-align: center; }
	.pa-service-banner { min-height: 240px; }
	.pa-service-title { font-size: 27px; padding: 12px 20px; }
	.pa-page .wp-block-gallery { column-count: 2; }
	.pa-page > .pa-container > p:first-of-type { font-size: 17px; }
}
