.nahbs-holding-page {
	margin: 0;
	background: #ffffff;
	color: #111111;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}
.nahbs-holding-page * {
	box-sizing: border-box;
}
.nahbs-holding-page a {
	color: #111111;
}
.nahbs-holding-page a:hover {
	color: #000000;
}

/* Header */
.nh-header {
	background: #000000;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 24px;
}
.nh-header__logo {
	width: 44px;
	height: 41px;
	object-fit: contain;
	flex-shrink: 0;
}
.nh-header__title {
	font-family: 'League Gothic', Impact, sans-serif;
	font-size: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
}

/* Slider */
.nh-slider {
	position: relative;
	width: 100%;
	max-width: 1600px;
	aspect-ratio: 1600 / 1000;
	margin: 0 auto;
	background: #000000;
	overflow: hidden;
}
.nh-slider__track {
	position: absolute;
	inset: 0;
}
.nh-slide {
	position: absolute;
	inset: 0;
	background: #2b2b2b center center / cover no-repeat;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.nh-slide.is-active {
	opacity: 1;
}
.nh-slider__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
	padding: 20px;
	pointer-events: none;
}
.nh-slider__line1 {
	font-family: 'League Gothic', Impact, sans-serif;
	font-size: clamp(36px, 9vw, 120px);
	line-height: 0.95;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
}
.nh-slider__line2 {
	font-family: 'League Gothic', Impact, sans-serif;
	font-size: clamp(28px, 7vw, 90px);
	line-height: 1;
	letter-spacing: 2px;
	color: #ffffff;
}
.nh-slider__line3 {
	margin-top: clamp(6px, 1.5vw, 20px);
	font-weight: 700;
	font-size: clamp(12px, 1.6vw, 22px);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #ffffff;
}
.nh-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}
.nh-slider__arrow--prev { left: 16px; }
.nh-slider__arrow--next { right: 16px; }
.nh-slider__dots {
	position: absolute;
	left: 0;
	bottom: 14px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 4px;
}
.nh-dot {
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nh-dot::after {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 5px;
	border: 1.5px solid #ffffff;
	background: transparent;
	display: block;
}
.nh-dot.is-active::after {
	background: #ffffff;
}

/* Announcement */
.nh-announce {
	padding: 72px 24px 64px;
	display: flex;
	justify-content: center;
}
.nh-announce__inner {
	max-width: 720px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.nh-announce__rule {
	width: 72px;
	height: 5px;
	background: #a63010;
}
.nh-announce__updated {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #2c6b7d;
}
.nh-announce__heading {
	margin: 0;
	font-family: 'League Gothic', Impact, sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #000000;
}
.nh-announce__body {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #222222;
}

/* Sign-up */
.nh-signup {
	background: #f3f1ed;
	padding: 64px 24px 72px;
	display: flex;
	justify-content: center;
}
.nh-signup__inner {
	width: 100%;
	max-width: 720px;
}
.nh-signup__heading {
	margin: 0 0 24px;
	font-family: 'League Gothic', Impact, sans-serif;
	font-weight: 400;
	font-size: clamp(30px, 4vw, 44px);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	color: #000000;
}
.nh-tabs {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
}
.nh-tabs__nav {
	display: flex;
	border-bottom: 2px solid #e2ded8;
}
.nh-tab {
	flex: 1 1 0;
	height: 60px;
	margin-bottom: -2px;
	border: 0;
	border-bottom: 4px solid transparent;
	background: transparent;
	font-family: Montserrat, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #5f5a53;
	cursor: pointer;
}
.nh-tab.is-active {
	color: #000000;
	border-bottom-color: #2c6b7d;
}
.nh-panel {
	padding: 36px 32px 44px;
	flex-direction: column;
	gap: 20px;
}
.nh-panel[hidden] {
	display: none;
}
.nh-panel:not([hidden]) {
	display: flex;
}
.nh-form__intro {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #222222;
	font-weight: 700;
}
#nh-panel-exhibitor .nh-form__intro,
#nh-panel-press .nh-form__intro {
	margin-bottom: 15px;
}
#nh-panel-exhibitor .nh-turnstile {
	margin-top: 15px;
}
.nh-form__subline {
	margin: 6px 0 0;
	font-size: 15px;
	line-height: 1.5;
	color: #222222;
}
.nh-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}
.nh-field {
	flex-direction: column;
	gap: 6px;
}
.nh-field[hidden] {
	display: none;
}
.nh-field:not([hidden]) {
	display: flex;
}
.nh-field--wide {
	grid-column: 1 / -1;
}
.nh-field label {
	font-size: 14px;
	font-weight: 600;
	color: #222222;
}
.nh-field input,
.nh-field select,
.nh-field textarea {
	height: 46px;
	box-sizing: border-box;
	border: 1px solid #8a857e;
	border-radius: 4px;
	padding: 0 14px;
	font-family: Montserrat, Helvetica, sans-serif;
	font-size: 16px;
	background: #ffffff;
	color: #111111;
	width: 100%;
}
.nh-field textarea {
	height: auto;
	padding: 10px 14px;
	resize: vertical;
}
.nh-field input:focus,
.nh-field select:focus,
.nh-field textarea:focus {
	outline: 3px solid #000000;
	outline-offset: 1px;
}
.nh-checkbox {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.nh-checkbox input {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: #a63010;
}
.nh-checkbox label {
	font-size: 15px;
	line-height: 1.55;
	color: #222222;
}
.nh-checkbox-group {
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#nh-panel-press .nh-checkbox-group label {
	font-weight: 700;
}
.nh-form__note {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #5f5a53;
}
.nh-form__required {
	margin: 0;
	font-size: 13px;
	color: #5f5a53;
}
.nh-form__msg {
	font-size: 14px;
	min-height: 20px;
}
.nh-form__msg.is-success { color: #1a6b3c; }
.nh-form__msg.is-error { color: #a63010; }
.nh-btn {
	align-self: flex-start;
	height: 52px;
	padding: 0 36px;
	border: 0;
	border-radius: 4px;
	background: #a63010;
	color: #ffffff;
	font-family: Montserrat, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}
.nh-btn:disabled {
	background: #9c968d;
	cursor: not-allowed;
}
.nh-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

/* Footer */
.nh-footer {
	background: #000000;
	padding: 28px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
}
.nh-footer__logo {
	width: 32px;
	height: 30px;
	object-fit: contain;
}
.nh-footer__copy {
	font-size: 14px;
	color: #ffffff;
}
.nh-footer .nh-footer__link,
.nh-footer .nh-footer__link:visited,
.nh-footer .nh-footer__link:hover,
.nh-footer .nh-footer__link:focus,
.nh-footer .nh-footer__link:active {
	font-size: 14px;
	color: #ffffff;
}

@media (min-width: 640px) {
	.nh-header { padding: 18px 48px; }
	.nh-header__logo { width: 56px; height: 53px; }
	.nh-header__title { font-size: 30px; }
	.nh-footer { padding: 32px 48px; }
}

@media (max-width: 639px) {
	.nh-grid { grid-template-columns: 1fr; }
	.nh-field--wide { grid-column: auto; }
	.nh-panel { padding: 28px 20px 36px; }
}
