*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--gold: #c9a84c;
	--gold-light: #e8c97a;
	--gold-dim: #6b5520;
	--gold-pale: rgba(201, 168, 76, 0.08);
	--bg: #07090d;
	--bg-card: #0c0f15;
	--bg-mid: #0f1318;
	--border: rgba(201, 168, 76, 0.15);
	--border-bright: rgba(201, 168, 76, 0.5);
	--txt: #ede8de;
	--muted: #6b6860;
	--muted-light: #9a9890;
	--green: #3ecfa0;
	--red: #e05555;
	--radius: 2px;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--bg);
	color: var(--txt);
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
	width: 4px;
}
::-webkit-scrollbar-track {
	background: var(--bg);
}
::-webkit-scrollbar-thumb {
	background: var(--gold-dim);
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 4rem;
	height: 64px;
	background: rgba(7, 9, 13, 0.88);
	backdrop-filter: blur(20px);
	border-bottom: 0.5px solid rgba(201, 168, 76, 0.1);
	transition: background 0.3s;
}
.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.55rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	color: var(--gold-light);
}
.logo em {
	font-style: italic;
	color: var(--muted);
}
.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}
.nav-links a {
	font-size: 0.73rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--gold-light);
}
.nav-cta {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.55rem 1.5rem;
	border: 0.5px solid var(--gold);
	color: var(--gold);
	text-decoration: none;
	transition: all 0.25s;
	font-weight: 500;
}
.nav-cta:hover {
	background: var(--gold);
	color: var(--bg);
}
.nav-auth {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.nav-auth a {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted-light);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-auth a:hover {
	color: var(--gold-light);
}
.nav-auth .btn-gold-sm {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.55rem 1.5rem;
	background: var(--gold);
	color: var(--bg);
	text-decoration: none;
	transition: all 0.25s;
	font-weight: 500;
	border: 0.5px solid var(--gold);
}
.nav-auth .btn-gold-sm:hover {
	background: var(--gold-light);
}

/* ─── TICKER ─── */
.ticker-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 38px;
	background: rgba(201, 168, 76, 0.05);
	border-bottom: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	overflow: hidden;
	font-family: 'DM Mono', monospace;
	font-size: 0.68rem;
	color: var(--muted);
	z-index: 1;
}
.ticker-inner {
	display: flex;
	gap: 3.5rem;
	white-space: nowrap;
	animation: ticker 35s linear infinite;
	padding: 0 2rem;
}
.ticker-pair {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}
.ticker-sep {
	color: var(--gold-dim);
	margin: 0 0.5rem;
}
.up {
	color: var(--green);
}
.down {
	color: var(--red);
}
@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ─── HERO ─── */
#hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 7rem 4rem 5rem;
	gap: 4rem;
}
.hero-bg-img {
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
	filter: brightness(0.12) saturate(0.6);
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(7, 9, 13, 0.92) 40%, rgba(7, 9, 13, 0.55) 100%);
}
.hero-grid-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black, transparent);
}
.hero-glow {
	position: absolute;
	top: -10%;
	left: -5%;
	width: 55%;
	height: 70%;
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
	pointer-events: none;
	z-index: 1;
}
.hero-left {
	position: relative;
	z-index: 2;
}
.hero-right {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 1.5rem;
}

.eyebrow {
	font-family: 'DM Mono', monospace;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.4rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 0.5px;
	background: var(--gold);
}

h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 5vw, 5rem);
	font-weight: 300;
	line-height: 1.04;
	letter-spacing: -0.01em;
	margin-bottom: 1.6rem;
}
h1 em {
	font-style: italic;
	color: var(--gold-light);
}

.hero-sub {
	font-size: 1rem;
	color: var(--muted-light);
	line-height: 1.8;
	max-width: 480px;
	margin-bottom: 2.8rem;
}

.btn-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.95rem 2.2rem;
	background: var(--gold);
	color: var(--bg);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s;
	border: none;
	cursor: pointer;
}
.btn-gold:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
}
.btn-gold svg {
	transition: transform 0.2s;
}
.btn-gold:hover svg {
	transform: translateX(3px);
}

.btn-outline-sm {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted-light);
	text-decoration: none;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.btn-outline-sm:hover {
	color: var(--gold-light);
}

/* floating stat cards */
.hero-stat-stack {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 220px;
}
.hstat {
	background: rgba(12, 15, 21, 0.75);
	border: 0.5px solid var(--border);
	padding: 1.1rem 1.4rem;
	backdrop-filter: blur(20px);
	border-left: 2px solid var(--gold);
}
.hstat-val {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 300;
	color: var(--gold-light);
	line-height: 1;
}
.hstat-val.green {
	color: var(--green);
}
.hstat-lbl {
	font-size: 0.62rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 4px;
}

/* mini chart SVG */
.hero-chart-card {
	background: rgba(12, 15, 21, 0.75);
	border: 0.5px solid var(--border);
	padding: 1.1rem 1.4rem;
	backdrop-filter: blur(20px);
	width: 220px;
}
.hcc-label {
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.hcc-val {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--green);
	margin-bottom: 6px;
}

/* ─── SECTION COMMON ─── */
section {
	padding: 7rem 4rem;
	border-top: 0.5px solid var(--border);
}
.section-tag {
	font-family: 'DM Mono', monospace;
	font-size: 0.67rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.section-tag::before {
	content: '';
	display: block;
	width: 18px;
	height: 0.5px;
	background: var(--gold);
}
.section-h {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--txt);
}
.section-h em {
	font-style: italic;
	color: var(--gold-light);
}
.section-lead {
	color: var(--muted-light);
	line-height: 1.8;
	font-size: 0.95rem;
	margin-top: 0.7rem;
}

/* ─── ABOUT ─── */
#about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.about-img-wrap {
	position: relative;
}
.about-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
	filter: brightness(0.9) saturate(0.85);
	border: 0.5px solid var(--border);
}
.about-img-border {
	position: absolute;
	bottom: -18px;
	right: -18px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 0.5px solid var(--border);
	pointer-events: none;
}
.about-corner-tl {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 26px;
	height: 26px;
	border-top: 0.5px solid var(--gold);
	border-left: 0.5px solid var(--gold);
	z-index: 2;
}
.about-badge-img {
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--gold);
	color: var(--bg);
	font-family: 'DM Mono', monospace;
	font-size: 0.6rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding: 0.65rem 1.2rem;
}
.about-text p {
	color: var(--muted-light);
	line-height: 1.85;
	font-size: 0.93rem;
	margin-bottom: 1.1rem;
}
.about-text p strong {
	color: var(--txt);
	font-weight: 500;
}
.about-hr {
	width: 32px;
	height: 0.5px;
	background: var(--gold);
	margin: 1.6rem 0;
}
.creds {
	display: flex;
	gap: 2.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.cred-val {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.2rem;
	font-weight: 300;
	color: var(--gold-light);
	line-height: 1;
}
.cred-lbl {
	font-size: 0.62rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 3px;
}

/* ─── WHY CHOOSE US ─── */
#why {
	background: var(--bg-mid);
	position: relative;
	overflow: hidden;
}
#why::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1642790106117-e829e14a795f?w=900&q=80&auto=format&fit=crop') center/cover no-repeat;
	opacity: 0.07;
}
.why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
	position: relative;
	z-index: 1;
}
.why-left .section-lead {
	max-width: 420px;
}
.why-image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	filter: brightness(0.75) saturate(0.8);
	border: 0.5px solid var(--border);
	position: relative;
}
.why-img-wrap {
	position: relative;
}
.why-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(7, 9, 13, 0.8) 100%);
}
.why-img-caption {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-style: italic;
	color: var(--gold-light);
	line-height: 1.3;
}
.reasons {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 3rem;
}
.reason {
	display: flex;
	gap: 1.5rem;
	padding: 1.6rem 0;
	border-bottom: 0.5px solid var(--border);
	transition: background 0.2s;
}
.reason:first-child {
	border-top: 0.5px solid var(--border);
}
.reason:hover {
	background: var(--gold-pale);
}
.reason-num {
	font-family: 'DM Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: var(--gold-dim);
	padding-top: 2px;
	min-width: 28px;
}
.reason-body h4 {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--txt);
	margin-bottom: 0.35rem;
}
.reason-body p {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.65;
}

/* ─── SERVICES ─── */
.svc-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 0.5px solid var(--border);
}
.svc-card {
	background: var(--bg);
	padding: 2.2rem 1.8rem;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
	cursor: default;
}
.svc-card:hover {
	background: rgba(201, 168, 76, 0.04);
}
.svc-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1.5px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
.svc-card:hover::after {
	transform: scaleX(1);
}
.svc-num {
	font-family: 'DM Mono', monospace;
	font-size: 0.58rem;
	letter-spacing: 0.15em;
	color: var(--gold-dim);
	margin-bottom: 1.2rem;
}
.svc-icon {
	width: 40px;
	height: 40px;
	border: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.3rem;
	color: var(--gold);
	transition: border-color 0.3s;
}
.svc-card:hover .svc-icon {
	border-color: var(--gold);
}
.svc-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--txt);
	margin-bottom: 0.65rem;
	line-height: 1.2;
}
.svc-desc {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.7;
}

/* ─── PACKAGES ─── */
#packages {
	background: var(--bg-mid);
}
.pkg-intro {
	max-width: 540px;
	margin-bottom: 3.5rem;
}
.pkg-intro .section-lead {
	margin-top: 0.7rem;
}
.pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.pkg {
	border: 0.5px solid var(--border);
	background: var(--bg-card);
	padding: 2.2rem 1.8rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition:
		border-color 0.3s,
		transform 0.3s;
}
.pkg:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-5px);
}
.pkg.featured {
	border-color: var(--gold);
	background: linear-gradient(160deg, #0e1208 0%, #0c0f15 100%);
}
.pkg-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--bg);
	font-family: 'DM Mono', monospace;
	font-size: 0.58rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.3rem 1rem;
	white-space: nowrap;
}
.pkg-tier {
	font-family: 'DM Mono', monospace;
	font-size: 0.6rem;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.6rem;
}
.pkg-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.7rem;
	font-weight: 300;
	color: var(--txt);
	margin-bottom: 0.25rem;
}
.pkg-min {
	font-size: 0.78rem;
	color: var(--muted);
	margin-bottom: 1.5rem;
}
.pkg-min strong {
	color: var(--gold-light);
	font-weight: 500;
}
.pkg-hr {
	height: 0.5px;
	background: var(--border);
	margin-bottom: 1.5rem;
}
.pkg-roi {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--gold-light);
	line-height: 1;
}
.pkg-roi-lbl {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1.6rem;
	margin-top: 0.2rem;
}
.pkg-feats {
	list-style: none;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1.8rem;
}
.pkg-feats li {
	font-size: 0.8rem;
	color: var(--muted-light);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.pkg-feats li::before {
	content: '';
	display: block;
	width: 12px;
	height: 0.5px;
	background: var(--gold-dim);
	flex-shrink: 0;
}
.pkg-btn {
	display: block;
	text-align: center;
	padding: 0.8rem;
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s;
}
.pkg-btn.outline {
	border: 0.5px solid rgba(201, 168, 76, 0.4);
	color: var(--gold);
}
.pkg-btn.outline:hover {
	background: var(--gold);
	color: var(--bg);
	border-color: var(--gold);
}
.pkg-btn.solid {
	background: var(--gold);
	color: var(--bg);
	border: 0.5px solid var(--gold);
}
.pkg-btn.solid:hover {
	background: var(--gold-light);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
	position: relative;
	overflow: hidden;
}
#testimonials::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1400&q=70&auto=format&fit=crop') center/cover no-repeat;
	filter: brightness(0.07) saturate(0.4);
}
.testi-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--bg) 0%, rgba(7, 9, 13, 0.7) 40%, rgba(7, 9, 13, 0.7) 60%, var(--bg) 100%);
}
.testi-inner {
	position: relative;
	z-index: 1;
}
.testi-header {
	text-align: center;
	margin-bottom: 4rem;
}
.testi-header .section-tag {
	justify-content: center;
}
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.tcard {
	background: rgba(12, 15, 21, 0.85);
	border: 0.5px solid var(--border);
	padding: 2rem 1.8rem;
	backdrop-filter: blur(16px);
	position: relative;
	transition:
		border-color 0.3s,
		transform 0.3s;
}
.tcard:hover {
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateY(-4px);
}
.tcard::before {
	content: '\201C';
	font-family: 'Cormorant Garamond', serif;
	font-size: 5rem;
	font-weight: 300;
	color: var(--gold-dim);
	position: absolute;
	top: -0.5rem;
	left: 1.5rem;
	line-height: 1;
	pointer-events: none;
}
.tcard-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}
.star {
	width: 11px;
	height: 11px;
	background: var(--gold);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tcard-text {
	font-size: 0.87rem;
	color: var(--muted-light);
	line-height: 1.78;
	margin-bottom: 1.5rem;
	font-style: italic;
}
.tcard-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}
.tcard-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(30%);
	border: 0.5px solid var(--border);
	flex-shrink: 0;
}
.tcard-avatar-init {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gold-dim);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	font-weight: 400;
	color: var(--gold-light);
	flex-shrink: 0;
	border: 0.5px solid var(--border);
}
.tcard-name {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--txt);
}
.tcard-role {
	font-size: 0.68rem;
	letter-spacing: 0.07em;
	color: var(--muted);
	margin-top: 2px;
}
.tcard-amount {
	font-family: 'DM Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	color: var(--green);
	background: rgba(62, 207, 160, 0.08);
	border: 0.5px solid rgba(62, 207, 160, 0.2);
	padding: 0.2rem 0.55rem;
	display: inline-block;
	margin-top: 4px;
}

/* ─── TRUST LOGOS / PARTNERS ─── */
#trust {
	padding: 3rem 4rem;
	background: var(--bg-mid);
}
.trust-inner {
	display: flex;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}
.trust-label {
	font-family: 'DM Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	white-space: nowrap;
}
.trust-divider {
	width: 1px;
	height: 32px;
	background: var(--border);
}
.trust-logos {
	display: flex;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}
.trust-logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--muted);
	letter-spacing: 0.06em;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.trust-logo-text:hover {
	opacity: 1;
	color: var(--gold-light);
}

/* ─── CTA BAND ─── */
#cta {
	position: relative;
	overflow: hidden;
	padding: 8rem 4rem;
	text-align: center;
}
#cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1400&q=70&auto=format&fit=crop') center/cover no-repeat;
	filter: brightness(0.08) saturate(0.4);
}
.cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
	pointer-events: none;
}
.cta-body {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
}
.cta-h {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.4rem, 4.5vw, 3.8rem);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 1rem;
}
.cta-h em {
	font-style: italic;
	color: var(--gold-light);
}
.cta-sub {
	font-size: 0.93rem;
	color: var(--muted-light);
	line-height: 1.75;
	margin-bottom: 2.8rem;
}
.cta-form {
	display: flex;
	max-width: 420px;
	margin: 0 auto 1rem;
}
.cta-form input {
	flex: 1;
	padding: 0.9rem 1.1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 0.5px solid var(--border);
	border-right: none;
	color: var(--txt);
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	outline: none;
}
.cta-form input::placeholder {
	color: var(--muted);
}
.cta-form input:focus {
	border-color: var(--gold);
}
.cta-form button {
	padding: 0.9rem 1.6rem;
	background: var(--gold);
	color: var(--bg);
	border: none;
	font-family: 'Outfit', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}
.cta-form button:hover {
	background: var(--gold-light);
}
.cta-disc {
	font-size: 0.63rem;
	letter-spacing: 0.05em;
	color: var(--muted);
}

/* ─── CONTACT ─── */
#contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}
.contact-left {
}
.contact-left .section-lead {
	margin-bottom: 2.5rem;
}
.cdet {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.2rem;
}
.cdet-icon {
	width: 34px;
	height: 34px;
	border: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
}
.cdet-txt strong {
	display: block;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt);
	font-weight: 500;
	margin-bottom: 2px;
}
.cdet-txt span {
	font-size: 0.82rem;
	color: var(--muted);
}
.contact-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.ff {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.ff label {
	font-size: 0.63rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.ff input,
.ff textarea,
.ff select {
	background: rgba(255, 255, 255, 0.03);
	border: 0.5px solid var(--border);
	padding: 0.82rem 0.95rem;
	color: var(--txt);
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	font-weight: 300;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
}
.ff input:focus,
.ff textarea:focus,
.ff select:focus {
	border-color: var(--gold);
}
.ff textarea {
	resize: vertical;
	min-height: 96px;
}
.ff select {
	appearance: none;
	cursor: pointer;
}
.ff select option {
	background: #0c0f15;
}
.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.fsub {
	padding: 0.9rem 1.8rem;
	background: var(--gold);
	color: var(--bg);
	border: none;
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	align-self: flex-start;
}
.fsub:hover {
	background: var(--gold-light);
}

/* ─── FOOTER ─── */
footer {
	border-top: 0.5px solid var(--border);
	padding: 2rem 4rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
}
.ft-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 300;
	color: var(--gold-light);
	letter-spacing: 0.07em;
}
.ft-copy {
	font-size: 0.7rem;
	color: var(--muted);
	text-align: center;
	letter-spacing: 0.04em;
}
.ft-links {
	display: flex;
	gap: 1.5rem;
	justify-content: flex-end;
}
.ft-links a {
	font-size: 0.68rem;
	color: var(--muted);
	text-decoration: none;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: color 0.2s;
}
.ft-links a:hover {
	color: var(--gold);
}

/* ─── AUTH PAGES (login, register, reset) ─── */
.auth-page {
	display: flex;
	min-height: 100vh;
	background: var(--bg);
}
.auth-left {
	display: none;
	width: 50%;
	position: relative;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background: var(--bg);
}
@media (min-width: 1024px) {
	.auth-left {
		display: flex;
	}
}
.auth-left-bg {
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1200&q=80&auto=format&fit=crop') center/cover no-repeat;
	filter: brightness(0.12) saturate(0.6);
}
.auth-left-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(7, 9, 13, 0.92) 40%, rgba(7, 9, 13, 0.55) 100%);
}
.auth-left-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
}
.auth-left-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 3rem;
	max-width: 480px;
}
.auth-left-inner .logo {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.auth-left-inner h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--txt);
	margin-bottom: 1rem;
	line-height: 1.1;
}
.auth-left-inner h2 em {
	font-style: italic;
	color: var(--gold-light);
}
.auth-left-inner p {
	color: var(--muted-light);
	font-size: 0.95rem;
	line-height: 1.7;
}
.auth-right {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
}
@media (min-width: 1024px) {
	.auth-right {
		width: 50%;
	}
}
.auth-top-bar {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 20;
}
.auth-back {
	width: 36px;
	height: 36px;
	border: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	text-decoration: none;
	transition: all 0.2s;
}
.auth-back:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}
.auth-form-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 1.5rem 3rem;
}
.auth-card {
	width: 100%;
	max-width: 420px;
}
.auth-card h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 300;
	color: var(--txt);
	margin-bottom: 0.4rem;
}
.auth-card .auth-lead {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 2rem;
}
.auth-ff {
	margin-bottom: 1.2rem;
}
.auth-ff label {
	display: block;
	font-size: 0.63rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.4rem;
}
.auth-ff input,
.auth-ff select {
	background: rgba(255, 255, 255, 0.03);
	border: 0.5px solid var(--border);
	padding: 0.85rem 1rem;
	color: var(--txt);
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	font-weight: 300;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
}
.auth-ff select option {
	background: var(--bg-card);
	color: var(--txt);
}
.auth-ff input:focus,
.auth-ff select:focus {
	border-color: var(--gold);
}
.auth-ff .input-wrap {
	position: relative;
}
.auth-ff .input-wrap .input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	pointer-events: none;
}
.auth-ff .input-wrap input {
	padding-left: 2.6rem;
}
.auth-ff .input-wrap .toggle-pass {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	font-size: 0.85rem;
}
.auth-ff .input-wrap .toggle-pass:hover {
	color: var(--txt);
}
.auth-ff .hint {
	font-size: 0.7rem;
	color: var(--muted);
	margin-top: 0.3rem;
}
.auth-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.auth-check {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 1rem 0;
}
.auth-check input {
	margin-top: 2px;
	accent-color: var(--gold);
}
.auth-check label {
	font-size: 0.8rem;
	color: var(--muted-light);
	line-height: 1.4;
}
.auth-check label a {
	color: var(--gold);
	text-decoration: none;
}
.auth-check label a:hover {
	text-decoration: underline;
}
.auth-btn {
	width: 100%;
	padding: 0.9rem;
	background: var(--gold);
	color: var(--bg);
	border: none;
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}
.auth-btn:hover {
	background: var(--gold-light);
}
.auth-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.auth-footer-text {
	text-align: center;
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 1.5rem;
}
.auth-footer-text a {
	color: var(--gold-light);
	text-decoration: none;
	font-weight: 500;
}
.auth-footer-text a:hover {
	text-decoration: underline;
}
.auth-sep {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
	color: var(--muted);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.auth-sep::before,
.auth-sep::after {
	content: '';
	flex: 1;
	height: 0.5px;
	background: var(--border);
}

/* ─── ALERTS ─── */
.alert {
	padding: 0.9rem 1rem;
	border: 0.5px solid var(--border);
	font-size: 0.82rem;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}
.alert-red {
	background: rgba(224, 85, 85, 0.08);
	border-color: rgba(224, 85, 85, 0.3);
	color: #e8a0a0;
}
.alert-green {
	background: rgba(62, 207, 160, 0.08);
	border-color: rgba(62, 207, 160, 0.3);
	color: #a0e8cc;
}
.alert-blue {
	background: rgba(100, 160, 220, 0.08);
	border-color: rgba(100, 160, 220, 0.3);
	color: #a0c8e8;
}
.alert-yellow {
	background: rgba(220, 180, 80, 0.08);
	border-color: rgba(220, 180, 80, 0.3);
	color: #e8d8a0;
}
.alert-close {
	margin-left: auto;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	font-size: 0.8rem;
	opacity: 0.7;
}
.alert-close:hover {
	opacity: 1;
}

/* ─── LEGAL / CONTENT PAGES ─── */
.legal-page {
	padding-top: 7rem;
}
.legal-container {
	max-width: 780px;
	margin: 0 auto;
	padding: 4rem 1.5rem 6rem;
}
.legal-header {
	text-align: center;
	margin-bottom: 3rem;
}
.legal-header h1 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	margin-bottom: 0.6rem;
}
.legal-header p {
	color: var(--muted-light);
	font-size: 0.9rem;
}
.legal-divider {
	width: 40px;
	height: 0.5px;
	background: var(--gold);
	margin: 1.2rem auto 0;
}
.legal-body {
	background: var(--bg-card);
	border: 0.5px solid var(--border);
	padding: 3rem;
}
.legal-body section {
	padding: 0;
	border: none;
	margin-bottom: 2.5rem;
}
.legal-body section:last-child {
	margin-bottom: 0;
}
.legal-body h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--txt);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.legal-body h3 .icon-gold {
	color: var(--gold);
	font-size: 1rem;
}
.legal-body p,
.legal-body li {
	color: var(--muted-light);
	font-size: 0.9rem;
	line-height: 1.8;
	margin-bottom: 0.8rem;
}
.legal-body ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
.legal-body ul li::marker {
	color: var(--gold-dim);
}
.legal-body .highlight-box {
	background: var(--gold-pale);
	border: 0.5px solid var(--border);
	padding: 1.5rem;
	margin: 1.5rem 0;
}
.legal-body .highlight-box h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	color: var(--gold-light);
	margin-bottom: 0.5rem;
}

/* ─── ERROR PAGES ─── */
.error-page {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7rem 1.5rem;
	text-align: center;
}
.error-code {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(6rem, 12vw, 10rem);
	font-weight: 300;
	color: var(--gold-dim);
	line-height: 1;
	margin-bottom: 1rem;
}
.error-icon {
	width: 64px;
	height: 64px;
	border: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
}
.error-page h1 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin-bottom: 1rem;
}
.error-page p {
	color: var(--muted-light);
	font-size: 0.95rem;
	max-width: 480px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}
.error-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.error-links {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 0.5px solid var(--border);
}
.error-links p {
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 1rem;
}
.error-links .link-row {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.error-links a {
	font-size: 0.75rem;
	color: var(--muted-light);
	text-decoration: none;
	transition: color 0.2s;
}
.error-links a:hover {
	color: var(--gold-light);
}

/* ─── FAQ (index only) ─── */
.faq-wrap {
	max-width: 720px;
	margin: 0 auto;
}
.faq-item {
	border: 0.5px solid var(--border);
	margin-bottom: 0.8rem;
	overflow: hidden;
}
.faq-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.1rem 1.2rem;
	background: none;
	border: none;
	color: var(--txt);
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	cursor: pointer;
	text-align: left;
}
.faq-q:hover {
	background: var(--gold-pale);
}
.faq-q .faq-icon {
	width: 24px;
	height: 24px;
	border: 0.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 0.7rem;
	flex-shrink: 0;
	margin-left: 1rem;
}
.faq-a {
	padding: 0 1.2rem 1.2rem;
	color: var(--muted-light);
	font-size: 0.85rem;
	line-height: 1.7;
	display: none;
}
.faq-item.open .faq-a {
	display: block;
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fu {
	animation: fadeUp 0.85s ease forwards;
	opacity: 0;
}
.d1 {
	animation-delay: 0.1s;
}
.d2 {
	animation-delay: 0.22s;
}
.d3 {
	animation-delay: 0.36s;
}
.d4 {
	animation-delay: 0.5s;
}
.d5 {
	animation-delay: 0.64s;
}
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.shown {
	opacity: 1;
	transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
.mobile-toggle {
	display: none;
}
@media (max-width: 960px) {
	nav {
		padding: 0 1.5rem;
	}
	.nav-links {
		display: none;
	}
	.nav-auth {
		display: none;
	}
	.mobile-toggle {
		display: block;
	}
	section {
		padding: 5rem 1.5rem;
	}
	#hero {
		grid-template-columns: 1fr;
		padding: 11rem 1.5rem 4rem;
	}
	.hero-right {
		align-items: flex-start;
	}
	#about,
	#why .why-inner,
	#contact {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.svc-grid,
	.pkg-grid,
	.testi-grid {
		grid-template-columns: 1fr;
	}
	footer {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 2rem 1.5rem;
	}
	.ft-links {
		justify-content: center;
	}
	.ft-copy {
		text-align: center;
	}
	#trust {
		padding: 2rem 1.5rem;
	}
	#cta {
		padding: 5rem 1.5rem;
	}
	.cta-form {
		flex-direction: column;
	}
	.cta-form input {
		border-right: 0.5px solid var(--border);
	}
	.frow,
	.auth-row {
		grid-template-columns: 1fr;
	}
	.legal-body {
		padding: 1.5rem;
	}
}
