/* ============================================================
   NEW WAVE CINEMA — style.css
   Dark cinematic theme · Premium feel · Fully responsive
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
	--black:        #080808;
	--dark:         #0f0f0f;
	--dark-mid:     #161616;
	--dark-card:    #1a1a1a;
	--dark-border:  #2a2a2a;
	--gold:         #c9a84c;
	--gold-light:   #e2c47a;
	--gold-dim:     rgba(201, 168, 76, 0.15);
	--white:        #ffffff;
	--off-white:    #f0ece4;
	--grey:         #888888;
	--grey-light:   #b0a898;
	--text:         #d4cfc8;
	--text-muted:   #7a7570;

	--font-serif:   'Cormorant Garamond', Georgia, serif;
	--font-sans:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

	--nav-h:        110px;
	--radius:       4px;
	--transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow:       0 8px 40px rgba(0,0,0,0.6);
	--shadow-gold:  0 0 30px rgba(201, 168, 76, 0.2);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--black);
	color: var(--text);
	font-family: var(--font-sans);
	font-weight: 300;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 300;
	line-height: 1.15;
	color: var(--off-white);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; }

h1 em, h2 em {
	font-style: italic;
	color: var(--gold);
}

p { color: var(--text); }

/* ── Container ──────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	.container { padding: 0 24px; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
	display: inline-block;
	padding: 14px 36px;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border-radius: var(--radius);
	transition: all var(--transition);
	cursor: pointer;
	white-space: nowrap;
}

.btn-primary {
	background: var(--gold);
	color: var(--black);
	border: 1px solid var(--gold);
}
.btn-primary:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-gold);
}

.btn-ghost {
	background: transparent;
	color: var(--off-white);
	border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}
.btn-outline:hover {
	background: var(--gold);
	color: var(--black);
	transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ── Section Shared ─────────────────────────────────────────── */
section { padding: 100px 0; }

.section-header {
	text-align: center;
	margin-bottom: 70px;
}
.section-header.light h2,
.section-header.light .section-eyebrow { color: var(--off-white); }

.section-eyebrow {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.section-sub {
	max-width: 600px;
	margin: 20px auto 0;
	color: var(--grey-light);
	font-size: 1.05rem;
}

/* ── Fade-in animation ──────────────────────────────────────── */
.exp-card, .who-card, .package-card, .step, .stat {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.exp-card.visible, .who-card.visible, .package-card.visible,
.step.visible, .stat.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-h);
	transition: background var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
	background: rgba(8, 8, 8, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--dark-border);
}

.nav-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.nav-logo {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-logo-img {
	height: 90px;
	width: auto;
	display: block;
}

.nav-links-left {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	justify-content: flex-start;
}

.nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.logo-text {
	font-family: var(--font-sans);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--off-white);
}
.logo-text em {
	font-style: normal;
	color: var(--gold);
}

.nav-links,
.nav-links-left {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.nav-links a,
.nav-links-left a,
.nav-right a {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey-light);
	transition: color var(--transition);
	text-decoration: none;
}
.nav-links a:hover,
.nav-links-left a:hover,
.nav-right a:hover { color: var(--off-white); }

.nav-phone {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--grey-light) !important;
	text-decoration: none;
	transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold) !important; }

.nav-cta {
	padding: 10px 24px;
	border: 1px solid var(--gold) !important;
	color: var(--gold) !important;
	border-radius: var(--radius);
	transition: all var(--transition) !important;
}
.nav-cta:hover {
	background: var(--gold) !important;
	color: var(--black) !important;
}

.nav-right {
	gap: 20px;
}

/* Hamburger */
.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}
.nav-hamburger span {
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--off-white);
	transition: all var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
	display: none;
	position: absolute;
	top: var(--nav-h);
	left: 0;
	right: 0;
	background: rgba(8,8,8,0.98);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--dark-border);
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.nav-mobile.open {
	max-height: 400px;
	padding: 20px 0;
}
.nav-mobile ul { padding: 0 40px; }
.nav-mobile li { border-bottom: 1px solid var(--dark-border); }
.nav-mobile a {
	display: block;
	padding: 16px 0;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey-light);
	transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

@media (max-width: 900px) {
	.nav-links,
	.nav-links-left,
	.nav-right { display: none; }
	.nav-hamburger {
		display: flex;
		position: absolute;
		right: 24px;
	}
	.nav-mobile { display: block; }
	.nav-inner {
		padding: 0 24px;
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	overflow: hidden;
	background: var(--black);
}

/* Cinematic gradient background — replace with real image via background-image */
#hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
		linear-gradient(135deg, #0a0a0a 0%, #080808 50%, #0d0b08 100%);
	z-index: 0;
}

/* Film grain texture overlay */
#hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	opacity: 0.4;
	z-index: 1;
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 900px;
	padding: 0 40px;
	padding-top: var(--nav-h);
	padding-bottom: 120px;
}

.hero-eyebrow {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 28px;
}

.hero-content h1 {
	margin-bottom: 28px;
}

.hero-sub {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: var(--grey-light);
	max-width: 640px;
	margin: 0 auto 48px;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.hero-scroll span {
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.scroll-line {
	width: 1px;
	height: 50px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%, 100% { opacity: 0.3; transform: scaleY(1); }
	50% { opacity: 1; transform: scaleY(1.1); }
}

@media (max-width: 600px) {
	.hero-content { padding: 0 24px; padding-top: var(--nav-h); }
	.hero-actions { flex-direction: column; align-items: center; }
	.hero-scroll { display: none; }
}

/* ── INTRO ──────────────────────────────────────────────────── */
#intro {
	background: var(--dark);
	border-top: 1px solid var(--dark-border);
	border-bottom: 1px solid var(--dark-border);
}

.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.intro-text h2 {
	margin-bottom: 24px;
}
.intro-text p {
	color: var(--grey-light);
	margin-bottom: 16px;
	font-size: 1.05rem;
	line-height: 1.85;
}

.intro-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

.stat {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	padding: 36px 28px;
	text-align: center;
	transition-delay: calc(var(--i, 0) * 0.1s);
}
.stat:nth-child(1) { --i: 0; border-radius: var(--radius) 0 0 0; }
.stat:nth-child(2) { --i: 1; border-radius: 0 var(--radius) 0 0; }
.stat:nth-child(3) { --i: 2; border-radius: 0 0 0 var(--radius); }
.stat:nth-child(4) { --i: 3; border-radius: 0 0 var(--radius) 0; }

.stat-num {
	display: block;
	font-family: var(--font-serif);
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 8px;
}
.stat-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
}

@media (max-width: 900px) {
	.intro-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 500px) {
	.intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ── EXPERIENCE ─────────────────────────────────────────────── */
#experience {
	background: var(--black);
}

.experience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.exp-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	padding: 44px 36px;
	transition: border-color var(--transition), background var(--transition);
	transition-delay: calc(var(--i, 0) * 0.08s);
}
.exp-card:nth-child(1) { --i: 0; }
.exp-card:nth-child(2) { --i: 1; }
.exp-card:nth-child(3) { --i: 2; }
.exp-card:nth-child(4) { --i: 3; }
.exp-card:nth-child(5) { --i: 4; }
.exp-card:nth-child(6) { --i: 5; }

.exp-card:hover {
	border-color: var(--gold);
	background: var(--dark-mid);
}

.exp-card h3 {
	font-size: 1.1rem;
	margin-bottom: 14px;
	color: var(--off-white);
}
.exp-card p {
	font-size: 0.9rem;
	color: var(--grey-light);
	line-height: 1.75;
}

@media (max-width: 900px) {
	.experience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.experience-grid { grid-template-columns: 1fr; }
	.exp-card { padding: 32px 24px; }
}

/* ── WHO IT'S FOR ───────────────────────────────────────────── */
#who {
	position: relative;
	background: var(--dark);
	overflow: hidden;
}

.who-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse at 10% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

#who .section-header h2 { color: var(--off-white); }
#who .section-eyebrow { color: var(--gold); }

.who-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.who-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 36px 28px;
	transition: border-color var(--transition), transform var(--transition);
	transition-delay: calc(var(--i, 0) * 0.08s);
}
.who-card:nth-child(1) { --i: 0; }
.who-card:nth-child(2) { --i: 1; }
.who-card:nth-child(3) { --i: 2; }
.who-card:nth-child(4) { --i: 3; }
.who-card:nth-child(5) { --i: 4; }
.who-card:nth-child(6) { --i: 5; }

.who-card:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-4px);
}

.who-card h3 {
	font-size: 1rem;
	font-family: var(--font-sans);
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--off-white);
	margin-bottom: 12px;
}
.who-card p {
	font-size: 0.88rem;
	color: var(--grey-light);
	line-height: 1.75;
}

@media (max-width: 900px) {
	.who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.who-grid { grid-template-columns: 1fr; }
}

/* ── PACKAGES ───────────────────────────────────────────────── */
#packages {
	background: var(--black);
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}

.package-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 44px 36px;
	position: relative;
	transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
	transition-delay: calc(var(--i, 0) * 0.1s);
}
.package-card:nth-child(1) { --i: 0; }
.package-card:nth-child(2) { --i: 1; }
.package-card:nth-child(3) { --i: 2; }

.package-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.package-card.featured {
	border-color: var(--gold);
	background: var(--dark-mid);
	box-shadow: var(--shadow-gold);
}
.package-card.featured:hover {
	box-shadow: 0 12px 60px rgba(201, 168, 76, 0.3);
}

.package-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--black);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 5px 18px;
	border-radius: 20px;
	white-space: nowrap;
}

.package-header {
	margin-bottom: 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--dark-border);
}

.package-tier {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.package-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.price-from {
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}
.price-amount {
	font-family: var(--font-serif);
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--off-white);
	line-height: 1;
}

.package-features {
	margin-bottom: 28px;
}
.package-features li {
	font-size: 0.88rem;
	color: var(--grey-light);
	padding: 9px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	gap: 10px;
}
.package-features li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.package-ideal {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-style: italic;
	margin-bottom: 28px;
	line-height: 1.5;
}

.packages-note {
	text-align: center;
	margin-top: 48px;
	font-size: 0.88rem;
	color: var(--text-muted);
	font-style: italic;
}

@media (max-width: 1000px) {
	.packages-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
#how-it-works {
	background: var(--dark);
	border-top: 1px solid var(--dark-border);
	border-bottom: 1px solid var(--dark-border);
}

.steps-grid {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.step {
	flex: 1;
	padding: 0 32px;
	text-align: center;
	transition-delay: calc(var(--i, 0) * 0.12s);
}
.step:nth-child(1) { --i: 0; }
.step:nth-child(3) { --i: 1; }
.step:nth-child(5) { --i: 2; }
.step:nth-child(7) { --i: 3; }

.step-num {
	font-family: var(--font-serif);
	font-size: 4rem;
	font-weight: 300;
	color: var(--gold);
	opacity: 0.4;
	line-height: 1;
	margin-bottom: 20px;
}

.step h3 {
	font-size: 1.1rem;
	color: var(--off-white);
	margin-bottom: 14px;
}
.step p {
	font-size: 0.88rem;
	color: var(--grey-light);
	line-height: 1.75;
}

.step-divider {
	width: 1px;
	height: 120px;
	background: linear-gradient(to bottom, transparent, var(--dark-border), transparent);
	flex-shrink: 0;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.steps-grid {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.step { padding: 32px 0; max-width: 400px; }
	.step-divider {
		width: 60px;
		height: 1px;
		background: linear-gradient(to right, transparent, var(--dark-border), transparent);
		margin: 0;
	}
}

/* ── PULL QUOTE ─────────────────────────────────────────────── */
#pullquote {
	background: var(--black);
	padding: 80px 0;
}

#pullquote blockquote {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
}

#pullquote blockquote::before {
	content: '"';
	font-family: var(--font-serif);
	font-size: 8rem;
	color: var(--gold);
	opacity: 0.15;
	position: absolute;
	top: -40px;
	left: 20px;
	line-height: 1;
}

#pullquote blockquote p {
	font-family: var(--font-serif);
	font-size: clamp(1.3rem, 2.5vw, 2rem);
	font-weight: 300;
	font-style: italic;
	color: var(--off-white);
	line-height: 1.6;
	margin-bottom: 24px;
}

#pullquote blockquote cite {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	font-style: normal;
}

/* ── CONTACT ────────────────────────────────────────────────── */
#contact {
	background: var(--dark);
	border-top: 1px solid var(--dark-border);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	align-items: start;
}

.contact-info .section-eyebrow { text-align: left; }
.contact-info h2 {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	margin-bottom: 20px;
}
.contact-info > p {
	color: var(--grey-light);
		font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 40px;
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	overflow: hidden;
}

.contact-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid var(--dark-border);
}
.contact-detail:last-child { border-bottom: none; }

.detail-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.detail-value {
	font-size: 0.88rem;
	color: var(--off-white);
}

.contact-division {
	padding-top: 32px;
	border-top: 1px solid var(--dark-border);
}
.contact-division p {
	font-size: 0.78rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}
.contact-division a {
	color: var(--gold);
	transition: color var(--transition);
}
.contact-division a:hover { color: var(--gold-light); }

/* ── FORM ───────────────────────────────────────────────────── */
.contact-form-wrap {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 48px 44px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form-group.full {
	margin-bottom: 20px;
}

label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
	background: var(--dark);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	color: var(--off-white);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 300;
	padding: 13px 16px;
	width: 100%;
	transition: border-color var(--transition), box-shadow var(--transition);
	-webkit-appearance: none;
	appearance: none;
}

input[type="date"] {
	color-scheme: dark;
}

select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

input::placeholder,
textarea::placeholder { color: var(--text-muted); }

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.form-note {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-align: center;
	margin-top: 14px;
	font-style: italic;
}

.form-message {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: var(--radius);
	font-size: 0.88rem;
	text-align: center;
}
.form-message.success {
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid rgba(201, 168, 76, 0.3);
	color: var(--gold-light);
}
.form-message.error {
	background: rgba(200, 60, 60, 0.1);
	border: 1px solid rgba(200, 60, 60, 0.3);
	color: #e07070;
}

@media (max-width: 1000px) {
	.contact-grid { grid-template-columns: 1fr; gap: 50px; }
	.contact-form-wrap { padding: 36px 28px; }
}
@media (max-width: 600px) {
	.form-row { grid-template-columns: 1fr; }
	.contact-form-wrap { padding: 28px 20px; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
	background: var(--black);
	border-top: 1px solid var(--dark-border);
	padding: 60px 0 40px;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer-logo-img {
	height: 80px;
	width: auto;
	display: block;
}

.footer-tagline {
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.footer-links {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-links a {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-decoration: none;
	transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
	border-top: 1px solid var(--dark-border);
	padding-top: 24px;
	width: 100%;
	text-align: center;
}
.footer-bottom p {
	font-size: 0.72rem;
	color: var(--text-muted);
}
.footer-bottom a {
	color: var(--gold);
	text-decoration: none;
	transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-copy {
	font-size: 0.65rem;
	margin-top: 6px;
	color: var(--text-muted);
}

@media (max-width: 768px) {
	.footer-links { gap: 16px; }
}

/* ── UTILITY ────────────────────────────────────────────────── */
::selection {
	background: var(--gold);
	color: var(--black);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── PROPOSAL CTA SECTION ───────────────────────────────────── */
#proposal {
	background: var(--dark);
	border-top: 1px solid var(--dark-border);
	border-bottom: 1px solid var(--dark-border);
}

.proposal-wrap {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 80px;
	align-items: center;
}

.proposal-content .section-eyebrow {
	text-align: left;
}

.proposal-content h2 {
	margin-bottom: 20px;
}

.proposal-content > p {
	color: var(--grey-light);
	font-size: 1.05rem;
	line-height: 1.85;
	margin-bottom: 32px;
}

.proposal-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.proposal-list li {
	font-size: 0.9rem;
	color: var(--grey-light);
	padding: 11px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	gap: 12px;
}

.proposal-list li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.proposal-cta {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius);
	padding: 52px 44px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.proposal-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.proposal-cta-label {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-style: italic;
	color: var(--off-white);
	margin-bottom: 28px;
	line-height: 1.4;
}

.proposal-cta .btn {
	display: block;
	width: 100%;
	margin-bottom: 16px;
}

.proposal-cta-note {
	font-size: 0.72rem;
	color: var(--text-muted);
	font-style: italic;
}

@media (max-width: 900px) {
	.proposal-wrap {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.proposal-cta {
		padding: 36px 28px;
	}
}
