/* ═══════════════════════════════════════════════════════════
   Gallery Landing Pages  — Elopement / Engagement / Creative
   ═══════════════════════════════════════════════════════════ */

.gallery-landing-page {
	background-color: #F5EBE9;
	color: #2A4345;
}

/* ── Hero: 30 / 70 split ── */
.gl-hero {
	display: grid;
	grid-template-columns: 4fr 6fr;
	height: 60vh;
}

.gl-hero__text {
	background-color: #2A4345;
	color: #F5EBE9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3.02rem, 7.24vw, 6.05rem) clamp(1.81rem, 4.86vw, 4.21rem);
	gap: 2.12rem;
}

.gl-hero__text .gl-cta__button {
	align-self: flex-start;
	margin-top: 0.25rem;
}

.gl-hero__text h1 {
	font-family: 'Alegreya', serif;
	font-size: clamp(2.12rem, 4.23vw, 3.63rem);
	line-height: 1.15;
	color: #E6D2CC;
	margin: 0;
}

.gl-hero__intro {
	font-family: 'Lora', serif;
	font-size: clamp(1.14rem, 1.70vw, 1.39rem);
	line-height: 1.8;
	color: #F5EBE9;
	margin: 0;
	opacity: 0.9;
}

.gl-hero__photo {
	position: relative;
	overflow: hidden;
}

.gl-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.04);
	transition: transform 1.2s ease;
}

.gl-hero__photo:hover img {
	transform: scale(1);
}

/* ── Editorial gallery label strip ── */
.gl-gallery-label {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	background-color: #F5EBE9;
	border-top: 1px solid rgba(42, 67, 69, 0.12);
	min-height: 3.5rem;
}

.gl-gallery-label__badge {
	flex-shrink: 0;
	background-color: #2A4345;
	color: #E6FE6E;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding: 0.4rem 0.85rem;
	border-radius: 2px;
	line-height: 1;
}

.gl-gallery-label__rule {
	flex: 1;
	height: 1px;
	background-color: rgba(42, 67, 69, 0.18);
}

.gl-gallery-label__note {
	flex-shrink: 0;
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 0.8rem;
	color: rgba(42, 67, 69, 0.55);
	white-space: nowrap;
}

/* ── Masonry Grid ── */
.gl-masonry-section {
	background-color: #F5EBE9;
	padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.gl-masonry {
	columns: 3;
	column-gap: 1.25rem;
}

.gl-masonry__item {
	break-inside: avoid;
	margin-bottom: 1.25rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
}

.gl-masonry__item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.gl-masonry__item:hover img {
	transform: scale(1.03);
}

/* "click to preview" badge */
.gl-masonry__item::after {
	content: 'click to preview ↗';
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: rgba(42, 67, 69, 0.78);
	color: #F5EBE9;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.7rem;
	border-radius: 2px;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 220ms ease, transform 220ms ease;
	pointer-events: none;
}

.gl-masonry__item:hover::after {
	opacity: 1;
	transform: translateY(0);
}

/* Featured ring */
.gl-masonry__item--featured {
	outline: 2px solid #DCCCA3;
	outline-offset: 4px;
}

.gl-masonry__caption {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 0.9rem;
	color: rgba(42, 67, 69, 0.72);
	margin: 0.5rem 0 0;
	padding: 0 0.25rem;
}

/* ── Philosophy + Kate photo ── */
.gl-philosophy {
	background-color: #2A4345;
	color: #F5EBE9;
	padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.gl-philosophy__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

.gl-philosophy__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.gl-philosophy__text p {
	font-family: 'Lora', serif;
	font-size: clamp(1.375rem, 1.6vw, 1.5rem);
	line-height: 1.8;
	margin: 0;
}

.gl-philosophy__visual {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 3px;
}

.gl-philosophy__placeholder {
	background: rgba(245, 235, 233, 0.08);
	border: 1.5px dashed rgba(245, 235, 233, 0.25);
	border-radius: 4px;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Lora', serif;
	font-style: italic;
	color: rgba(245, 235, 233, 0.35);
	font-size: 1rem;
	text-align: center;
	line-height: 1.8;
}

/* When a real image is dropped in */
.gl-philosophy__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 3px;
}

/* ── FAQ — bottom section ── */
.gl-faq-section {
	background-color: #F5EBE9;
	padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.gl-faq-section__inner {
	max-width: 72ch;
	margin: 0 auto;
}

.gl-faq__heading {
	font-family: 'Alegreya', serif;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	color: #2A4345;
	margin: 0 0 1.75rem;
}

.gl-faq__list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(42, 67, 69, 0.15);
}

.gl-faq__item {
	border-bottom: 1px solid rgba(42, 67, 69, 0.15);
}

.gl-faq__question {
	font-family: 'Lora', serif;
	font-size: clamp(1.375rem, 1.5vw, 1.5rem);
	font-weight: 600;
	color: #2A4345;
	padding: 1.1rem 2.25rem 1.1rem 0;
	cursor: pointer;
	list-style: none;
	position: relative;
}

.gl-faq__question::-webkit-details-marker { display: none; }

.gl-faq__question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 300;
	color: #2A4345;
	transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gl-faq__item[open] .gl-faq__question::after {
	transform: translateY(-50%) rotate(45deg);
}

.gl-faq__answer {
	font-family: 'Lora', serif;
	font-size: clamp(1.375rem, 1.4vw, 1.4rem);
	line-height: 1.8;
	color: #555;
	padding: 0 0 1.25rem;
	margin: 0;
}

/* Visual placeholder (swap for <img> when ready) */
.gl-faq-section__visual {
	position: sticky;
	top: 2rem;
}

.gl-faq-section__placeholder {
	background: rgba(42, 67, 69, 0.05);
	border: 1.5px dashed rgba(42, 67, 69, 0.22);
	border-radius: 4px;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Lora', serif;
	font-style: italic;
	color: rgba(42, 67, 69, 0.35);
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.8;
}

/* ── CTA ── */
.gl-cta {
	background-color: #2A4345;
	color: #F5EBE9;
	padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.gl-cta__inner {
	max-width: 60ch;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.gl-cta__inner h2 {
	font-family: 'Alegreya', serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: #DCCCA3;
	margin: 0;
}

.gl-cta__inner p {
	font-family: 'Lora', serif;
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
	opacity: 0.85;
}

.gl-cta__button {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.85rem 2.25rem;
	background-color: #E6FE6E;
	color: #2A4345;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 2px;
	transition: background-color 180ms ease, transform 180ms ease;
}

.gl-cta__button:hover {
	background-color: #fff;
	transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.gl-hero {
		grid-template-columns: 1fr;
		height: auto;      /* remove 60vh cap so CTA isn't crushed off-screen */
		min-height: auto;
	}

	.gl-hero__text {
		/* extra top padding clears the nav bar; bottom padding keeps CTA visible */
		padding: clamp(3rem, 9vw, 5rem) clamp(1.5rem, 6vw, 3rem) clamp(2.5rem, 7vw, 4rem);
		min-height: auto;
		justify-content: flex-start; /* content flows from top, no compressed gap */
	}

	.gl-hero__photo {
		height: 60vw;
		min-height: 260px;
	}

	.gl-masonry {
		columns: 2;
	}

	.gl-philosophy__inner {
		grid-template-columns: 1fr;
	}

	.gl-philosophy__visual {
		order: -1;
	}

	.gl-philosophy__placeholder {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 480px) {
	.gl-masonry {
		columns: 1;
	}

	.gl-gallery-label__note {
		display: none;
	}
}

/* ── Lightbox overlay ── */
.gl-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(18, 27, 27, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	transition: opacity 240ms ease;
	padding: 2rem;
	box-sizing: border-box;
}

.gl-lightbox:not([hidden]) {
	opacity: 1;
}

.gl-lightbox[hidden] {
	display: none;
}

.gl-lightbox__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 2.5rem;
	height: 2.5rem;
	background: transparent;
	border: 2px solid #E6FE6E;
	color: #E6FE6E;
	font-size: 1.4rem;
	line-height: 1;
	border-radius: 2px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 160ms ease, color 160ms ease;
	padding: 0;
}

.gl-lightbox__close:hover,
.gl-lightbox__close:focus-visible {
	background: #E6FE6E;
	color: #2A4345;
	outline: none;
}

.gl-lightbox__stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	max-width: min(92vw, 1300px);
	max-height: 90vh;
}

.gl-lightbox__img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	display: block;
	border-radius: 2px;
}

.gl-lightbox__caption {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 0.95rem;
	color: rgba(245, 235, 233, 0.7);
	margin: 0;
	text-align: center;
}

/* ── Testimonials strip ──────────────────────────────────── */
.gl-testimonials {
	background: var(--wf-blush, #F5EBE9);
	padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.gl-testimonials__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.gl-testimonials__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.gl-testimonials__aggregate {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-family: 'Lora', serif;
	font-size: 1rem;
	color: #2A4345;
	margin-top: 0.4rem;
}

.gl-testimonials__stars {
	color: #DCCCA3;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
}

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

.gl-testimonials__more {
	text-align: center;
	margin-top: 2rem;
}

.gl-testimonials__link {
	font-family: 'Lora', serif;
	font-size: 0.95rem;
	color: #2A4345;
	text-decoration: underline;
	text-decoration-color: rgba(42,67,69,0.3);
	transition: opacity 0.2s;
}

.gl-testimonials__link:hover { opacity: 0.65; }

@media (max-width: 900px) {
	.gl-testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.gl-testimonials__grid { grid-template-columns: 1fr; }
}

