/* ==========================================================================
   Front Page Custom Styles — Full-Width Hero Template
   Reversible: delete this file + the template file to restore original behavior.
   ========================================================================== */

/* --- Reset theme constraints for full-width template --- */
.content-area-fullwidth,
.site-main-fullwidth,
.front-page-article,
.front-page-content {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	float: none !important;
}

.front-page-article {
	margin-bottom: 0;
}

.front-page-content .entry-content,
.front-page-content .page-content {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.front-page-content p:empty {
	display: none;
}

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

/* --- CSS Variables --- */
:root {
	--fp-coral: #ff6b6b;
	--fp-teal: #4ecdc4;
	--fp-gold: #d4a017;
	--fp-dark: #1a1a2e;
	--fp-light: #f8f9fa;
	--fp-white: #ffffff;
	--fp-font-heading: 'Playfair Display', serif;
	--fp-font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   LEGACY STYLES (keep for backward compatibility with existing draft 2055)
   ========================================================================== */

/* --- Hero Section --- */
.fp-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.75) 0%,
		rgba(26, 26, 46, 0.4) 50%,
		rgba(78, 205, 196, 0.25) 100%
	);
	z-index: 1;
}

.fp-hero__content {
	position: relative;
	z-index: 2;
	color: var(--fp-white);
	padding: 2rem;
	max-width: 900px;
}

.fp-hero__title {
	font-family: var(--fp-font-heading);
	font-size: clamp(3rem, 10vw, 7rem);
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.fp-hero__title span {
	color: var(--fp-coral);
}

.fp-hero__tagline {
	font-family: var(--fp-font-body);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 300;
	line-height: 1.5;
	margin: 0 0 2.5rem;
	opacity: 0.9;
}

.fp-hero__scroll {
	display: none;
}

/* --- Section base --- */
.fp-section {
	padding: 5rem 1.5rem;
	width: 100%;
}

.fp-section__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.fp-section__title {
	font-family: var(--fp-font-heading);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin-bottom: 2.5rem;
	text-align: center;
	color: var(--fp-dark);
	position: relative;
	padding-bottom: 1rem;
}

.fp-section__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--fp-coral);
	border-radius: 2px;
}

/* --- Gallery Section --- */
.fp-gallery {
	background: #f5f3f0;
}

.fp-gallery .foogallery-container {
	margin-top: 2rem;
}

.fp-gallery .fg-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-gallery .fg-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* --- Artist Statement Section --- */
.fp-statement {
	background: #f5f3f0;
}

.fp-statement__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.fp-statement__quote {
	font-family: var(--fp-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--fp-dark);
	padding-right: 2rem;
	border-right: 2px solid var(--fp-coral);
	margin: 0;
}

.fp-statement__body {
	font-family: var(--fp-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #444;
}

.fp-statement__body p {
	margin-bottom: 1rem;
}

/* --- CTA Section --- */
.fp-cta {
	background: #f5f3f0;
	color: var(--fp-dark);
}

.fp-cta__grid + .fp-cta__grid {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.fp-cta__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.fp-cta__card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	text-decoration: none;
	color: var(--fp-dark);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.fp-cta__card:hover,
.fp-cta__card:focus {
	background: #ffffff;
	border-color: var(--fp-coral);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.fp-cta__icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--fp-coral);
	transition: color 0.3s ease;
}

.fp-cta__card:hover .fp-cta__icon {
	color: #c44545;
}

.fp-cta__label {
	font-family: var(--fp-font-body);
	font-size: 1.1rem;
	font-weight: 600;
}

/* --- Footer Note --- */
.fp-footer-note {
	text-align: center;
	padding: 2rem 1rem;
	font-family: var(--fp-font-body);
	font-size: 0.9rem;
	color: #888;
	background: var(--fp-light);
}

/* ==========================================================================
   OPTION A — EDITORIAL CLEAN (page 2062)
   ========================================================================== */

/* --- Hero: solid gradient, no background image --- */
.fp-editorial-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0f4c75 0%, #1a1a2e 100%);
}

.fp-editorial-hero__content {
	position: relative;
	z-index: 2;
	color: var(--fp-white);
	padding: 2rem;
	max-width: 900px;
}

.fp-editorial-hero__title {
	font-family: var(--fp-font-heading);
	font-size: clamp(3rem, 10vw, 7rem);
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.fp-editorial-hero__title span {
	color: var(--fp-coral);
}

.fp-editorial-hero__tagline {
	font-family: var(--fp-font-body);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 300;
	line-height: 1.5;
	margin: 0 0 2.5rem;
	opacity: 0.9;
}

.fp-editorial-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--fp-white);
	font-size: 2rem;
	animation: fp-bounce 2s infinite;
	cursor: pointer;
	text-decoration: none;
}

/* --- Section base --- */
.fp-editorial-section {
	padding: 5rem 1.5rem;
	width: 100%;
}

.fp-editorial-section__inner {
	max-width: 1140px;
	margin: 0 auto;
}

/* --- Slider Section --- */
.fp-editorial-slider {
	background: var(--fp-light);
}

.fp-editorial-slider .metaslider {
	margin-top: 2rem;
}

/* --- Statement: single centered column --- */
.fp-editorial-statement {
	background: var(--fp-white);
	text-align: center;
}

.fp-editorial-statement__quote {
	font-family: var(--fp-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--fp-dark);
	margin: 0 auto 2.5rem;
	max-width: 800px;
	position: relative;
	padding: 0 2rem;
}

.fp-editorial-statement__quote::before {
	content: '“';
	color: var(--fp-coral);
	font-size: 4rem;
	line-height: 1;
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
	font-family: var(--fp-font-heading);
}

.fp-editorial-statement__quote::after {
	content: '”';
	color: var(--fp-coral);
	font-size: 4rem;
	line-height: 1;
	position: absolute;
	right: -0.5rem;
	bottom: -1.5rem;
	font-family: var(--fp-font-heading);
}

.fp-editorial-statement__body {
	font-family: var(--fp-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #444;
	max-width: 700px;
	margin: 0 auto;
}

.fp-editorial-statement__body p {
	margin-bottom: 1rem;
}

/* --- CTA: large editorial text links --- */
.fp-editorial-cta {
	background: var(--fp-white);
	border-top: 1px solid #eee;
}

.fp-editorial-cta__nav {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.fp-editorial-cta__link {
	font-family: var(--fp-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--fp-dark);
	text-decoration: none;
	position: relative;
	padding-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.fp-editorial-cta__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--fp-coral);
	transition: width 0.3s ease;
}

.fp-editorial-cta__link:hover {
	color: var(--fp-coral);
}

.fp-editorial-cta__link:hover::after {
	width: 100%;
}

/* ==========================================================================
   OPTION B — CINEMATIC SPLIT (page 2063)
   ========================================================================== */

/* --- Hero: 50/50 split --- */
.fp-cinematic-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	display: flex;
	overflow: hidden;
}

.fp-cinematic-hero__visual {
	flex: 1 1 50%;
	position: relative;
	overflow: hidden;
}

.fp-cinematic-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fp-cinematic-hero__content {
	flex: 1 1 50%;
	background: var(--fp-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	position: relative;
}

.fp-cinematic-hero__title {
	font-family: var(--fp-font-heading);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--fp-white);
}

.fp-cinematic-hero__title span {
	color: var(--fp-coral);
}

.fp-cinematic-hero__tagline {
	font-family: var(--fp-font-body);
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 300;
	line-height: 1.5;
	margin: 0 0 2.5rem;
	opacity: 0.9;
	color: var(--fp-white);
	max-width: 500px;
}

.fp-cinematic-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--fp-white);
	font-size: 2rem;
	animation: fp-bounce 2s infinite;
	cursor: pointer;
	text-decoration: none;
}

/* --- Section base --- */
.fp-cinematic-section {
	padding: 5rem 1.5rem;
	width: 100%;
}

.fp-cinematic-section__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.fp-cinematic-section__title {
	font-family: var(--fp-font-heading);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin-bottom: 2.5rem;
	text-align: center;
	color: var(--fp-dark);
}

/* --- Gallery: horizontal scrolling strip --- */
.fp-cinematic-gallery {
	background: var(--fp-light);
}

.fp-cinematic-gallery__strip {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 1rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.fp-cinematic-gallery__strip::-webkit-scrollbar {
	height: 6px;
}

.fp-cinematic-gallery__strip::-webkit-scrollbar-track {
	background: #e0e0e0;
	border-radius: 3px;
}

.fp-cinematic-gallery__strip::-webkit-scrollbar-thumb {
	background: var(--fp-teal);
	border-radius: 3px;
}

.fp-cinematic-gallery__item {
	flex: 0 0 auto;
	width: 280px;
	scroll-snap-align: start;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-cinematic-gallery__item:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.fp-cinematic-gallery__item img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

/* --- Statement: asymmetric two-column with gold divider --- */
.fp-cinematic-statement {
	background: var(--fp-white);
}

.fp-cinematic-statement__grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3rem;
	align-items: start;
}

.fp-cinematic-statement__quote {
	font-family: var(--fp-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--fp-dark);
	margin: 0;
	padding-right: 2rem;
	border-right: 2px solid var(--fp-gold);
}

.fp-cinematic-statement__body {
	font-family: var(--fp-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #444;
}

.fp-cinematic-statement__body p {
	margin-bottom: 1rem;
}

/* --- CTA: dark cards with icon hover glow --- */
.fp-cinematic-cta {
	background: linear-gradient(135deg, var(--fp-dark) 0%, #16213e 100%);
	color: var(--fp-white);
}

.fp-cinematic-cta__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.fp-cinematic-cta__card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	text-decoration: none;
	color: var(--fp-white);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.fp-cinematic-cta__card:hover,
.fp-cinematic-cta__card:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--fp-teal);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(78, 205, 196, 0.2);
}

.fp-cinematic-cta__icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--fp-gold);
	transition: color 0.3s ease;
}

.fp-cinematic-cta__card:hover .fp-cinematic-cta__icon {
	color: var(--fp-coral);
}

.fp-cinematic-cta__label {
	font-family: var(--fp-font-body);
	font-size: 1.1rem;
	font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 767px) {
	.fp-hero,
	.fp-editorial-hero {
		min-height: 500px;
	}

	.fp-section,
	.fp-editorial-section,
	.fp-cinematic-section {
		padding: 3rem 1rem;
	}

	.fp-statement__grid,
	.fp-cinematic-statement__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.fp-statement__quote {
		padding-right: 0;
		padding-bottom: 1.5rem;
		border-right: none;
		border-bottom: 2px solid var(--fp-coral);
	}

	.fp-cinematic-statement__quote {
		padding-right: 0;
		padding-bottom: 1.5rem;
		border-right: none;
		border-bottom: 2px solid var(--fp-gold);
	}

	.fp-cta__grid,
	.fp-cinematic-cta__grid {
		grid-template-columns: 1fr;
	}

	.fp-cinematic-hero {
		flex-direction: column;
		height: auto;
		min-height: auto;
	}

	.fp-cinematic-hero__visual {
		flex: none;
		height: 50vh;
		min-height: 300px;
	}

	.fp-cinematic-hero__content {
		flex: none;
		padding: 3rem 1.5rem;
		min-height: 300px;
	}

	.fp-editorial-cta__nav {
		gap: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.fp-cta__grid,
	.fp-cinematic-cta__grid {
		grid-template-columns: 1fr;
	}
}
