/* =========================================================
   ROOT + TOKENS
   ========================================================= */
:root {
	--header-h: 88px;
	--ink: #1b2933;
	--muted: #7a838a;
	--brand: #a08040;
	--nav-ink: #23303a;
	--line: #d9dfe3;
	--container: 1200px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

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

section {
	margin: 0;
	padding: 0;
} /* zero default gaps */

body {
	font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto,
		sans-serif;
	color: var(--ink);
	background: #f8f8f8;
	line-height: 1.6;
	/* padding-top: var(--header-h); room for fixed header */
}

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 20px;
}

/* Vendor logos strip */
.vendor-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px; /* spacing between logos */
	padding: 24px 16px;
}

.vendor-logos img {
	height: 50px;
	width: 150px; /* or any width you choose */
	object-fit: contain; /* keeps logos from stretching */
	display: block;
	filter: grayscale(100%) contrast(120%);
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.vendor-logos img:hover {
	opacity: 1; /* brighten on hover */
	filter: none; /* restore color if you like */
}

/* =========================================================
   TYPE
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
	line-height: 1.1;
	color: #8b6a3c;
	margin: 0 0 0.35em;
	letter-spacing: 0.03;
}
p {
	margin: 0 0 1em;
	color: #555;
}

/* When text sits over a hero image, force white */
#carousel-section .hero-content h1,
#carousel-section .hero-content p,
.page-hero__title,
.page-hero__lead {
	color: #fff !important;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
/* === Portfolio Grid Overlay (Luxe text only) === */
.me-card {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color: inherit;
}

.me-card img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.6s ease;
}

.me-card:hover img {
	transform: scale(1.04); /* subtle zoom */
}

.me-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35); /* soft veil */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.me-card:hover .me-overlay {
	opacity: 1;
}

.me-overlay span {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.5px;
	color: #fff;
	text-transform: none; /* keep it refined, not all caps */
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* polished glow */
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn,
.btn-secondary,
.btn-secondary-dark,
.menu-btn,
.contact-form-area button[type="submit"] {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	font: 600 1.05rem/1 "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 2px;
	transition: background 0.25s, color 0.25s, border-color 0.25s,
		transform 0.15s;
}
.btn {
	background: var(--brand);
	color: #fff;
	padding: 14px 32px;
}
.btn:hover {
	background: #8a6c30;
	transform: translateY(-2px);
}
.btn-secondary {
	background: transparent;
	color: var(--brand);
	border: 1px solid var(--brand);
	padding: 10px 26px;
}
.btn-secondary:hover {
	background: var(--brand);
	color: #fff;
}
.btn-secondary-dark {
	background: transparent;
	color: #f0ede6;
	border: 1px solid #f0ede6;
	padding: 12px 32px;
}
.btn-secondary-dark:hover {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
header {
	position: fixed;
	inset: 0 0 auto 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	z-index: 1000;
}
header .container {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

body.me-page header {
	background: #fff !important;
}
body.me-page nav a {
	color: var(--nav-ink) !important;
}
body.me-page .nav-toggle {
	color: #1b2933 !important;
}

/* and restore the body spacing for solid header pages */
body.me-page.solid-header {
	padding-top: var(--header-h);
}

.logo img {
	height: 80px;
	width: auto;
}
@media (max-width: 768px) {
	.logo img {
		height: 64px;
	}
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 35px;
}
nav a {
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.78rem;
	padding: 8px 10px;
	border-radius: 2px;
	text-decoration: none;
	border-bottom-color: var(--brand);
}

/* Default (home over hero): light nav */
body:not(.solid-header) nav a {
	color: #e7eaec;
}
body:not(.solid-header) nav a:hover {
	color: var(--brand);
	border-bottom-color: var(--brand);
}

/* Solid pages (e.g., gallery) */
body.solid-header nav a {
	color: var(--nav-ink);
}
body.solid-header nav a:hover {
	color: var(--brand);
	border-bottom-color: var(--brand);
}

/* Mobile toggle */
.nav-toggle {
	display: none;
	appearance: none;
	background: transparent;
	border: 0;
	padding: 10px;
	margin-left: auto;
	line-height: 0;
	color: #0000;
}
.nav-toggle .hamburger {
	position: relative;
	width: 28px;
	height: 18px;
	display: inline-block;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after,
.nav-toggle .hamburger > span {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.2s, top 0.25s, bottom 0.25s;
}
.nav-toggle .hamburger::before {
	top: 0;
}
.nav-toggle .hamburger > span {
	top: 8px;
}
.nav-toggle .hamburger::after {
	bottom: 0;
}
body.nav-open .nav-toggle .hamburger::before {
	top: 8px;
	transform: rotate(45deg);
}
body.nav-open .nav-toggle .hamburger > span {
	opacity: 0;
}
body.nav-open .nav-toggle .hamburger::after {
	bottom: 8px;
	transform: rotate(-45deg);
}

/* Over transparent hero, make burger light */
body:not(.solid-header) .nav-toggle {
	color: #e7eaec;
}
body:not(.solid-header).nav-open .nav-toggle {
	color: #1b2933;
}

/* Mobile panel */
@media (max-width: 900px) {
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		z-index: 5000;
	}
	header {
		z-index: 4000;
	}
	header nav {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		height: 100vh;
		padding-top: var(--header-h);
		background: #fff;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
		overflow-y: auto;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform 0.3s, opacity 0.2s, visibility 0s linear 0.3s;
		z-index: 3000;
	}
	body.nav-open header nav {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: transform 0.3s, opacity 0.2s, visibility 0s;
		z-index: 6000;
	}
	body.nav-open .nav-toggle {
		position: fixed;
		top: 12px;
		right: 16px;
		z-index: 7000;
		color: #1b2933;
	}
	body.nav-open header .container > :not(nav):not(.nav-toggle) {
		opacity: 0;
		pointer-events: none;
	}

	header nav ul {
		flex-direction: column;
		gap: 0;
		padding: 12px 20px 20px;
	}
	header nav a {
		display: block;
		padding: 16px 6px;
		border-bottom: 1px solid #e9eef1;
		color: #1b2933 !important;
	}
	body.nav-open {
		overflow: hidden;
	}
}

/* =========================================================
   HOME: HERO / CAROUSEL (flush to top)
   ========================================================= */
#carousel-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	height: 100vh;
	overflow: hidden;
	margin-top: calc(-1 * var(--header-h)); /* tuck under fixed header */
	padding: 0;
}
.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.carousel-slides {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}
.carousel-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.carousel-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding: 20px;
}
.hero-content h1 {
	font-size: clamp(32px, 6vw, 72px);
	margin: 0 0 15px;
}
.hero-content p {
	font-size: clamp(16px, 2.2vw, 22px);
	margin: 0 0 28px;
}

/* =========================================================
   STANDARD SECTIONS (you can add inner padding as needed)
   ========================================================= */
#text-section {
	background: #fff;
	text-align: center;
	padding: 80px 0;
}
#text-section h2 {
	font-size: clamp(28px, 4vw, 40px);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
#text-section p {
	max-width: 800px;
	margin: 0 auto 20px;
	line-height: 1.7;
	color: #444;
}

/* IMAGE CARD STRIP */
#image-card-carousel {
	background: #f0ede6;
	text-align: center;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}
#image-card-carousel h2 {
	font-size: clamp(28px, 5vw, 48px);
	margin: 0 0 32px;
	text-transform: uppercase;
	color: #002b49;
}
#image-card-carousel .carousel-container {
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#image-card-carousel .carousel-slides {
	display: flex;
	transition: transform 0.5s;
	padding: 0 20px 30px;
	display: flex;
	gap: 12px; /* spacing between cards */
	transition: transform 0.5s;
	padding: 0 12px 24px;
}
#image-card-carousel .carousel-slide.grid-item {
	min-width: 31%;
	margin-right: 2%;
	flex: 0 0 auto;
	height: 350px;
	overflow: hidden;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}
#image-card-carousel .carousel-slide.grid-item:last-child {
	margin-right: 0;
}
#image-card-carousel .grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
#image-card-carousel .grid-item img:hover {
	transform: scale(1.05);
}
@media (max-width: 768px) {
	#image-card-carousel .carousel-slide.grid-item {
		min-width: 48%;
	}
}
@media (max-width: 520px) {
	#image-card-carousel .carousel-slide.grid-item {
		min-width: 100%;
		margin-right: 0;
		height: 240px;
	}
}

/* SERVICES BAND */
#menu-section {
	padding: 140px 0;
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
		url("images/AmerNabulsi-513.jpg") center/cover fixed no-repeat;
	color: #fff;
	text-align: center;
}
.menu-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(32px, 5vw, 54px);
	font-weight: 400;
	margin: 0 0 40px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.menu-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin: 0 0 30px;
}
.menu-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	padding: 12px 28px;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
}
.menu-btn:hover,
.menu-btn.active {
	background: var(--brand);
	border-color: var(--brand);
}

[data-animate] {
	opacity: 1 !important;
	transform: none !important;
}

/* =======================
   Reviews Section
======================= */
#reviews-section {
	position: relative;
	background-image: url("images/couples/sarahandchris/2.PNG");
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 6rem 1rem;
	min-height: 500px; /* ensure section has height for absolute title */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#reviews-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(171, 155, 137, 0.35);
	z-index: 1;
	pointer-events: none;
}
.carousel-container-reviews {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.reviews-title {
	font-family: "Playfair Display", serif;
	font-size: 3rem; /* fixed font size */
	text-transform: uppercase;
	color: #805b32;
	text-align: center;
	position: absolute;
	top: 2rem; /* near top of section */
	left: 50%;
	transform: translateX(-50%); /* center horizontally only */
	z-index: 2;
	letter-spacing: -0.08rem;
	font-weight: 400;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
	width: 90%; /* ensure it fits on mobile */
	box-sizing: border-box;
}

.reviews-grid-carousel {
	width: 100%;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.reviews-grid {
	display: flex;
	gap: 1rem;
	flex-wrap: nowrap; /* horizontal scroll */
}

.review-card {
	background: rgba(255, 248, 240, 0.95);
	border-radius: 16px;
	padding: 1.5rem;
	flex: 0 0 auto; /* do not shrink */
	text-align: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-width: 350px; /* prevents stretching on large screens */
}

.review-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.review-card .review-text {
	font-family: "Playfair Display", serif;
	font-size: 14px;
	color: #555;
	margin: 2rem 0 1rem;
	line-height: 1.3;
	font-style: italic;
}

.review-card .stars i {
	color: #c9a76d;
	font-size: 1.2rem;
	margin-right: 0.2rem;
	transition: transform 0.2s ease;
}

.review-card:hover .stars i {
	transform: scale(1.2);
}

.reviewer-name {
	font-style: italic;
	font-weight: 500;
	color: #4a3b2f;
	margin-top: 0.8rem;
	font-size: 13px;
}

/* Optional: adjust on very small screens */
@media (max-width: 480px) {
	.reviews-title {
		font-size: 2.2rem; /* slightly smaller on tiny screens */
		top: 1.5rem;
	}
}

/* Carousel scrollbar styling */
.reviews-grid-carousel::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

.reviews-grid-carousel::-webkit-scrollbar-track {
	background: rgba(255, 248, 240, 0.4);
	border-radius: 10px;
}

.reviews-grid-carousel::-webkit-scrollbar-thumb {
	background: #c9a76d;
	border-radius: 10px;
	border: 3px solid rgba(255, 248, 240, 0.4);
}

.reviews-grid-carousel::-webkit-scrollbar-thumb:hover {
	background: #b8935e;
}

.reviews-grid-carousel {
	scrollbar-width: thin;
	scrollbar-color: #c9a76d rgba(255, 248, 240, 0.4);
}

/* Responsive card widths */
@media (min-width: 1025px) {
	.review-card {
		width: calc((100% / 3) - 0.66rem);
	} /* 3 per row */
}

@media (max-width: 1024px) {
	.review-card {
		width: calc((100% / 2) - 0.5rem);
	} /* 2 per row */
}

@media (max-width: 768px) {
	.review-card {
		width: 80%;
	} /* 1 per row scrollable */
}

@media (max-width: 480px) {
	.review-card {
		width: 90%;
	} /* small screens */
}

/* CONTACT SPLIT BAND */
#contact-form-section {
	display: flex;
	width: 100%;
	min-height: 450px;
	max-height: 550px;
	overflow: hidden;
}
.contact-image-area {
	flex: 1;
	background: url("images/sarah-chris/IMG_3130.PNG") center/cover no-repeat;
}
.contact-form-area {
	flex: 1;
	background: #e0dcd5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
}
.contact-form-area .contact-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
.contact-form-area .contact-header h2 {
	font-family: "Playfair Display", serif;
	font-size: 2.2rem;
	color: #002b49;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
}
.contact-form-area p {
	font-size: 1rem;
	color: #6a6a6a;
	margin-bottom: 24px;
	max-width: 320px;
	line-height: 1.2;
}
.contact-form-area form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 80%;
	max-width: 400px;
}
.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 14px;
	border: 1px solid #002b49;
	background: transparent;
	font-size: 1rem;
	color: #4a4a4a;
	text-transform: uppercase;
	outline: none;
	box-shadow: none;
}
.contact-form-area ::placeholder {
	color: #8c8c8c;
	opacity: 1;
	text-transform: uppercase;
}
.contact-form-area textarea {
	resize: vertical;
	min-height: 120px;
}
.contact-form-area button[type="submit"] {
	width: 100%;
	padding: 14px 18px;
	background: #e0dcd5;
	color: #002b49;
	border: 1px solid #002b49;
	letter-spacing: 2px;
}
.contact-form-area button[type="submit"]:hover {
	background: transparent;
}
@media (max-width: 768px) {
	#contact-form-section {
		flex-direction: column;
		min-height: unset;
		max-height: unset;
	}
	.contact-image-area {
		height: 300px;
		width: 100%;
	}
	.contact-form-area {
		padding: 40px 20px;
	}
}
/* Gallery hero (full-bleed, editorial, B/W) */
.me-hero {
	position: relative;
	isolation: isolate;
	min-height: 60vh;
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
	width: 100%;
	background-image: var(--hero-img);
	background-position: center;
	background-size: cover; /* fills hero fully, may crop */
	background-repeat: no-repeat;
	filter: grayscale(100%);
}

.me-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35); /* moody dark veil */
	z-index: 0;
}

.me-hero__inner {
	position: relative;
	z-index: 1;
	padding: 20px;
}

.me-hero__title {
	font-family: "Playfair Display", serif;
	font-size: clamp(32px, 6vw, 64px);
	color: #fff;
	margin: 0.1em 0;
}

.me-hero__lead {
	font-size: clamp(16px, 2.2vw, 22px);
	color: #eef4f7;
	margin: 0;
}

/* ===========================================
   HOME CONTACT FORM — luxe / editorial finish
   Scoped so nothing else breaks
   =========================================== */
#contact-form-section .lux-form {
	width: 80%;
	max-width: 420px;
	display: grid;
	gap: 12px;
	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Hide honeypot so it doesn't inherit input styling */
#contact-form-section .lux-form [name="_honey"] {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Fields: hairline, transparent, editorial calm */
#contact-form-section .lux-form input[type="text"],
#contact-form-section .lux-form input[type="email"],
#contact-form-section .lux-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 43, 73, 0.7); /* matches your #002b49 with finesse */
	background: rgba(
		255,
		255,
		255,
		0.12
	); /* subtle translucency over beige panel */
	color: #1c242b;
	outline: none;
	border-radius: 2px; /* square, editorial */
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease,
		background 0.2s ease, transform 0.12s ease;
}

#contact-form-section .lux-form textarea {
	min-height: 120px;
	resize: vertical;
}

/* Placeholders: quiet + romantic */
#contact-form-section .lux-form ::placeholder {
	color: rgba(0, 43, 73, 0.55);
	letter-spacing: 0.14em;
}

/* Focus: antique-gold ring + slight lift */
#contact-form-section .lux-form input:focus,
#contact-form-section .lux-form textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 2px rgba(139, 106, 60, 0.18); /* soft gold halo */
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

/* Button: quiet outline -> gold hover (keeps your palette) */
#contact-form-section .lux-form button[type="submit"] {
	width: 100%;
	padding: 14px 18px;
	background: #e0dcd5;
	color: #002b49;
	border: 1px solid #002b49;
	border-radius: 2px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font: 700 0.84rem/1 "Montserrat", sans-serif;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
		transform 0.12s ease, box-shadow 0.2s ease;
}

#contact-form-section .lux-form button[type="submit"]:hover,
#contact-form-section .lux-form button[type="submit"]:focus-visible {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
	outline: none;
}

/* Tighten alignment with your split band on small screens */
@media (max-width: 768px) {
	#contact-form-section .lux-form {
		width: 90%;
		max-width: 520px;
		gap: 10px;
	}
}

/* =========================================================
   HOME CONTACT: Luxe / editorial overrides (scoped & specific)
   ========================================================= */
.contact-form-area form.lux-form {
	width: 80%;
	max-width: 420px;
	display: grid;
	gap: 12px;
	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Hide honeypot, prevent layout shifts */
.contact-form-area form.lux-form [name="_honey"] {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Fields — override previous .contact-form-area inputs */
.contact-form-area form.lux-form input[type="text"],
.contact-form-area form.lux-form input[type="email"],
.contact-form-area form.lux-form textarea {
	width: 100% !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(0, 43, 73, 0.7) !important; /* editorial hairline */
	background: rgba(255, 255, 255, 0.12) !important; /* soft translucency */
	color: #1c242b !important;
	border-radius: 2px !important; /* square, luxe */
	outline: none !important;
	box-shadow: none !important;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s,
		transform 0.12s !important;
}

.contact-form-area form.lux-form textarea {
	min-height: 120px !important;
	resize: vertical !important;
}

/* Placeholders: quiet + refined */
.contact-form-area form.lux-form ::placeholder {
	color: rgba(0, 43, 73, 0.55) !important;
	letter-spacing: 0.14em !important;
}

/* Focus state: antique-gold halo + micro-lift */
.contact-form-area form.lux-form input:focus,
.contact-form-area form.lux-form textarea:focus {
	border-color: var(--brand) !important;
	box-shadow: 0 0 0 2px rgba(139, 106, 60, 0.18) !important;
	background: rgba(255, 255, 255, 0.22) !important;
	transform: translateY(-1px) !important;
}

/* Button: outline → gold on hover, stays within palette */
.contact-form-area form.lux-form button[type="submit"] {
	width: 100% !important;
	padding: 14px 18px !important;
	background: #e0dcd5 !important;
	color: #002b49 !important;
	border: 1px solid #002b49 !important;
	border-radius: 2px !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	font: 700 0.84rem/1 "Montserrat", sans-serif !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s,
		box-shadow 0.2s !important;
}

.contact-form-area form.lux-form button[type="submit"]:hover,
.contact-form-area form.lux-form button[type="submit"]:focus-visible {
	background: var(--brand) !important;
	color: #fff !important;
	border-color: var(--brand) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12) !important;
	outline: none !important;
}

/* Small screens: breathe a bit more */
@media (max-width: 768px) {
	.contact-form-area form.lux-form {
		width: 90%;
		max-width: 520px;
		gap: 10px;
	}
}

/* =========================================================
   GALLERY / PORTFOLIO PAGES
   ========================================================= */
body.me-page header {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.me-page nav a {
	color: var(--brand) !important; /* gold nav text over hero */
	border-bottom-width: 1px; /* subtle underline like the comp */
}

body.me-page nav a:hover {
	color: var(--brand) !important; /* your antique gold */
	border-bottom-color: var(--brand) !important;
}

body.me-page .nav-toggle {
	color: #fff !important; /* keep burger white over hero */
}

/* Do NOT tuck normal page heroes */
.page-hero {
	margin-top: 0 !important;
}

/* B/W hero background from --hero */
.page-hero.hero--portfolio {
	position: relative;
	isolation: isolate;
	min-height: 70vh;
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
}
.page-hero.hero--portfolio::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	z-index: 0;
}
.page-hero.hero--portfolio::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}
.page-hero__inner {
	position: relative;
	z-index: 2;
}
.page-hero__title {
	font-size: clamp(32px, 6vw, 64px);
	margin: 0 0 0.25em;
}
.page-hero__lead {
	font-size: clamp(16px, 2.2vw, 22px);
	margin: 0;
}

/* Masonry-ish gallery (from your gallery.css expectations) */
.me-container {
	width: min(1120px, 92%);
	margin-inline: auto;
}
.me-intro {
	padding: 36px 0 18px;
}
.me-lead {
	width: min(760px, 92%);
	margin: 0 auto;
	color: var(--ink);
	font-size: clamp(16px, 2.1vw, 18px);
	line-height: 1.7;
	text-align: center;
}

.me-grid {
	columns: 3 320px;
	column-gap: 32px;
	width: min(1120px, 92%);
	margin: 28px auto 96px;
}
@media (max-width: 1024px) {
	.me-grid {
		columns: 2 300px;
	}
}
@media (max-width: 640px) {
	.me-grid {
		columns: 1 100%;
	}
}

.me-card {
	display: inline-block;
	width: 100%;
	margin: 0 0 32px;
	color: inherit;
	text-decoration: none;
	break-inside: avoid;
}
.me-media {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	background: #f3f5f6;
}
.me-media img {
	width: 100%;
	height: auto;
	transform: translateZ(0);
	transition: transform 0.5s ease, filter 0.5s ease;
}
.me-card:hover .me-media img {
	transform: scale(1.03);
	filter: grayscale(12%);
}
.me-caption {
	padding-top: 14px;
	text-align: center;
}
.me-caption h3 {
	font-family: "Playfair Display", serif;
	font-size: 0.98rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #1d2a35;
	margin: 0 0 8px;
}
.me-caption p {
	position: relative;
	margin: 0;
	padding-top: 10px;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
.me-caption p::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 1px;
	background: #e3e7ea;
}

/* Lightbox */
.me-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	display: none;
	place-items: center;
	padding: 4vw;
	z-index: 9999;
}
.me-lightbox img {
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.me-lightbox:target {
	display: grid;
}
.me-close {
	position: fixed;
	inset: 0;
	display: block;
}

/* CTA / quotes blocks on gallery pages */
.me-cta {
	background-size: cover; /* show full image */
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh; /* section grows with image */
	overflow: auto; /* allow scroll if needed */
	height: 60vh; /* adjust section height */
	min-height: 400px;
}
.me-cta::before {
	content: "";
	position: absolute;
	inset: 0;
}

.me-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.me-cta__inner {
	position: relative;
	z-index: 1;
	width: min(880px, 92%);
	margin: 0 auto;
	text-align: center;
	padding: clamp(60px, 9vw, 120px) 0;
}
.me-cta__title {
	font-family: "Playfair Display", serif;
	font-size: clamp(28px, 4.6vw, 42px);
	margin: 0 0 0.35em;
}
.me-cta__lead {
	font-size: clamp(15px, 2.1vw, 18px);
	opacity: 0.95;
	margin: 0 0 1.2em;
}

.me-cta .me-btn,
.me-cta h1,
.me-cta p {
	position: relative;
	z-index: 1;
}

.me-cta__inner {
	padding: 20px 30px;
	border-radius: 6px;
	display: inline-block;
}

.me-btn:hover {
	background: #73542c; /* darker gold */
	transform: translateY(-2px);
}

.me-btn:hover {
	background: var(--brand);
	border-color: var(--brand);
	transform: translateY(-2px);
}
.me-cta {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 60vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}

.me-cta__inner {
	padding: 30px 40px;
	border-radius: 8px;
	display: inline-block;
}

.me-cta__title {
	color: #fff;
	margin: 0 0 18px;
	font-family: "Playfair Display", serif;
	font-size: clamp(24px, 5vw, 44px);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.me-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #fff;
	border: 2px solid #fff;
	color: #73542c;
	font: 600 0.9rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 4px;
	transition: background 0.25s, color 0.25s, transform 0.2s;
}

.me-btn:hover {
	background: #fff;
	color: #000;
	transform: translateY(-2px);
}

.me-quotes {
	background: #0e1216;
	color: #e9eef1;
	text-align: center;
	padding: clamp(48px, 8vw, 90px) 20px;
	overflow: hidden;
}
.me-q {
	font-family: "Playfair Display", serif;
	font-size: clamp(18px, 3.2vw, 28px);
	line-height: 1.5;
	margin: 0;
	opacity: 0;
	animation: meFade 15s infinite;
	animation-delay: var(--d, 0s);
}
.me-q span {
	display: block;
	margin-top: 0.5em;
	font: 600 0.85em/1.2 "Montserrat", sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b9c4cc;
}
@keyframes meFade {
	0% {
		opacity: 0;
		transform: translateY(6px);
	}
	6% {
		opacity: 1;
		transform: translateY(0);
	}
	28% {
		opacity: 1;
	}
	34% {
		opacity: 0;
		transform: translateY(-6px);
	}
	100% {
		opacity: 0;
		transform: translateY(-6px);
	}
}

/* ===========================================
   HOME CONTACT FORM — luxe / editorial finish
   Scoped so nothing else breaks
   =========================================== */
#contact-form-section .lux-form {
	width: 80%;
	max-width: 420px;
	display: grid;
	gap: 12px;
	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Hide honeypot so it doesn't inherit input styling */
#contact-form-section .lux-form [name="_honey"] {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Fields: hairline, transparent, editorial calm */
#contact-form-section .lux-form input[type="text"],
#contact-form-section .lux-form input[type="email"],
#contact-form-section .lux-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 43, 73, 0.7); /* matches your #002b49 with finesse */
	background: rgba(
		255,
		255,
		255,
		0.12
	); /* subtle translucency over beige panel */
	color: #1c242b;
	outline: none;
	border-radius: 2px; /* square, editorial */
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease,
		background 0.2s ease, transform 0.12s ease;
}

#contact-form-section .lux-form textarea {
	min-height: 120px;
	resize: vertical;
}

/* Placeholders: quiet + romantic */
#contact-form-section .lux-form ::placeholder {
	color: rgba(0, 43, 73, 0.55);
	letter-spacing: 0.14em;
}

/* Focus: antique-gold ring + slight lift */
#contact-form-section .lux-form input:focus,
#contact-form-section .lux-form textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 2px rgba(139, 106, 60, 0.18); /* soft gold halo */
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

/* Button: quiet outline -> gold hover (keeps your palette) */
#contact-form-section .lux-form button[type="submit"] {
	width: 100%;
	padding: 14px 18px;
	background: #e0dcd5;
	color: #002b49;
	border: 1px solid #002b49;
	border-radius: 2px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font: 700 0.84rem/1 "Montserrat", sans-serif;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
		transform 0.12s ease, box-shadow 0.2s ease;
}

#contact-form-section .lux-form button[type="submit"]:hover,
#contact-form-section .lux-form button[type="submit"]:focus-visible {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
	outline: none;
}

/* Tighten alignment with your split band on small screens */
@media (max-width: 768px) {
	#contact-form-section .lux-form {
		width: 90%;
		max-width: 520px;
		gap: 10px;
	}
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
	background: #002b49;
	color: #f0ede6;
	padding: 16px 0;
	text-align: center;
}
footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
footer .social-links a {
	color: #f0ede6;
	text-decoration: none;
	margin-left: 20px;
	transition: color 0.25s;
}
footer .social-links a:hover {
	color: var(--brand);
}

/* =========================================================
   SMALL TWEAKS
   ========================================================= */
/* Parallax hook (optional) */
.page-hero::before {
	will-change: transform;
	transform: translateY(calc(var(--parallax, 0) * 1px)) scale(1.04);
	transition: transform 0.08s linear;
}
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
	.page-hero::before {
		transform: none !important;
	}
}

/* Anchor offset under fixed header */
:target {
	scroll-margin-top: var(--header-h);
}

/* iOS background-attachment fix for the services band */
#menu-section {
	background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
	#menu-section {
		background-attachment: scroll;
	}
}
/* === Smaller, solid header on non-home pages (e.g., gallery) === */
.me-page {
	/* any page with <body class="me-page"> */
	--header-h: 3px; /* reduce header height just for these pages */
}

/* solid (white) header + dark nav on non-home pages */
.me-page header {
	background: #fff !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.me-page nav a {
	color: var(--nav-ink) !important;
}

/* smaller logo so the header can be shorter */
.me-page .logo img {
	height: 56px;
}
.vendor-section {
	background-color: white;
}

/* IMPORTANT: don’t tuck inner-page heroes under the header */
.page-hero {
	/* default for all page heroes */
	margin-top: 0 !important;
}

/* Keep the negative offset ONLY for the home carousel hero */
#carousel-section {
	/* home page hero */
	margin-top: calc(-1 * var(--header-h)) !important;
}

/* === Services band: simple / high-brow === */
#menu-section.menu-dark-bg {
	position: relative;
	padding: clamp(80px, 10vw, 140px) 0;
	color: #fff;
	text-align: center;
	background: linear-gradient(rgba(10, 12, 14, 0.48), rgba(10, 12, 14, 0.48)),
		url("images/AmerNabulsi-513.jpg") center/cover fixed no-repeat;
	isolation: isolate;
}

/* Title: understated, editorial */
.menu-title {
	font-family: "Playfair Display", serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: clamp(30px, 4.4vw, 48px);
	margin: 0;
	color: #fff;
}
.menu-underline {
	display: none;
} /* remove flourish if present */

/* Chip group */
.menu-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	margin: 24px 0 32px;
}

/* Chips: hairline, quiet hover, no glow */
.menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px;
	border-radius: 999px;
	text-decoration: none;

	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;

	color: #f6f7f8;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;

	transition: background-color 0.2s ease, border-color 0.2s ease,
		color 0.2s ease, transform 0.12s ease;
}
.menu-btn:hover,
.menu-btn:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;
	transform: translateY(-1px);
	text-decoration: none;
}
.menu-btn:focus-visible {
	outline: none;
}

/* Primary CTA: restrained (outline to filled on hover) */
.menu-wine {
	margin-top: 6px;
}
.menu-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 30px;
	border-radius: 999px;
	text-decoration: none;

	font: 700 0.84rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;

	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;

	transition: background-color 0.2s ease, color 0.2s ease,
		border-color 0.2s ease, transform 0.12s ease;
}
.menu-cta:hover,
.menu-cta:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-1px);
	text-decoration: none;
}

/* Responsive tightening */
@media (max-width: 640px) {
	.menu-btn {
		padding: 10px 18px;
		letter-spacing: 0.1em;
	}
	.menu-cta {
		padding: 11px 24px;
		letter-spacing: 0.12em;
	}
}
/* ================================
   THEME: dark-academia / editorial
   ================================ */
:root {
	--ink: #0f1418; /* deeper text */
	--muted: #7a7f84;
	--brand: #8b6a3c; /* antique gold (less orange) */
	--nav-ink: #dcdfe2; /* light nav over hero */
	--ivory: #eae6df; /* parchment accents */
	--night: #0b0f13; /* hero overlay base */
}

.dark-academia h1,
.dark-academia h2,
.dark-academia h3,
.dark-academia h4,
.dark-academia h5,
.dark-academia h6 {
	color: var(--brand);
	letter-spacing: 0.02em;
}
.dark-academia p {
	color: #cfd6db;
}

/* Global type: calmer, more romantic + editorial spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #8b6a3c;
	letter-spacing: 0.02em;
}
p {
	color: #cfd6db;
} /* on dark bands this reads softer */

/* ======================================
   SERVICES BAND (moody, no rounded chips)
   ====================================== */
#menu-section.menu-dark-bg {
	position: relative;
	padding: clamp(84px, 9vw, 132px) 0;
	text-align: center;
	color: var(--ivory);
	background: linear-gradient(
			180deg,
			rgba(7, 9, 12, 0.7),
			rgba(7, 9, 12, 0.82)
		),
		url("images/AmerNabulsi-513.jpg") center/cover fixed no-repeat;
	isolation: isolate;
}

/* subtle vignette for romance (edges darker) */
#menu-section.menu-dark-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		120% 80% at 50% 10%,
		transparent 0 55%,
		rgba(0, 0, 0, 0.35) 100%
	);
	mix-blend-mode: multiply;
	z-index: 0;
}

.menu-title {
	color: var(--ivory);
	font-weight: 400;
	text-transform: none; /* less shouty */
	letter-spacing: 0.01em;
	font-size: clamp(32px, 4.2vw, 46px);
	margin: 0 0 10px;
}
.menu-subtle {
	/* optional eyebrow */
	display: block;
	font: 600 0.78rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(234, 230, 223, 0.7);
	margin-bottom: 18px;
}

/* turn chips into elegant text-links */
.menu-categories {
	gap: 8px 18px;
	margin: 18px 0 26px;
}
.menu-btn {
	all: unset; /* strip button defaults */
	display: inline-block;
	cursor: pointer;

	font: 600 0.88rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.18em;
	text-transform: uppercase;

	color: var(--ivory);
	padding: 6px 2px; /* no pill padding */
	border-radius: 0; /* <- no rounded corners */
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}
.menu-btn:hover,
.menu-btn:focus-visible {
	color: #ffffff;
	border-color: rgba(234, 230, 223, 0.55); /* hairline underline */
	transform: translateY(-1px);
	outline: none;
}

.page-hero.hero--portfolio {
	position: relative;
	isolation: isolate;
	min-height: 100svh; /* full safe viewport height */
	/* fallback for older browsers */
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
}
.page-hero.hero--portfolio::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	z-index: 0;
}

/* primary CTA: square, quiet outline -> filled on hover */
.menu-wine {
	margin-top: 10px;
}
.menu-cta,
.menu-btn.full-width {
	all: unset;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 24px;
	border: 1px solid rgba(234, 230, 223, 0.55);
	background: transparent;
	color: var(--ivory);
	border-radius: 2px; /* square, not pill */
	font: 700 0.84rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
		transform 0.12s ease;
}
.menu-cta:hover,
.menu-btn.full-width:hover,
.menu-cta:focus-visible,
.menu-btn.full-width:focus-visible {
	background: rgba(234, 230, 223, 0.1);
	border-color: rgba(234, 230, 223, 0.75);
	transform: translateY(-1px);
	outline: none;
}

/* make the small category links look clickable even when inside <button><a>… */
.menu-btn a {
	color: inherit;
	text-decoration: none;
}
.menu-btn a:hover {
	text-decoration: none;
}

/* =================
   NAV (editorial)
   ================= */
body:not(.solid-header) nav a {
	color: var(--nav-ink);
}
nav a {
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-bottom-width: 1px; /* thinner underline */
}
nav a:hover {
	border-bottom-color: var(--brand);
	color: #fff;
}

/* =============================
   HERO COPY (romantic emphasis)
   ============================= */
#carousel-section .hero-content h1,
.page-hero__title {
	font-weight: 400;
	font-style: italic; /* romantic vibe */
	color: var(--ivory) !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
#carousel-section .hero-content p,
.page-hero__lead {
	color: rgba(234, 230, 223, 0.92) !important;
}

/* ===========================
   VOGUE / GEN Z EDITORIAL FORM
   =========================== */
/* Replace your current .vogue-contact padding with this */
.vogue-contact {
	display: flex;
	min-height: min(78vh, 720px);
	background: #f6f4ef;
	isolation: isolate;

	/* responsive outer gap (push neighbors away) */
	margin-block: clamp(32px, 6vw, 96px);

	/* responsive inner breathing room */
	padding-block: clamp(28px, 5vw, 64px);
}

/* Optional: give a little extra air above/below when used between sections */
section + .vogue-contact {
	margin-top: clamp(32px, 5vw, 72px);
}
.vogue-contact + section {
	margin-top: clamp(32px, 5vw, 72px);
}

/* Mobile stack */
@media (max-width: 860px) {
	.vogue-contact {
		flex-direction: column;
		/* slightly tighter on phones */
		margin-block: clamp(24px, 6vw, 48px);
		padding-block: clamp(20px, 5vw, 44px);
	}
	.vogue-contact .vogue-image {
		height: 38vh;
	}
	.vf-cta {
		width: 100%;
		justify-content: center;
	}
}

.vogue-contact .vogue-image {
	flex: 1;
	background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.25),
			rgba(0, 0, 0, 0.25)
		),
		url("images/sarah-chris/IMG_3130.PNG") center/cover no-repeat;
	filter: grayscale(100%) contrast(1.05);
}
.vogue-contact .vogue-panel {
	flex: 1;
	display: grid;
	align-content: center;
	gap: 18px;
	padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 72px);
	background: #f6f4ef;
}

/* Eyebrow + title */
.vf-eyebrow {
	margin: 0;
	font: 600 0.78rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #6b7c89;
}
.vf-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-weight: 400;
	font-size: clamp(28px, 4.6vw, 48px);
	line-height: 1.1;
	color: #0e2a41;
}
.vf-title em {
	font-style: italic;
	color: var(--brand);
}
.vf-sub {
	margin: 0.25rem 0 0;
	color: #7b858c;
	font-size: 0.95rem;
}

.vogue-form {
	margin-top: 8px;
	display: grid;
	gap: 16px;
	width: min(520px, 100%);
}
.vf-hide {
	position: absolute !important;
	left: -9999px !important;
}

/* Fields: hairline underline, oversized inputs */
.vf-field {
	display: grid;
	gap: 8px;
}
.vf-label {
	font: 600 0.72rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6b7c89;
}
.vogue-form input,
.vogue-form textarea {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-bottom: 1px solid rgba(14, 42, 65, 0.18);
	background: transparent;
	padding: 14px 2px 12px;
	color: #0e2a41;
	font: 500 1rem/1.4 "Montserrat", sans-serif;
	outline: none;
	transition: border-color 0.16s ease, transform 0.12s ease;
}
.vogue-form input::placeholder,
.vogue-form textarea::placeholder {
	color: transparent;
} /* floating trick */
.vogue-form input:focus,
.vogue-form textarea:focus {
	border-bottom-color: var(--brand);
	transform: translateY(-1px);
}
.vogue-form textarea {
	resize: vertical;
	min-height: 130px;
}

/* CTA: quiet outline → gold fill */
.vf-cta {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border: 1px solid #0e2a41;
	background: transparent;
	color: #0e2a41;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font: 700 0.86rem/1 "Montserrat", sans-serif;
	border-radius: 2px;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s;
}
.vf-cta:hover,
.vf-cta:focus-visible {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	transform: translateY(-1px);
	outline: none;
}
.vf-arrow {
	transition: transform 0.18s ease;
}
.vf-cta:hover .vf-arrow {
	transform: translateX(4px);
}

/* Fine print link */
.vf-fine {
	margin: 0.5rem 0 0;
	color: #6b7c89;
	font-size: 0.9rem;
}
.vf-link {
	color: #0e2a41;
	text-decoration: none;
	border-bottom: 1px solid rgba(14, 42, 65, 0.25);
}
.vf-link:hover {
	color: var(--brand);
	border-bottom-color: var(--brand);
}

/* Mobile stack */
@media (max-width: 860px) {
	.vogue-contact {
		flex-direction: column;
	}
	.vogue-contact .vogue-image {
		height: 38vh;
	}
	.vf-cta {
		width: 100%;
		justify-content: center;
	}
}

/* =============================
   BUTTONS (global, square)
   ============================= */
.btn,
.btn-secondary,
.btn-secondary-dark {
	border-radius: 2px; /* no pills */
	letter-spacing: 0.12em;
}
.btn-secondary,
.btn-secondary-dark {
	border-color: rgba(234, 230, 223, 0.5);
}

/* =============================
   ACCESSIBILITY / RESPONSIVE
   ============================= */
@media (max-width: 640px) {
	.menu-btn {
		letter-spacing: 0.14em;
	}
	.menu-cta,
	.menu-btn.full-width {
		padding: 10px 20px;
	}
}

.me-page .me-media img {
	filter: contrast(1.06) saturate(0.96) brightness(0.98) hue-rotate(-4deg);
	transition: filter 0.35s ease, transform 0.45s ease;
	transform: translateZ(0);
}

/* 2) Luxe overlay stack: warm wash + vignette + fine grain */
.me-page .me-media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'>\
  <filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter>\
  <rect width='100%' height='100%' filter='url(#n)' opacity='0.035'/>\
</svg>")
			repeat,
		linear-gradient(0deg, rgba(139, 106, 60, 0.05), rgba(0, 0, 0, 0)),
		radial-gradient(
			120% 85% at 50% 55%,
			rgba(0, 0, 0, 0) 55%,
			rgba(0, 0, 0, 0.18) 100%
		);
	mix-blend-mode: multiply;

	/* Crisp grain without blurring on hi-dpi */
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	background-size: 140px 140px, cover, cover;

	opacity: 1;
	transition: opacity 0.35s ease;
}

/* 3) Hover: a touch more drama, still restrained */
.me-page .me-card:hover .me-media img {
	transform: scale(1.03);
	filter: contrast(1.08) saturate(0.95) brightness(0.98) hue-rotate(-6deg);
}

.me-page .me-card:hover .me-media::after {
	opacity: 1; /* already subtle—feel free to nudge to 1.05 if you like */
}

.me-page .me-lightbox img {
	filter: none !important;
}
.page-hero.hero--portfolio {
	position: relative;
	isolation: isolate;
	min-height: 100svh; /* full safe viewport height */
	/* fallback for older browsers */
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
}
.page-hero.hero--portfolio::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	z-index: 0;
}

/* =========================================================
   HOME CONTACT: Luxe / editorial overrides (scoped & specific)
   ========================================================= */
.contact-form-area form.lux-form {
	width: 80%;
	max-width: 420px;
	display: grid;
	gap: 12px;
	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Hide honeypot, prevent layout shifts */
.contact-form-area form.lux-form [name="_honey"] {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Fields — override previous .contact-form-area inputs */
.contact-form-area form.lux-form input[type="text"],
.contact-form-area form.lux-form input[type="email"],
.contact-form-area form.lux-form textarea {
	width: 100% !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(0, 43, 73, 0.7) !important; /* editorial hairline */
	background: rgba(255, 255, 255, 0.12) !important; /* soft translucency */
	color: #1c242b !important;
	border-radius: 2px !important; /* square, luxe */
	outline: none !important;
	box-shadow: none !important;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s,
		transform 0.12s !important;
}

.contact-form-area form.lux-form textarea {
	min-height: 120px !important;
	resize: vertical !important;
}

/* Placeholders: quiet + refined */
.contact-form-area form.lux-form ::placeholder {
	color: rgba(0, 43, 73, 0.55) !important;
	letter-spacing: 0.14em !important;
}

/* Focus state: antique-gold halo + micro-lift */
.contact-form-area form.lux-form input:focus,
.contact-form-area form.lux-form textarea:focus {
	border-color: var(--brand) !important;
	box-shadow: 0 0 0 2px rgba(139, 106, 60, 0.18) !important;
	background: rgba(255, 255, 255, 0.22) !important;
	transform: translateY(-1px) !important;
}

/* Button: outline → gold on hover, stays within palette */
.contact-form-area form.lux-form button[type="submit"] {
	width: 100% !important;
	padding: 14px 18px !important;
	background: #e0dcd5 !important;
	color: #002b49 !important;
	border: 1px solid #002b49 !important;
	border-radius: 2px !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	font: 700 0.84rem/1 "Montserrat", sans-serif !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s,
		box-shadow 0.2s !important;
}

.contact-form-area form.lux-form button[type="submit"]:hover,
.contact-form-area form.lux-form button[type="submit"]:focus-visible {
	background: var(--brand) !important;
	color: #fff !important;
	border-color: var(--brand) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12) !important;
	outline: none !important;
}

/* Small screens: breathe a bit more */
@media (max-width: 768px) {
	.contact-form-area form.lux-form {
		width: 90%;
		max-width: 520px;
		gap: 10px;
	}
}
/* === HOME CONTACT: Luxe / editorial (scoped, safe) === */
#contact-form-section .contact-form-area form.lux-form {
	width: 80%;
	max-width: 420px;
	display: grid;
	gap: 12px;
	font: 600 0.82rem/1 "Montserrat", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* hide honeypot */
#contact-form-section .contact-form-area form.lux-form [name="_honey"] {
	position: absolute !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* fields */
#contact-form-section .contact-form-area form.lux-form input[type="text"],
#contact-form-section .contact-form-area form.lux-form input[type="email"],
#contact-form-section .contact-form-area form.lux-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 43, 73, 0.7);
	background: rgba(255, 255, 255, 0.12);
	color: #1c242b;
	border-radius: 2px;
	outline: none;
	box-shadow: none;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s,
		transform 0.12s;
}
#contact-form-section .contact-form-area form.lux-form textarea {
	min-height: 120px;
	resize: vertical;
}

/* placeholders */
#contact-form-section .contact-form-area form.lux-form ::placeholder {
	color: rgba(0, 43, 73, 0.55);
	letter-spacing: 0.14em;
}

/* focus */
#contact-form-section .contact-form-area form.lux-form input:focus,
#contact-form-section .contact-form-area form.lux-form textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 2px rgba(139, 106, 60, 0.18);
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

/* button */
#contact-form-section .contact-form-area form.lux-form button[type="submit"] {
	width: 100%;
	padding: 14px 18px;
	background: #e0dcd5;
	color: #002b49;
	border: 1px solid #002b49;
	border-radius: 2px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font: 700 0.84rem/1 "Montserrat", sans-serif;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s,
		box-shadow 0.2s;
}
#contact-form-section
	.contact-form-area
	form.lux-form
	button[type="submit"]:hover,
#contact-form-section
	.contact-form-area
	form.lux-form
	button[type="submit"]:focus-visible {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
	outline: none;
}

/* small screens */
@media (max-width: 768px) {
	#contact-form-section .contact-form-area form.lux-form {
		width: 90%;
		max-width: 520px;
		gap: 10px;
	}
}
