/* ===== Shared tokens (matches the supplied HTML's Tailwind config) ===== */
.nh-hero, .nh-portfolio, .nh-project-detail, .nh-services, .nh-about, .nh-contact {
	font-family: 'Inter', sans-serif;
	box-sizing: border-box;
}
.nh-hero *, .nh-portfolio *, .nh-project-detail *, .nh-services *, .nh-about *, .nh-contact *,
.nh-hero *::before, .nh-portfolio *::before { box-sizing: border-box; }

.nh-eyebrow {
	display: block;
	color: #10B7B5 !important;
	text-transform: uppercase;
	letter-spacing: 0.15em !important;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.nh-rule { width: 4rem; height: 4px; background: #A93226; margin: 1.5rem auto 0; }

.nh-section-head { text-align: center; margin-bottom: 3rem; }
.nh-section-head h2 {
	font-family: 'Anton', sans-serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase;
	font-size: 2.75rem;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: #0D0D0D !important;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
	.nh-section-head h2 { font-size: 3.5rem; }
}

.nh-section-head-light h2 { color: #FFFFFF !important; }
.nh-section-head p { font-style: italic; color: rgba(255,255,255,0.7); font-size: 1.125rem; margin: 0; }
.nh-portfolio .nh-section-head p { color: #4b5563; }

/* ===== HERO ===== */
.nh-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #0D0D0D;
	background-size: cover;
	background-position: center;
}
.nh-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(13,13,13,0.6), rgba(13,13,13,0.2), rgba(13,13,13,0.9));
}
.nh-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; }
.nh-hero-headline {
	font-family: 'Anton', sans-serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	color: #FFFFFF !important;
	font-size: 3.5rem;
	line-height: 0.95;
	text-transform: uppercase;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) { .nh-hero-headline { font-size: 5.5rem; } }
@media (min-width: 1024px) { .nh-hero-headline { font-size: 7rem; } }

.nh-hero-subtext {
	position: absolute; bottom: 2.5rem; left: 0; width: 100%;
	text-align: center; z-index: 1; padding: 0 1.5rem;
}
.nh-hero-subtext p {
	color: rgba(255,255,255,0.8) !important;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.25em !important;
	font-weight: 300;
	margin: 0;
}

/* ===== PORTFOLIO / FEATURED WORK ===== */
.nh-portfolio { background: #FFFFFF; color: #0D0D0D; padding: 6rem 1.5rem; }

.nh-filter-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

.nh-pill {
	padding: 0.5rem 1.25rem;
	border: 1px solid #d1d5db;
	background: transparent;
	color: #0D0D0D !important;
	font-size: 0.75rem;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nh-pill:not(.nh-pill-active):hover {
	border-color: #10B7B5;
	color: #10B7B5 !important;
	background: transparent;
}

.nh-pill-active, 
.nh-pill-active:hover {
	border-color: #10B7B5 !important;
	background: #10B7B5 !important;
	color: #FFFFFF !important;
}

.nh-portfolio-grid {
	max-width: 1200px; margin: 0 auto;
	display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .nh-portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nh-portfolio-grid { grid-template-columns: 1fr 1fr 1fr; } }

.nh-card {
	display: block; background: #fff; border: 1px solid #e5e7eb; text-decoration: none; color: inherit;
	overflow: hidden; transition: all 0.3s ease;
}
.nh-card:hover { transform: translateY(-4px); border-color: #10B7B5; }
.nh-card-img { height: 16rem; overflow: hidden; background: #f3f4f6; }
.nh-card-img img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(100%) contrast(1.1) brightness(0.8);
	transition: transform 0.5s ease, filter 0.5s ease;
}
.nh-card:hover .nh-card-img img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }
.nh-card-body { padding: 1.5rem; border-top: 1px solid #f3f4f6; }
.nh-card-eyebrow { 
	font-size: 0.75rem !important; 
	text-transform: uppercase; 
	letter-spacing: 0.1em !important; 
	color: #10B7B5 !important; 
	font-weight: 700 !important; 
	display: block; 
}
.nh-card-body h3 { font-size: 1.25rem; font-weight: 700; margin: 0.5rem 0 0.25rem; color: #0D0D0D !important; }
.nh-card-body p { color: #6b7280 !important; font-size: 0.875rem !important; margin: 0; }

/* ===== SINGLE PROJECT DETAIL ===== */
.nh-project-detail { 
	background: #0D0D0D; 
	color: #ffffff; 
	padding: 6rem 1.5rem; 
}

/* Full length image container */
.nh-project-hero {
	max-width: 1000px; /* Sized frame for full length presentation */
	margin: 0 auto 3rem; 
	background: #0B1F3A;
	border: 1px solid rgba(255,255,255,0.1); 
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Renders image in full length without cropping */
.nh-project-hero img { 
	width: 100%; 
	height: auto; 
	max-height: 650px; /* Prevents overflow on large vertical images */
	object-fit: contain; 
	display: block;
}

.nh-video-embed { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */ }
.nh-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.nh-audio-player { margin: 0 0 1.75rem; }
.nh-audio-player audio { width: 100%; max-width: 100%; accent-color: #10B7B5; }

.nh-project-grid { 
	max-width: 1200px; 
	margin: 0 auto; 
	display: grid; 
	grid-template-columns: 1fr; 
	gap: 3rem; 
}
@media (min-width: 1024px) { 
	.nh-project-grid { grid-template-columns: 2fr 1fr; } 
}

.nh-project-main .nh-eyebrow {
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.15em !important;
	color: #10B7B5 !important;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.nh-project-main h2 {
	font-family: 'Anton', sans-serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase;
	font-size: 3.25rem;
	line-height: 1;
	margin: 0 0 1.25rem;
	color: #FFFFFF !important;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
	.nh-project-main h2 { font-size: 4.25rem; }
}

.nh-project-tagline { 
	font-size: 1.2rem; 
	color: rgba(255,255,255,0.85) !important; 
	font-style: italic; 
	font-weight: 300;
	line-height: 1.4;
	margin-bottom: 2rem; 
}

.nh-project-desc { 
	color: rgba(255,255,255,0.7) !important; 
	font-size: 0.95rem;
	line-height: 1.7; 
	margin-bottom: 2.5rem; 
}
.nh-project-desc p { margin: 0 0 1em; }

.nh-role-heading { 
	color: #10B7B5 !important; 
	text-transform: uppercase; 
	letter-spacing: 0.12em !important; 
	font-size: 0.95rem; 
	font-weight: 700;
	margin-bottom: 1.25rem; 
}
.nh-role-list { 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 0.75rem; 
	color: rgba(255,255,255,0.85) !important; 
	font-size: 0.95rem;
}
.nh-role-list li { 
	display: flex; 
	align-items: center; 
	gap: 0.6rem; 
}
.nh-dot { 
	width: 6px; 
	height: 6px; 
	border-radius: 50%; 
	background: #A93226; 
	flex-shrink: 0; 
}

.nh-project-sidebar { 
	background: #0B1F3A; 
	padding: 2.5rem; 
	border-left: 4px solid #10B7B5; 
	height: fit-content; 
}
.nh-project-sidebar h3 { 
	font-family: 'Inter', sans-serif !important;
	text-transform: uppercase; 
	letter-spacing: 0.15em !important; 
	font-size: 0.85rem; 
	font-weight: 700;
	color: rgba(255,255,255,0.5) !important; 
	margin: 0 0 2rem; 
}
.nh-detail-row { 
	margin-bottom: 1.5rem; 
	font-size: 0.95rem; 
}
.nh-detail-row:last-child { margin-bottom: 0; }
.nh-detail-row span { 
	display: block; 
	color: rgba(255,255,255,0.45) !important; 
	font-size: 0.85rem;
	text-transform: capitalize;
	margin-bottom: 0.35rem; 
}
.nh-detail-row strong { 
	font-size: 1.05rem; 
	font-weight: 400; 
	line-height: 1.4;
	color: #FFFFFF !important; 
	display: block;
}

/* ===== SERVICES ===== */
.nh-services { background: #0B1F3A; padding: 6rem 1.5rem; position: relative; overflow: hidden; }
.nh-services-bg {
	position: absolute; top: 0; right: 0; width: 50%; height: 100%;
	opacity: 0.08; background-size: cover; background-position: center;
	pointer-events: none;
}
.nh-services > .nh-section-head, .nh-services > .nh-services-grid { position: relative; z-index: 1; }
.nh-services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .nh-services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nh-services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.nh-service-card { background: #0D0D0D; padding: 2rem; border-bottom: 2px solid transparent; transition: border-color 0.2s ease; }
.nh-service-card:hover { border-color: #10B7B5; }
.nh-service-num { 
	font-family: 'Anton', sans-serif !important; 
	font-weight: 400 !important;
	font-size: 2.25rem; 
	color: #A93226 !important; 
	display: block; 
	margin-bottom: 1rem; 
}
.nh-service-card h3 { font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em !important; margin: 0 0 0.5rem; color: #fff !important; }
.nh-service-card p { color: rgba(255,255,255,0.6) !important; font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ===== ABOUT NEAL HAN ===== */
.nh-about { background: #0D0D0D; padding: 6rem 1.5rem; }
.nh-about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .nh-about-grid { grid-template-columns: 1fr 1fr; } }
.nh-about-image { aspect-ratio: 4/5; background: #0B1F3A; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.nh-about-image img { width: 100%; height: 100%; object-fit: cover; }
.nh-about-content h2 {
	font-family: 'Anton', sans-serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase;
	font-size: 2.75rem;
	margin: 0.25rem 0 2rem;
	color: #fff !important;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
	.nh-about-content h2 { font-size: 3.5rem; }
}
.nh-about-content p { color: rgba(255,255,255,0.7) !important; line-height: 1.7; margin-bottom: 1.5rem; }
.nh-tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.nh-tag { padding: 0.25rem 0.75rem; background: #0B1F3A; border: 1px solid rgba(16,183,181,0.3); color: #10B7B5 !important; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em !important; }

/* ===== CONTACT / LET'S WORK TOGETHER ===== */
.nh-contact { background: #0B1F3A; padding: 6rem 1.5rem; }
.nh-contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .nh-contact-grid { grid-template-columns: 1fr 1fr; } }

.nh-contact-info { display: flex; flex-direction: column; justify-content: center; }
.nh-contact-info h3 {
	font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em !important;
	margin: 0 0 2rem; color: #fff !important;
}
.nh-contact-list { list-style: none; margin: 0; padding: 0; }
.nh-contact-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8) !important; }
.nh-contact-list li strong { display: block; color: #fff !important; margin-bottom: 0.15rem; }
.nh-contact-icon { color: #10B7B5 !important; flex-shrink: 0; margin-top: 0.2rem; }

.nh-contact-form-panel { background: #0D0D0D; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .nh-contact-form-panel { padding: 3rem; } }
.nh-contact-form-panel .nh-contact-form-wrap { background: transparent; padding: 0; border: none; }