/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--navy: #0b1829;
	--navy-light: #132240;
	--gold: #c69a4b;
	--gold-light: #dab76e;
	--cream: #f4efe6;
	--cream-dark: #e8dfd0;
	--white: #ffffff;
	--text-dark: #1a1a2e;
	--text-muted: #5a6070;
	--text-light: rgba(255,255,255,0.7);
	--serif: 'Cormorant Garamond', Georgia, serif;
	--sans: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: var(--sans);
	color: var(--text-dark);
	background: var(--cream);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* ============ UTILITIES ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.section-label {
	font-family: var(--sans);
	font-weight: 500;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 1rem;
}
.section-label::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gold);
}

/* ============ MAZE PATTERN SVG ============ */
.maze-pattern {
	position: absolute;
	opacity: 0.04;
	pointer-events: none;
}

/* ============ NAVIGATION ============ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.5rem 0;
	transition: all 0.4s ease;
}
.nav.scrolled {
	background: rgba(11, 24, 41, 0.95);
	backdrop-filter: blur(20px);
	padding: 1rem 0;
	box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s;
	text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
	padding: 0.65rem 1.8rem !important;
	border: 1px solid var(--gold) !important;
	color: var(--gold) !important;
	transition: all 0.3s !important;
	font-weight: 500 !important;
}
.nav-cta:hover {
	background: var(--gold) !important;
	color: var(--navy) !important;
}
.nav-toggle { display: none; cursor: pointer; }
.nav-toggle span {
	display: block;
	width: 28px;
	height: 2px;
	background: var(--white);
	margin: 6px 0;
	transition: 0.3s;
}

/* Mobile nav open state */
.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

/* ============ HERO ============ */
.hero {
	position: relative;
	min-height: 100vh;
	background: var(--navy);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80vw;
	height: 80vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198,154,75,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 8rem 0 6rem;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
	font-family: var(--sans);
	font-weight: 400;
	font-size: 0.8rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.hero-label::before {
	content: '';
	width: 50px;
	height: 1px;
	background: var(--gold);
}
.hero h1 {
	font-family: var(--serif);
	font-size: clamp(3rem, 5.5vw, 5rem);
	font-weight: 300;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 2rem;
}
.hero h1 em {
	font-style: italic;
	color: var(--gold);
	font-weight: 400;
}
.hero-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-light);
	max-width: 480px;
	margin-bottom: 3rem;
	font-weight: 300;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease;
}
.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(198,154,75,0.3);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: 1px solid rgba(255,255,255,0.2);
	color: var(--white);
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: all 0.3s;
}
.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold);
}
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-maze-svg {
	width: 100%;
	max-width: 500px;
	opacity: 0.12;
	animation: rotateSlow 120s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-stats {
	position: absolute;
	bottom: -2rem;
	left: 0;
	display: flex;
	gap: 3rem;
}
.hero-stat { text-align: left; }
.hero-stat .number {
	font-family: var(--serif);
	font-size: 2.5rem;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
}
.hero-stat .label {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-top: 0.5rem;
}

/* ============ SERVICES ============ */
.services {
	position: relative;
	padding: 8rem 0;
	background: var(--cream);
}
.services-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 5rem;
	align-items: end;
}
.services-title {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
}
.services-title em {
	font-style: italic;
	color: var(--gold);
}
.services-intro {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text-muted);
	max-width: 500px;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.service-card {
	position: relative;
	background: var(--white);
	padding: 2.5rem 2rem;
	border: 1px solid rgba(0,0,0,0.06);
	transition: all 0.5s ease;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
}
.service-card h3 {
	font-family: var(--serif);
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: var(--text-dark);
}
.service-card p {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-muted);
	font-weight: 300;
}
.service-card .service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	text-decoration: none;
	transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 0.8rem; }

/* ============ ABOUT / APPROACH ============ */
.approach {
	position: relative;
	padding: 8rem 0;
	background: var(--navy);
	overflow: hidden;
}
.approach::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		linear-gradient(90deg, rgba(198,154,75,0.03) 1px, transparent 1px),
		linear-gradient(0deg, rgba(198,154,75,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}
.approach-grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 6rem;
	align-items: center;
	position: relative;
	z-index: 2;
}
.approach-left .section-label { margin-bottom: 2rem; }
.approach-title {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 2rem;
}
.approach-title em { font-style: italic; color: var(--gold); }
.approach-text {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--text-light);
	font-weight: 300;
	margin-bottom: 2rem;
}
.approach-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.approach-step {
	position: relative;
	padding: 2rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	transition: all 0.4s;
}
.approach-step:hover {
	background: rgba(198,154,75,0.05);
	border-color: rgba(198,154,75,0.2);
}
.approach-step .step-num {
	font-family: var(--serif);
	font-size: 2rem;
	color: var(--gold);
	opacity: 0.6;
	line-height: 1;
	margin-bottom: 1rem;
}
.approach-step h4 {
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 0.5rem;
}
.approach-step p {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.6;
	font-weight: 300;
}

/* ============ CASE STUDIES ============ */
.cases {
	padding: 8rem 0;
	background: var(--cream);
	position: relative;
}
.cases-header {
	text-align: center;
	margin-bottom: 5rem;
}
.cases-header .section-label { justify-content: center; margin-bottom: 1.5rem; }
.cases-header .section-label::before { display: none; }
.cases-title {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
}
.cases-title em { font-style: italic; color: var(--gold); }
.cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.case-card {
	position: relative;
	background: var(--navy);
	padding: 3rem 2.5rem;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	transition: all 0.5s ease;
}
.case-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(11,24,41,0.95) 100%);
	z-index: 1;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.case-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	transition: all 0.5s;
}
.case-card:hover .case-card-bg { opacity: 0.4; transform: scale(1.05); }
.case-content { position: relative; z-index: 2; }
.case-tag {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}
.case-card h3 {
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 1rem;
}
.case-card p {
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--text-light);
	font-weight: 300;
}

/* ============ EXPERTISE BANNER ============ */
.expertise {
	padding: 6rem 0;
	background: var(--white);
	border-top: 1px solid rgba(0,0,0,0.05);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.expertise-inner {
	display: flex;
	justify-content: center;
	gap: 5rem;
	flex-wrap: wrap;
}
.expertise-item {
	text-align: center;
}
.expertise-item .exp-number {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
}
.expertise-item .exp-label {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-top: 0.75rem;
	font-weight: 400;
}

/* ============ CTA SECTION ============ */
.cta-section {
	position: relative;
	padding: 10rem 0;
	background: var(--navy);
	text-align: center;
	overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198,154,75,0.06) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content .section-label { justify-content: center; margin-bottom: 2rem; }
.cta-content .section-label::before { display: none; }
.cta-title {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 1.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-light);
	max-width: 550px;
	margin: 0 auto 3rem;
	font-weight: 300;
}
.cta-contact {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}
.cta-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-light);
	font-size: 0.9rem;
}
.cta-contact-item svg { color: var(--gold); flex-shrink: 0; }
.cta-contact-item a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.cta-contact-item a:hover { color: var(--gold); }

/* ============ FOOTER ============ */
.footer {
	padding: 4rem 0 2rem;
	background: #060f1c;
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo {
	font-family: var(--serif);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p {
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--text-light);
	font-weight: 300;
	max-width: 320px;
}
.footer-col h4 {
	font-family: var(--sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.5rem;
}
.footer-col a {
	display: block;
	font-size: 0.88rem;
	color: var(--text-light);
	text-decoration: none;
	margin-bottom: 0.75rem;
	font-weight: 300;
	transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}
.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.1);
	color: var(--text-light);
	transition: all 0.3s;
	margin: 0;
}
.footer-social a:hover {
	border-color: var(--gold);
	color: var(--gold);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.3);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; text-align: center; }
	.hero-visual { display: none; }
	.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
	.hero-text { margin-left: auto; margin-right: auto; }
	.hero-actions { justify-content: center; }
	.hero-label { justify-content: center; }
	.hero-label::before { display: none; }
	.services-header { grid-template-columns: 1fr; gap: 1.5rem; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.approach-grid { grid-template-columns: 1fr; gap: 3rem; }
	.cases-grid { grid-template-columns: 1fr 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(11, 24, 41, 0.98);
		backdrop-filter: blur(20px);
		padding: 2rem;
		gap: 1.5rem;
		border-top: 1px solid rgba(198, 154, 75, 0.15);
	}
	.nav-links.open {
		display: flex;
	}
	.nav-toggle { display: block; }
	.services-grid { grid-template-columns: 1fr; }
	.cases-grid { grid-template-columns: 1fr; }
	.approach-steps { grid-template-columns: 1fr; }
	.hero-stats { position: static; margin-top: 3rem; justify-content: center; }
	.expertise-inner { gap: 3rem; }
	.footer-top { grid-template-columns: 1fr; }
	.hero-actions { flex-direction: column; }
	.cta-contact { flex-direction: column; align-items: center; }
}
