:root {
	--ng-navy: #123261;
	--ng-navy-dark: #0d2748;
	--ng-gold: #c89a3b;
	--ng-gold-dark: #a87a20;
	--ng-cream: #f4efe4;
	--ng-paper: #fffaf2;
	--ng-ink: #192434;
	--ng-muted: #667284;
	--ng-line: rgba(18, 50, 97, 0.12);
	--ng-shadow: 0 24px 60px rgba(13, 39, 72, 0.16);
}

body.ng-home-active {
	background:
		radial-gradient(circle at top left, rgba(200, 154, 59, 0.14), transparent 28%),
		radial-gradient(circle at top right, rgba(18, 50, 97, 0.12), transparent 26%),
		linear-gradient(180deg, #f7f2e8 0%, #ffffff 22%, #f4efe4 100%);
	color: var(--ng-ink);
	font-family: "Manrope", sans-serif;
}

.ng-home-active h1,
.ng-home-active h2,
.ng-home-active h3,
.ng-home-active h4 {
	font-family: "Bitter", Georgia, serif;
}

.ng-home-active .entry-hero,
.ng-home-active .page-hero-section,
.ng-home-active .entry-header {
	display: none !important;
}

.ng-home-active .content-area,
.ng-home-active .site-main,
.ng-home-active .entry-content-wrap,
.ng-home-active .entry-content.single-content {
	max-width: none;
}

.ng-home-active .site-main {
	padding-top: 0;
}

.ng-home-active .content-wrap,
.ng-home-active .entry {
	margin-top: 0;
}

.ng-home-active .content-container {
	max-width: 100%;
	padding-inline: 0;
}

.ng-home-active .entry-content-wrap {
	padding: 0 !important;
}

.ng-home-active .entry.content-bg,
.ng-home-active .content-bg.single-entry {
	background: transparent;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.ng-home-active .entry-content > *:not(.ng-homepage) {
	max-width: 1200px;
	margin-inline: auto;
}

.ng-home-active .site-header {
	background: rgba(255, 250, 242, 0.9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(18, 50, 97, 0.08);
}

.ng-home-active .site-header-wrap {
	box-shadow: none;
}

.ng-home-active .site-branding {
	padding-block: 0.2rem;
}

.ng-home-active .site-branding a.brand {
	display: flex;
	align-items: center;
}

.ng-home-active .custom-logo {
	max-height: 108px;
	width: auto;
}

.ng-home-active .site-branding a.brand img.custom-logo {
	max-width: 252px;
}

.ng-home-active .site-branding .site-title-wrap {
	display: none;
}

.ng-home-active .navigation .menu > li > a,
.ng-home-active .header-navigation .header-menu-container ul li a {
	color: var(--ng-navy-dark);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.ng-home-active .navigation .menu > li > a:hover,
.ng-home-active .header-navigation .header-menu-container ul li a:hover {
	color: var(--ng-gold-dark);
}

.ng-shell {
	width: min(1180px, calc(100vw - 2rem));
	margin-inline: auto;
}

.ng-homepage {
	padding-bottom: 4.5rem;
}

.ng-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1rem;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ng-gold);
}

.ng-kicker::before {
	content: "";
	width: 2.75rem;
	height: 1px;
	background: currentColor;
	opacity: 0.8;
}

.ng-hero {
	padding: clamp(1.2rem, 4vw, 2.5rem) 0 4rem;
	position: relative;
}

.ng-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(18, 50, 97, 0.18), transparent);
}

.ng-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 2.4rem;
	align-items: center;
}

.ng-hero__copy h1 {
	margin: 0;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--ng-navy-dark);
}

.ng-lead {
	margin: 1.2rem 0 0;
	max-width: 58ch;
	font-size: 1.1rem;
	line-height: 1.75;
	color: rgba(25, 36, 52, 0.84);
}

.ng-hero__actions,
.ng-inline-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.8rem;
}

.ng-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.2rem;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ng-btn:hover {
	transform: translateY(-1px);
}

.ng-btn:focus-visible,
.ng-support-card a:focus-visible,
.ng-clipping-card__content a:focus-visible {
	outline: 2px solid var(--ng-gold);
	outline-offset: 3px;
}

.ng-btn--gold {
	background: linear-gradient(135deg, var(--ng-gold), #ddb55e);
	color: #1d1710;
	box-shadow: 0 16px 30px rgba(200, 154, 59, 0.24);
}

.ng-btn--ghost {
	border-color: rgba(18, 50, 97, 0.22);
	background: rgba(255, 255, 255, 0.7);
	color: var(--ng-navy-dark);
}

.ng-btn--navy {
	background: var(--ng-navy);
	color: #fff;
	box-shadow: 0 16px 30px rgba(18, 50, 97, 0.18);
}

.ng-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.ng-fact {
	padding: 1rem 1rem 1.1rem;
	border: 1px solid var(--ng-line);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 10px 30px rgba(18, 50, 97, 0.06);
}

.ng-fact__label {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ng-gold-dark);
}

.ng-fact strong {
	display: block;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--ng-ink);
}

.ng-hero__visual {
	position: relative;
}

.ng-photo-frame {
	position: relative;
	padding: 0.9rem;
	border-radius: 2rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 228, 0.88));
	box-shadow: var(--ng-shadow);
}

.ng-photo-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 1px solid rgba(18, 50, 97, 0.08);
	pointer-events: none;
}

.ng-photo-frame img {
	display: block;
	width: 100%;
	height: min(70vh, 620px);
	object-fit: cover;
	object-position: center;
	border-radius: 1.45rem;
}

.ng-visual-note {
	position: absolute;
	left: -1rem;
	right: 1.3rem;
	bottom: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 1.1rem;
	background: rgba(11, 33, 63, 0.88);
	color: #fffaf2;
	box-shadow: 0 16px 32px rgba(8, 21, 42, 0.28);
}

.ng-visual-note__eyebrow {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f3ca72;
}

.ng-visual-note strong,
.ng-visual-note p {
	display: block;
	margin: 0;
}

.ng-visual-note strong {
	font-size: 1rem;
	line-height: 1.45;
}

.ng-visual-note p {
	margin-top: 0.55rem;
	font-size: 0.92rem;
	color: rgba(255, 250, 242, 0.82);
}

.ng-section {
	padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.ng-section--cream {
	background:
		radial-gradient(circle at right top, rgba(200, 154, 59, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(244, 239, 228, 0.96));
	border-top: 1px solid rgba(18, 50, 97, 0.06);
	border-bottom: 1px solid rgba(18, 50, 97, 0.06);
}

.ng-section--ink {
	background:
		radial-gradient(circle at top left, rgba(243, 202, 114, 0.18), transparent 24%),
		linear-gradient(180deg, #132e5a 0%, #0b2241 100%);
	color: #f7f1e4;
}

.ng-section--support {
	background:
		radial-gradient(circle at bottom right, rgba(200, 154, 59, 0.16), transparent 24%),
		linear-gradient(180deg, #102c56 0%, #0b2341 100%);
	color: #fff9f0;
	border-radius: 2.4rem;
	width: min(1220px, calc(100vw - 1rem));
	margin: 0 auto;
}

.ng-section__intro {
	max-width: 58rem;
	margin-bottom: 2rem;
}

.ng-section__intro h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.08;
	color: var(--ng-navy-dark);
}

.ng-section__intro p {
	margin: 1rem 0 0;
	font-size: 1.04rem;
	line-height: 1.8;
	color: rgba(25, 36, 52, 0.82);
}

.ng-section__intro--light h2,
.ng-section__intro--light p {
	color: #fff9f0;
}

.ng-card-grid,
.ng-track-grid,
.ng-support-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.2rem;
}

.ng-card,
.ng-track,
.ng-support-card {
	padding: 1.4rem;
	border-radius: 1.35rem;
	box-shadow: 0 14px 34px rgba(18, 50, 97, 0.08);
}

.ng-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(18, 50, 97, 0.08);
}

.ng-card h3,
.ng-track h3,
.ng-support-card h3 {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.25;
}

.ng-card p,
.ng-track p,
.ng-support-card p {
	margin: 0.8rem 0 0;
	line-height: 1.7;
	color: var(--ng-muted);
}

.ng-story {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
	gap: 2rem;
	align-items: start;
}

.ng-story__copy h2 {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.15rem);
	line-height: 1.08;
	color: #fff9f0;
}

.ng-story__copy p {
	margin: 1rem 0 0;
	font-size: 1.04rem;
	line-height: 1.8;
	color: rgba(255, 249, 240, 0.82);
}

.ng-story__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.6rem;
}

.ng-story__list > div {
	padding: 1rem 1rem 1.1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.ng-story__list h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #fff9f0;
}

.ng-story__list p {
	margin-top: 0.6rem;
	font-size: 0.96rem;
	line-height: 1.65;
}

.ng-clipping-card {
	overflow: hidden;
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: 0 18px 34px rgba(5, 14, 28, 0.26);
}

.ng-clipping-card img {
	display: block;
	width: 100%;
	height: auto;
	background: #fff;
}

.ng-clipping-card__content {
	padding: 1rem 1.15rem 1.25rem;
}

.ng-clipping-card__content span {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f3ca72;
}

.ng-clipping-card__content p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.6;
	color: rgba(255, 249, 240, 0.82);
}

.ng-clipping-card__content a,
.ng-support-card a {
	display: inline-flex;
	margin-top: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.ng-clipping-card__content a {
	color: #fff9f0;
}

.ng-track {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(18, 50, 97, 0.08);
}

.ng-support-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

.ng-support-card h3,
.ng-support-card p,
.ng-support-card a {
	color: #fff9f0;
}

.ng-support-card a:hover,
.ng-clipping-card__content a:hover {
	color: #f3ca72;
}

@media (max-width: 1100px) {
	.ng-hero__grid,
	.ng-story,
	.ng-card-grid,
	.ng-track-grid,
	.ng-support-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ng-hero__facts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.ng-home-active .custom-logo {
		max-height: 68px;
	}

	.ng-home-active .site-branding a.brand img.custom-logo {
		max-width: 198px;
	}

	.ng-shell {
		width: min(1180px, calc(100vw - 1.2rem));
	}

	.ng-hero {
		padding-top: 1.4rem;
	}

	.ng-hero__grid,
	.ng-story,
	.ng-story__list,
	.ng-card-grid,
	.ng-track-grid,
	.ng-support-grid {
		grid-template-columns: 1fr;
	}

	.ng-hero__copy h1 {
		font-size: clamp(2.1rem, 10vw, 3.6rem);
	}

	.ng-photo-frame img {
		height: auto;
		max-height: 72vh;
	}

	.ng-visual-note {
		position: relative;
		inset: auto;
		margin-top: 1rem;
	}

	.ng-section--support {
		border-radius: 1.5rem;
		width: min(1220px, calc(100vw - 0.6rem));
	}
}
