/* ==========================================================================
   NovaAcura Biotech — Premium Header & Footer
   Palette: warm off-white / deep navy / champagne gold
   Fonts:   Playfair Display (headings) + Jost (body)
   ========================================================================== */

:root {
	--nb-navy:        #0d1f3c;
	--nb-navy-light:  #1c3567;
	--nb-navy-soft:    rgba(13, 31, 60, 0.06);
	--nb-gold:        #b8873c;
	--nb-gold-light:  #d9b273;
	--nb-offwhite:    #faf7f1;
	--nb-white:       #ffffff;
	--nb-text:        #23283a;
	--nb-text-muted:  #6b7280;
	--nb-border:      rgba(13, 31, 60, 0.10);
	--nb-shadow:      0 10px 30px rgba(13, 31, 60, 0.08);
	--nb-shadow-lg:   0 20px 45px rgba(13, 31, 60, 0.14);
	--nb-radius:      25px;
	--nb-ease:        cubic-bezier(0.16, 1, 0.3, 1);
	--nb-header-h:    104px;
	--nb-header-h-sm: 80px;
}

/* ---------- Base ---------- */
body {
	font-family: 'Jost', 'Segoe UI', sans-serif;
	color: var(--nb-text);
	background: var(--nb-offwhite);
}

h1, h2, h3, h4,
.brand-text {
	font-family: 'Playfair Display', Georgia, serif;
}

a {
	text-decoration: none;
	color: inherit;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(250, 247, 241, 0.92);
	backdrop-filter: saturate(160%) blur(10px);
	-webkit-backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.4s var(--nb-ease), border-color 0.4s var(--nb-ease), background 0.4s var(--nb-ease);
}

.site-header.is-scrolled {
	box-shadow: var(--nb-shadow);
	border-bottom-color: var(--nb-border);
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	height: var(--nb-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: height 0.35s var(--nb-ease);
}

.site-header.is-scrolled .header-inner {
	height: var(--nb-header-h-sm);
}

/* gold hairline that grows in on load, echoes brand mark */
.header-scroll-line {
	display: block;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, transparent, var(--nb-gold-light), var(--nb-gold), var(--nb-gold-light), transparent);
	background-size: 200% 100%;
	transform: scaleX(0);
	transform-origin: center;
	animation: nb-line-grow 0.9s 0.15s var(--nb-ease) forwards, nb-line-shimmer 6s linear infinite;
}

@keyframes nb-line-grow {
	to { transform: scaleX(1); }
}
@keyframes nb-line-shimmer {
	to { background-position: -200% 0; }
}

/* ---------- Branding ---------- */
.site-branding,
.brand-link {
	display: flex;
	align-items: center;
}

.brand-link img,
.custom-logo {
	height: 76px;
	width: auto;
	transition: height 0.35s var(--nb-ease), transform 0.3s var(--nb-ease);
}

.site-header.is-scrolled .brand-link img,
.site-header.is-scrolled .custom-logo {
	height: 58px;
}

.brand-link:hover img {
	transform: scale(1.03);
}

.brand-text {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--nb-navy);
}

.brand-text::after {
	content: '';
}

/* ---------- Primary nav ---------- */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* "#site-navigation .nav-links" (not just ".nav-links") is required here —
   the theme's own style.css ships a ".main-navigation ul { display: none; }"
   rule (for its stock nav-toggle pattern) that is MORE specific than a bare
   ".nav-links" class, so a plain ".nav-links { display: flex }" silently
   loses that fight and the whole nav list stays invisible at every width. */
#site-navigation.main-navigation .nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links > li > a {
	position: relative;
	display: inline-block;
	padding: 8px 2px;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--nb-navy);
	transition: color 0.3s var(--nb-ease);
}

.nav-links > li > a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--nb-gold);
	transition: width 0.35s var(--nb-ease), left 0.35s var(--nb-ease);
}

.nav-links > li > a:hover,
.nav-links > li.current-menu-item > a,
.nav-links > li.current_page_item > a {
	color: var(--nb-gold);
}

.nav-links > li > a:hover::after,
.nav-links > li.current-menu-item > a::after,
.nav-links > li.current_page_item > a::after {
	width: 100%;
	left: 0;
}

/* dropdown (if a WP menu has sub-items) */
.nav-links ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	overflow: hidden;
	box-shadow: var(--nb-shadow-lg);
	list-style: none;
	margin: 12px 0 0;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.3s var(--nb-ease), transform 0.3s var(--nb-ease), visibility 0.3s;
}

.nav-links li.menu-item-has-children {
	position: relative;
}

.nav-links li.menu-item-has-children:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-links ul.sub-menu a {
	display: block;
	padding: 10px 22px;
	font-size: 0.9rem;
	color: var(--nb-navy);
	transition: background 0.25s var(--nb-ease), color 0.25s var(--nb-ease), padding-left 0.25s var(--nb-ease);
}

.nav-links ul.sub-menu a:hover {
	background: var(--nb-navy-soft);
	color: var(--nb-gold);
	padding-left: 28px;
}

/* ---------- CTA + hamburger ---------- */
.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.btn-quote {
	position: relative;
	overflow: hidden;
	padding: 12px 26px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--nb-white);
	background: var(--nb-navy);
	border: 1px solid var(--nb-navy);
	border-radius: var(--nb-radius);
	transition: color 0.35s var(--nb-ease), border-color 0.35s var(--nb-ease);
	z-index: 0;
}

.btn-quote::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, var(--nb-gold), var(--nb-gold-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--nb-ease);
	z-index: -1;
}

.btn-quote:hover {
	color: var(--nb-navy);
	border-color: var(--nb-gold);
}

.btn-quote:hover::before {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle-box {
	position: relative;
	display: block;
	width: 26px;
	height: 18px;
}

.menu-toggle-box::before,
.menu-toggle-box::after,
.menu-toggle-inner {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--nb-navy);
	border-radius: 2px;
	transition: transform 0.35s var(--nb-ease), opacity 0.25s var(--nb-ease), top 0.35s var(--nb-ease);
}

.menu-toggle-box::before { top: 0; }
.menu-toggle-inner       { top: 8px; }
.menu-toggle-box::after  { top: 16px; }

body.nav-open .menu-toggle-box::before {
	top: 8px;
	transform: rotate(45deg);
}
body.nav-open .menu-toggle-inner {
	opacity: 0;
}
body.nav-open .menu-toggle-box::after {
	top: 8px;
	transform: rotate(-45deg);
}

/* ---------- Header load-in animation ---------- */
.reveal-item {
	opacity: 0;
	transform: translateY(-14px);
	animation: nb-drop-in 0.6s var(--nb-ease) forwards;
}
.site-branding.reveal-item   { animation-delay: 0.05s; }
.main-navigation.reveal-item { animation-delay: 0.15s; }
.header-actions.reveal-item  { animation-delay: 0.25s; }

@keyframes nb-drop-in {
	to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */

@media (max-width: 900px) {
	.header-inner {
		padding: 0 20px;
		/* keep header height constant on mobile so the fullscreen nav
		   overlay (anchored to --nb-header-h-sm below) always lines up,
		   regardless of the is-scrolled shrink state */
		height: var(--nb-header-h-sm);
	}

	.menu-toggle { display: inline-flex; }

	/* #site-navigation (the <nav>'s own id), not just .main-navigation —
	   the theme's style.css carries a whole family of unscoped
	   ".main-navigation ..." rules (display/position/etc. for its own
	   stock nav pattern) that keep fighting a plain class selector at
	   equal-or-higher specificity. The id guarantees we always win. */
	#site-navigation.main-navigation {
		position: fixed;
		inset: 0;
		top: var(--nb-header-h-sm);
		display: flex;
		justify-content: flex-start;
		background: var(--nb-navy);
		clip-path: circle(0px at calc(100% - 34px) 34px);
		transition: clip-path 0.55s var(--nb-ease);
		pointer-events: none;
	}

	body.nav-open #site-navigation.main-navigation {
		clip-path: circle(150% at calc(100% - 34px) 34px);
		pointer-events: auto;
	}

	#site-navigation.main-navigation .nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		width: 100%;
		padding: 40px 32px;
	}

	.nav-links > li {
		width: 100%;
		opacity: 0;
		transform: translateX(24px);
		transition: opacity 0.4s var(--nb-ease), transform 0.4s var(--nb-ease);
	}

	body.nav-open .nav-links > li {
		opacity: 1;
		transform: translateX(0);
	}

	.nav-links > li:nth-child(1) { transition-delay: 0.08s; }
	.nav-links > li:nth-child(2) { transition-delay: 0.14s; }
	.nav-links > li:nth-child(3) { transition-delay: 0.20s; }
	.nav-links > li:nth-child(4) { transition-delay: 0.26s; }
	.nav-links > li:nth-child(5) { transition-delay: 0.32s; }
	.nav-links > li:nth-child(6) { transition-delay: 0.38s; }
	.nav-links > li:nth-child(7) { transition-delay: 0.44s; }

	.nav-links > li > a {
		display: block;
		padding: 14px 0;
		font-size: 1.15rem;
		color: var(--nb-offwhite);
		border-bottom: 1px solid rgba(250, 247, 241, 0.12);
	}

	.nav-links > li > a::after { display: none; }
	.nav-links > li > a:hover,
	.nav-links > li.current-menu-item > a { color: var(--nb-gold-light); }

	.nav-links ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: transparent;
		margin: 0 0 8px;
		padding-left: 16px;
	}
	.nav-links ul.sub-menu a { color: rgba(250, 247, 241, 0.75); }

	.header-actions { gap: 12px; }
	.btn-quote { padding: 10px 18px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
	.btn-quote { display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
	position: relative;
	background: var(--nb-navy);
	color: rgba(250, 247, 241, 0.78);
	padding: 80px 32px 0;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(184, 135, 60, 0.18), transparent 70%);
	pointer-events: none;
}

.footer-top {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 56px;
}

.footer-heading {
	position: relative;
	margin: 0 0 22px;
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--nb-white);
	padding-bottom: 12px;
}

.footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	background: var(--nb-gold);
}

.footer-brand .brand-text { color: var(--nb-white); font-size: 1.4rem; }
.footer-brand .brand-link img,
.footer-brand .custom-logo { height: 48px; margin-bottom: 18px; }

.footer-tagline {
	font-size: 0.92rem;
	line-height: 1.7;
	max-width: 320px;
	margin: 0 0 22px;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(250, 247, 241, 0.22);
	border-radius: 50%;
	color: rgba(250, 247, 241, 0.85);
	transition: background 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease), transform 0.3s var(--nb-ease), color 0.3s var(--nb-ease);
}
.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
	background: var(--nb-gold);
	border-color: var(--nb-gold);
	color: var(--nb-navy);
	transform: translateY(-3px);
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	position: relative;
	font-size: 0.92rem;
	transition: color 0.3s var(--nb-ease), padding-left 0.3s var(--nb-ease);
}

.footer-links a::before {
	content: '›';
	position: absolute;
	left: -16px;
	opacity: 0;
	color: var(--nb-gold);
	transition: opacity 0.3s var(--nb-ease), left 0.3s var(--nb-ease);
}

.footer-links a:hover {
	color: var(--nb-gold-light);
	padding-left: 14px;
}

.footer-links a:hover::before {
	left: 0;
	opacity: 1;
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 0.92rem;
	line-height: 1.6;
}

.contact-list svg {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--nb-gold);
}

.contact-list a:hover {
	color: var(--nb-gold-light);
}

.footer-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(184, 135, 60, 0.5), transparent);
}

.footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.82rem;
	color: rgba(250, 247, 241, 0.55);
}

.footer-motto {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	color: var(--nb-gold-light);
}

@media (max-width: 980px) {
	.footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 600px) {
	.site-footer { padding: 60px 20px 0; }
	.footer-top { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Back to top ---------- */
.back-to-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nb-navy);
	color: var(--nb-white);
	border: 1px solid var(--nb-gold);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.35s var(--nb-ease), transform 0.35s var(--nb-ease), background 0.3s var(--nb-ease);
	z-index: 998;
}

.back-to-top svg { width: 18px; height: 18px; }

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--nb-gold);
	color: var(--nb-navy);
}

/* ---------- Motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* ==========================================================================
   NovaAcura Biotech — Front Page
   Depends on custom.css for --nb-* tokens (navy / gold / off-white, fonts).
   ========================================================================== */

.front-page main,
.front-page .site-main,
.who-we-are-page {
	overflow-x: hidden;
}

.front-page section,
.who-we-are-page section {
	position: relative;
}

/* ---------- shared section chrome ---------- */
.section-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 110px 32px;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nb-gold);
	margin-bottom: 16px;
}

.section-eyebrow::before {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--nb-gold);
}

.section-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: var(--nb-navy);
	line-height: 1.25;
	max-width: 620px;
	margin: 0 0 18px;
}

.section-lede {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--nb-text-muted);
	max-width: 620px;
}

.section-head {
	margin-bottom: 56px;
}

.section-head.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.section-head.center .section-title,
.section-head.center .section-lede {
	margin-left: auto;
	margin-right: auto;
}
.section-head.center .section-eyebrow {
	justify-content: center;
}
.section-head.center .section-eyebrow::before,
.section-head.center .section-eyebrow::after {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--nb-gold);
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s var(--nb-ease), transform 0.8s var(--nb-ease);
}
.reveal.in-view {
	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; }

/* ---------- image placeholder component ---------- */
.img-placeholder {
	--ratio: 4 / 3;
	position: relative;
	width: 100%;
	aspect-ratio: var(--ratio);
	border-radius: var(--nb-radius);
	overflow: hidden;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(13, 31, 60, 0.06),
			rgba(13, 31, 60, 0.06) 12px,
			rgba(13, 31, 60, 0.03) 12px,
			rgba(13, 31, 60, 0.03) 24px
		),
		var(--nb-white);
	border: 1px dashed rgba(13, 31, 60, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.img-placeholder .ph-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
	color: var(--nb-navy);
}

.img-placeholder .ph-label svg {
	width: 34px;
	height: 34px;
	opacity: 0.55;
}

.img-placeholder .ph-label span {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	max-width: 220px;
	opacity: 0.7;
}

.img-placeholder.on-dark {
	background:
		repeating-linear-gradient(
			135deg,
			rgba(250, 247, 241, 0.06),
			rgba(250, 247, 241, 0.06) 12px,
			rgba(250, 247, 241, 0.02) 12px,
			rgba(250, 247, 241, 0.02) 24px
		),
		var(--nb-navy-light);
	border-color: rgba(250, 247, 241, 0.3);
}
.img-placeholder.on-dark .ph-label { color: var(--nb-offwhite); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
	position: relative;
	min-height: 92vh;
	min-height: 92svh;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, var(--nb-navy) 0%, var(--nb-navy-light) 100%);
	overflow: hidden;
}

/* ---------- Slider layer (stacked, crossfading backgrounds) ---------- */
.hero-slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease, visibility 1s;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-media .img-placeholder {
	--ratio: auto;
	height: 100%;
	border-radius: 0;
	border: none;
}

.hero-media-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(13, 31, 60, 0.55) 0%, rgba(13, 31, 60, 0.86) 78%, var(--nb-navy) 100%);
	z-index: 1;
}

/* floating molecule / DNA ornament, echoes the logo mark */
.hero-ornament {
	position: absolute;
	top: 12%;
	right: 6%;
	width: 260px;
	height: 260px;
	opacity: 0.18;
	z-index: 1;
	animation: nb-float 7s ease-in-out infinite;
	pointer-events: none;
}
.hero-ornament svg { width: 100%; height: 100%; stroke: var(--nb-gold-light); }

@keyframes nb-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-22px) rotate(6deg); }
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 32px 80px;
	width: 100%;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--nb-gold-light);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 26px;
	opacity: 0;
	animation: nb-fade-up 0.7s 0.1s var(--nb-ease) forwards;
}
.hero-eyebrow::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--nb-gold-light);
}

.hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--nb-white);
	max-width: 900px;
	margin: 0 0 22px;
	overflow: hidden;
}

.hero-title .line {
	display: block;
	opacity: 0;
	transform: translateX(-60px);
	animation: nb-slide-in 0.6s var(--nb-ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.3s; color: var(--nb-gold-light); }

@keyframes nb-slide-in {
	to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(250, 247, 241, 0.78);
	max-width: 560px;
	margin: 0 0 40px;
	opacity: 0;
	animation: nb-fade-up 0.7s 0.5s var(--nb-ease) forwards;
}

.hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-bottom: 70px;
	opacity: 0;
	animation: nb-fade-up 0.7s 0.65s var(--nb-ease) forwards;
}

.btn-primary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: var(--nb-radius);
	transition: transform 0.3s var(--nb-ease), background 0.3s var(--nb-ease), color 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease);
}

.btn-primary {
	background: var(--nb-gold);
	color: var(--nb-navy);
	border: 1px solid var(--nb-gold);
}
.btn-primary:hover {
	background: var(--nb-gold-light);
	transform: translateY(-3px);
}

.btn-ghost {
	background: transparent;
	color: var(--nb-white);
	border: 1px solid rgba(250, 247, 241, 0.4);
}
.btn-ghost:hover {
	border-color: var(--nb-gold-light);
	color: var(--nb-gold-light);
	transform: translateY(-3px);
}

@keyframes nb-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}

.hero-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	border-top: 1px solid rgba(250, 247, 241, 0.15);
	padding-top: 34px;
	opacity: 0;
	animation: nb-fade-up 0.7s 0.8s var(--nb-ease) forwards;
}

.hero-strip-item strong {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	color: var(--nb-gold-light);
}
.hero-strip-item span {
	font-size: 0.78rem;
	color: rgba(250, 247, 241, 0.65);
	letter-spacing: 0.02em;
}

/* ---------- Slider text panels + controls ----------
   In-flow (not position:absolute) deliberately — an earlier version pinned
   this to the bottom of .hero as a floating overlay, independent of the
   actual hero-content height. On shorter viewports the vertically-centered
   content grew tall enough that the stats strip collided with it. Living
   in the normal flow, right after .hero-strip, makes that class of overlap
   structurally impossible instead of chasing bottom-offset numbers. */
.hero-slide-panel[hidden] {
	display: none;
}

.hero-slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 36px;
}

.hero-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
	border: 1px solid rgba(250, 247, 241, 0.35);
	background: rgba(250, 247, 241, 0.06);
	color: var(--nb-white);
	cursor: pointer;
	transition: background 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease), transform 0.3s var(--nb-ease);
}
.hero-arrow svg { width: 18px; height: 18px; }

.hero-arrow:hover {
	background: var(--nb-gold);
	border-color: var(--nb-gold);
	color: var(--nb-navy);
	transform: scale(1.06);
}

.hero-dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(250, 247, 241, 0.35);
	cursor: pointer;
	transition: background 0.3s var(--nb-ease), width 0.3s var(--nb-ease), border-radius 0.3s var(--nb-ease);
}

.hero-dot.is-active {
	width: 26px;
	border-radius: 5px;
	background: var(--nb-gold);
}

@media (max-width: 780px) {
	.hero-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
	.hero-content { padding: 100px 20px 70px; }
	.hero-ornament { width: 150px; height: 150px; top: 8%; right: -20px; opacity: 0.12; }
	.hero-slider-controls { margin-top: 28px; gap: 16px; }
	.hero-arrow { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
	.hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
	.hero-cta-row { gap: 14px; }
	.btn-primary, .btn-ghost { flex: 1 1 auto; justify-content: center; padding: 14px 20px; }
	.hero-ornament { display: none; }
}

/* ==========================================================================
   ABOUT SPLIT
   ========================================================================== */

.about-split {
	background: var(--nb-white);
}

.about-split .section-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: center;
	padding-top: 110px;
	padding-bottom: 110px;
}

.about-media {
	position: relative;
}

.about-media .img-placeholder { --ratio: 4 / 5; }

.about-media-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--nb-radius);
}

.about-media-badge {
	position: absolute;
	bottom: -24px;
	right: -24px;
	background: var(--nb-navy);
	color: var(--nb-white);
	padding: 22px 26px;
	border: 1px solid var(--nb-gold);
	border-radius: var(--nb-radius);
	text-align: center;
	min-width: 140px;
}
.about-media-badge strong {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--nb-gold-light);
}
.about-media-badge span {
	font-size: 0.72rem;
	letter-spacing: 0.03em;
	color: rgba(250, 247, 241, 0.75);
}

.about-copy p {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--nb-text-muted);
	margin: 0 0 18px;
}

.about-list {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 480px) {
	.about-list { grid-template-columns: 1fr; }
}
.about-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--nb-navy);
}
.about-list svg {
	flex: none;
	width: 18px;
	height: 18px;
	color: var(--nb-gold);
	margin-top: 2px;
}

@media (max-width: 900px) {
	.about-split .section-inner { grid-template-columns: 1fr; }
	.about-media-badge {
		/* keep the same "hanging off the corner" treatment as desktop —
		   just anchored bottom-left with a safe inset instead of a
		   negative offset, so it can't push past the viewport edge */
		bottom: -20px;
		right: auto;
		left: 20px;
	}
}

/* ==========================================================================
   VISION / MISSION / VALUES
   ========================================================================== */

.pillars {
	background: var(--nb-offwhite);
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.pillar-card {
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 44px 34px;
	transition: transform 0.4s var(--nb-ease), box-shadow 0.4s var(--nb-ease), border-color 0.4s var(--nb-ease);
}
.pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--nb-shadow-lg);
	border-color: var(--nb-gold);
}

.pillar-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nb-navy-soft);
	color: var(--nb-gold);
	border-radius: 50%;
	margin-bottom: 24px;
}
.pillar-icon svg { width: 24px; height: 24px; }

.pillar-card h3 {
	font-size: 1.25rem;
	color: var(--nb-navy);
	margin: 0 0 12px;
}
.pillar-card p {
	font-size: 0.92rem;
	line-height: 1.75;
	color: var(--nb-text-muted);
	margin: 0;
}

@media (max-width: 900px) {
	.pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
	.pillar-card { padding: 34px 24px; }
}

/* ==========================================================================
   OPERATIONS / WHAT WE DO
   ========================================================================== */

.ops {
	background: var(--nb-white);
}

.ops-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.ops-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--nb-radius);
}

.ops-card .img-placeholder { --ratio: 3 / 4; border-radius: var(--nb-radius); }

.ops-card-img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ops-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 26px 22px;
	background: linear-gradient(0deg, rgba(13, 31, 60, 0.92) 0%, rgba(13, 31, 60, 0.15) 65%, transparent 100%);
	color: var(--nb-white);
}

.ops-card-index {
	font-family: 'Playfair Display', serif;
	font-size: 0.85rem;
	color: var(--nb-gold-light);
	margin-bottom: 8px;
}

.ops-card h3 {
	font-size: 1.1rem;
	margin: 0 0 8px;
	color: var(--nb-white);
}

.ops-card p {
	font-size: 0.84rem;
	line-height: 1.6;
	color: rgba(250, 247, 241, 0.78);
	margin: 0;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.4s var(--nb-ease), opacity 0.3s var(--nb-ease);
}

.ops-card:hover p {
	max-height: 120px;
	opacity: 1;
}

@media (max-width: 1000px) {
	.ops-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
	/* touch screens have no :hover — keep the description visible instead of hidden forever */
	.ops-card p {
		max-height: none;
		opacity: 1;
	}
}
@media (max-width: 560px) {
	.ops-grid { grid-template-columns: 1fr; }
	/* 4 stacked 3:4 portrait photos runs very long on a single column —
	   flatten the crop so the section doesn't turn into a wall of scroll */
	.ops-card-img { aspect-ratio: 16 / 10; }
	.ops-card .img-placeholder { --ratio: 16 / 10; }
}

/* ==========================================================================
   API DIVISIONS / PORTFOLIO
   ========================================================================== */

.divisions {
	background: var(--nb-offwhite);
}

.divisions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.division-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 30px 26px;
	transition: transform 0.35s var(--nb-ease), border-color 0.35s var(--nb-ease), box-shadow 0.35s var(--nb-ease);
}

.division-card:hover {
	transform: translateY(-6px);
	border-color: var(--nb-gold);
	box-shadow: var(--nb-shadow);
}

.division-icon {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--nb-gold);
	border-radius: 50%;
	color: var(--nb-gold);
}
.division-icon svg { width: 22px; height: 22px; }

.division-card h4 {
	font-size: 1rem;
	color: var(--nb-navy);
	margin: 0;
}
.division-card span {
	font-size: 0.8rem;
	color: var(--nb-text-muted);
}

.divisions-cta {
	text-align: center;
	margin-top: 50px;
}

@media (max-width: 1000px) {
	.divisions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.divisions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
	.division-card { padding: 24px 20px; }
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */

.stats-band {
	background: var(--nb-navy);
	position: relative;
	overflow: hidden;
}
.stats-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 20%, rgba(184, 135, 60, 0.12), transparent 55%);
}

.stats-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 32px;
	text-align: center;
}

.stat-number {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--nb-gold-light);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	color: rgba(250, 247, 241, 0.7);
}

@media (max-width: 780px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   GLOBAL PRESENCE
   ========================================================================== */

.global-presence {
	background: var(--nb-white);
}

.global-presence .section-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}

.map-wrap .img-placeholder { --ratio: 4 / 3; }

.map-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--nb-radius);
}

.map-dot {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--nb-gold);
	box-shadow: 0 0 0 0 rgba(184, 135, 60, 0.6);
	animation: nb-pulse 2.4s ease-out infinite;
}
@keyframes nb-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(184, 135, 60, 0.55); }
	70%  { box-shadow: 0 0 0 16px rgba(184, 135, 60, 0); }
	100% { box-shadow: 0 0 0 0 rgba(184, 135, 60, 0); }
}

.map-wrap { position: relative; }

.region-list {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.region-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--nb-navy);
	padding-bottom: 12px;
	border-bottom: 1px solid var(--nb-border);
}
.region-list li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nb-gold);
	flex: none;
}

@media (max-width: 900px) {
	.global-presence .section-inner { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
	.region-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
	background: linear-gradient(120deg, var(--nb-navy) 0%, var(--nb-navy-light) 100%);
	position: relative;
	overflow: hidden;
}

.cta-band-inner {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 90px 32px;
	text-align: center;
}

.cta-band h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	color: var(--nb-white);
	margin: 0 0 18px;
}
.cta-band p {
	font-size: 1rem;
	color: rgba(250, 247, 241, 0.75);
	max-width: 560px;
	margin: 0 auto 34px;
	line-height: 1.7;
}

/* ==========================================================================
   FRONT PAGE — GLOBAL MOBILE TUNING
   (110px section padding reads fine on desktop but wastes scroll space
   on phones, so tighten it once here rather than per-section.)
   ========================================================================== */

@media (max-width: 700px) {
	.section-inner { padding: 64px 20px; }
	.about-split .section-inner { padding-top: 64px; padding-bottom: 64px; }
	.section-head { margin-bottom: 40px; }
	.stats-grid { padding: 56px 20px; }
	.cta-band-inner { padding: 64px 20px; }
	.site-footer { padding-top: 60px; }
}


/* ==========================================================================
   WHO WE ARE — Split hero
   ========================================================================== */

.who-hero {
	position: relative;
	background: var(--nb-offwhite);
	overflow: hidden;
}

.who-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 620px;
}

.who-hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 150px 64px 90px 6vw;
	max-width: 620px;
}

.who-hero-media {
	position: relative;
	min-height: 420px;
}
.who-hero-media .img-placeholder {
	height: 100%;
	border-radius: 0;
	border: none;
}

.page-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	color: var(--nb-text-muted);
	margin-bottom: 22px;
}
.page-breadcrumb a {
	color: var(--nb-navy);
	transition: color 0.3s var(--nb-ease);
}
.page-breadcrumb a:hover { color: var(--nb-gold); }
.page-breadcrumb span[aria-current] { color: var(--nb-gold); }

.who-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2.2rem, 4.2vw, 3.4rem);
	font-weight: 700;
	color: var(--nb-navy);
	margin: 0 0 18px;
}

.who-hero-lede {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--nb-text-muted);
	margin: 0;
}

.who-hero-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 148px;
	height: 148px;
	border-radius: 50%;
	background: var(--nb-navy);
	border: 2px solid var(--nb-gold);
	box-shadow: var(--nb-shadow-lg);
	text-align: center;
}
.who-hero-badge strong {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--nb-gold-light);
	line-height: 1;
}
.who-hero-badge span {
	font-size: 0.68rem;
	letter-spacing: 0.02em;
	color: rgba(250, 247, 241, 0.8);
	margin-top: 6px;
	max-width: 100px;
	line-height: 1.3;
}

@media (max-width: 900px) {
	.who-hero-grid { grid-template-columns: 1fr; min-height: 0; }
	.who-hero-text { max-width: none; padding: 120px 24px 90px; }
	.who-hero-media { min-height: 340px; }
	.who-hero-badge { position: static; transform: none; margin: -60px auto 0; }
}
@media (max-width: 480px) {
	.who-hero-text { padding: 100px 20px 80px; }
}

/* ==========================================================================
   WHO WE ARE — Our Story (pull-quote + photo collage)
   ========================================================================== */

.story { background: var(--nb-white); }

.story-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 80px;
	align-items: center;
}

.story-collage {
	position: relative;
	padding: 20px 40px 40px 0;
}
.story-img-back {
	--ratio: 4 / 5;
	width: 100%;
}
.story-img-front {
	--ratio: 4 / 5;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58%;
	border: 6px solid var(--nb-white);
	box-shadow: var(--nb-shadow-lg);
}

.story-quote {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	line-height: 1.5;
	color: var(--nb-navy);
	border-left: 3px solid var(--nb-gold);
	padding-left: 26px;
	margin: 18px 0 26px;
}

@media (max-width: 900px) {
	.story-grid { grid-template-columns: 1fr; gap: 50px; }
	.story-collage { padding: 0 30px 40px 0; }
}
@media (max-width: 480px) {
	.story-img-front { width: 62%; border-width: 4px; }
}

/* ==========================================================================
   WHO WE ARE — Vision / Mission / Values (alternating numbered rows)
   ========================================================================== */

.principles { background: var(--nb-offwhite); }

.principles-list {
	max-width: 900px;
	margin: 0 auto;
}

.principle-row {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 40px 0;
	border-bottom: 1px solid var(--nb-border);
}
.principle-row:first-child { padding-top: 0; }
.principle-row:last-child { border-bottom: none; padding-bottom: 0; }
.principle-row.is-reverse { flex-direction: row-reverse; }

.principle-number {
	flex: none;
	width: 100px;
	font-family: 'Playfair Display', serif;
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--nb-navy-soft);
	-webkit-text-stroke: 1px var(--nb-gold);
	line-height: 1;
}

.principle-body { flex: 1; }
.principle-body h3 {
	font-size: 1.35rem;
	color: var(--nb-navy);
	margin: 0 0 10px;
}
.principle-body p {
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--nb-text-muted);
	margin: 0;
	max-width: 560px;
}

.principle-icon {
	flex: none;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid var(--nb-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nb-gold);
}
.principle-icon svg { width: 26px; height: 26px; }

@media (max-width: 780px) {
	.principle-row,
	.principle-row.is-reverse {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.principle-icon { order: -1; }
	.principle-number { width: auto; font-size: 2.4rem; }
}

/* ==========================================================================
   WHO WE ARE — What Sets Us Apart (bento grid)
   ========================================================================== */

.features { background: var(--nb-white); }

.feature-icon {
	width: 48px;
	height: 48px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--nb-navy-soft);
	color: var(--nb-gold);
	margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }

.bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 190px;
	gap: 20px;
}

.bento-card {
	background: var(--nb-offwhite);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform 0.35s var(--nb-ease), box-shadow 0.35s var(--nb-ease), border-color 0.35s var(--nb-ease);
}
.bento-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--nb-shadow);
	border-color: var(--nb-gold);
}
.bento-card h3 {
	font-size: 1.02rem;
	color: var(--nb-navy);
	margin: 0 0 8px;
}
.bento-card p {
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--nb-text-muted);
	margin: 0;
}

.bento-card-lg {
	grid-column: span 2;
	grid-row: span 2;
	background: var(--nb-navy);
	color: var(--nb-white);
	justify-content: flex-end;
}
.bento-card-lg .feature-icon {
	background: rgba(250, 247, 241, 0.12);
	color: var(--nb-gold-light);
}
.bento-card-lg h3 { color: var(--nb-white); font-size: 1.3rem; }
.bento-card-lg p { color: rgba(250, 247, 241, 0.75); font-size: 0.96rem; }

@media (max-width: 900px) {
	.bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
	.bento-card-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
	.bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.bento-card-lg { grid-column: span 1; }
	.bento-card { min-height: 160px; }
}

/* ==========================================================================
   WHO WE ARE — Our Journey (zigzag timeline)
   ========================================================================== */

.journey { background: var(--nb-offwhite); }

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient(180deg, var(--nb-gold), var(--nb-gold-light));
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	align-items: center;
	margin-bottom: 46px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-card {
	grid-column: 1;
	justify-self: end;
	text-align: right;
	max-width: 380px;
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 26px 28px;
}
.timeline-item:nth-child(even) .timeline-card {
	grid-column: 3;
	justify-self: start;
	text-align: left;
}
.timeline-card h3 { font-size: 1.1rem; color: var(--nb-navy); margin: 0 0 8px; }
.timeline-card p { font-size: 0.92rem; line-height: 1.7; color: var(--nb-text-muted); margin: 0; }

.timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }

.timeline-marker {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.timeline-marker span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--nb-white);
	border: 3px solid var(--nb-gold);
}

@media (max-width: 700px) {
	.timeline::before { left: 9px; transform: none; }
	.timeline-item,
	.timeline-item:nth-child(even) {
		grid-template-columns: 20px 1fr;
		margin-bottom: 34px;
	}
	.timeline-item .timeline-card,
	.timeline-item:nth-child(even) .timeline-card {
		grid-column: 2;
		grid-row: 1;
		justify-self: stretch;
		text-align: left;
		max-width: none;
		padding: 20px 22px;
	}
	.timeline-item .timeline-marker,
	.timeline-item:nth-child(even) .timeline-marker {
		grid-column: 1;
		grid-row: 1;
	}
	.timeline-item .timeline-spacer,
	.timeline-item:nth-child(even) .timeline-spacer {
		display: none;
	}
}

/* ==========================================================================
   WHO WE ARE — Stat wall (staggered cards)
   ========================================================================== */

.stat-wall { background: var(--nb-white); }

.stat-wall-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stat-card {
	background: var(--nb-offwhite);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 36px 28px;
	text-align: center;
	transition: transform 0.3s var(--nb-ease), box-shadow 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease);
}
.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--nb-shadow);
	border-color: var(--nb-gold);
}
.stat-card:nth-child(even) { margin-top: 32px; }

.stat-card-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--nb-navy-soft);
	color: var(--nb-gold);
}
.stat-card-icon svg { width: 20px; height: 20px; }

.stat-card .stat-number { color: var(--nb-navy); }
.stat-card .stat-label { color: var(--nb-text-muted); }

@media (max-width: 780px) {
	.stat-wall-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	.stat-card:nth-child(even) { margin-top: 0; }
}

/* ==========================================================================
   WHO WE ARE — Certifications (seals)
   ========================================================================== */

.certs { background: var(--nb-offwhite); }

.seals-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 36px;
}

.seal-ring {
	position: relative;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: var(--nb-white);
	border: 2px solid var(--nb-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--nb-shadow);
}
.seal-ring::before {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: 50%;
	border: 1px dashed rgba(184, 135, 60, 0.5);
}
.seal-ring span {
	position: relative;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	color: var(--nb-navy);
	text-align: center;
	padding: 0 10px;
}

@media (max-width: 560px) {
	.seals-row { gap: 22px; }
	.seal-ring { width: 96px; height: 96px; }
}

/* ==========================================================================
   WHO WE ARE — Core team (circular directory)
   ========================================================================== */

.team { background: var(--nb-white); }

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.team-photo-circle {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	margin: 0 auto 22px;
	border: 3px solid var(--nb-gold);
	overflow: hidden;
}
.team-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: var(--nb-navy);
	margin: 0 0 6px;
}
.team-role {
	font-size: 0.85rem;
	color: var(--nb-gold);
	letter-spacing: 0.02em;
}

@media (max-width: 700px) {
	.team-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ==========================================================================
   WHO WE ARE — Split CTA
   ========================================================================== */

.cta-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--nb-navy);
	overflow: hidden;
}

.cta-split-media {
	position: relative;
	min-height: 380px;
}
.cta-split-media .img-placeholder {
	height: 100%;
	border-radius: 0;
	border: none;
}

.cta-split-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 64px;
}
.cta-split-text h2 {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	color: var(--nb-white);
	margin: 0 0 16px;
}
.cta-split-text p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(250, 247, 241, 0.75);
	margin: 0 0 30px;
	max-width: 440px;
}

@media (max-width: 900px) {
	.cta-split { grid-template-columns: 1fr; }
	.cta-split-media { min-height: 260px; order: -1; }
	.cta-split-text { padding: 56px 24px; }
}

/* ==========================================================================
   CONTACT — Split layout (persistent, not a stacked hero-then-sections page)
   ========================================================================== */

.contact-page { overflow-x: hidden; }

.page-breadcrumb.on-dark { color: rgba(250, 247, 241, 0.55); }
.page-breadcrumb.on-dark a { color: rgba(250, 247, 241, 0.85); }
.page-breadcrumb.on-dark a:hover { color: var(--nb-gold-light); }
.page-breadcrumb.on-dark span[aria-current] { color: var(--nb-gold-light); }

.contact-split {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	min-height: 100vh;
	min-height: 100svh;
}

.contact-info {
	position: relative;
	background: linear-gradient(160deg, var(--nb-navy) 0%, var(--nb-navy-light) 100%);
	color: rgba(250, 247, 241, 0.85);
	padding: 150px 64px 80px 6vw;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-info-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	font-weight: 700;
	color: var(--nb-white);
	margin: 0 0 18px;
	max-width: 440px;
	position: relative;
	z-index: 2;
}

.contact-info-lede {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(250, 247, 241, 0.72);
	max-width: 420px;
	margin: 0 0 40px;
	position: relative;
	z-index: 2;
}

.contact-detail-list {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
	position: relative;
	z-index: 2;
}
.contact-detail-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 0;
	border-top: 1px solid rgba(250, 247, 241, 0.12);
	font-size: 0.94rem;
}
.contact-detail-list li:last-child { border-bottom: 1px solid rgba(250, 247, 241, 0.12); }
.contact-detail-list svg {
	flex: none;
	width: 20px;
	height: 20px;
	color: var(--nb-gold);
	margin-top: 2px;
}
.contact-detail-list a { transition: color 0.3s var(--nb-ease); }
.contact-detail-list a:hover { color: var(--nb-gold-light); }

.contact-socials {
	display: flex;
	gap: 12px;
	position: relative;
	z-index: 2;
}

.contact-ornament {
	position: absolute;
	right: -20px;
	bottom: -20px;
	width: 220px;
	height: 220px;
	opacity: 0.14;
	pointer-events: none;
	z-index: 0;
}
.contact-ornament svg { width: 100%; height: 100%; stroke: var(--nb-gold-light); }

/* ---------- Form panel ---------- */

.contact-form-panel {
	background: var(--nb-offwhite);
	display: flex;
	align-items: center;
	padding: 80px 6vw;
}

.contact-form-inner {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}

.contact-form-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	color: var(--nb-navy);
	margin: 0 0 26px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-field { margin-bottom: 22px; }
.form-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--nb-navy);
	margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--nb-border);
	border-radius: 10px;
	background: var(--nb-white);
	font-family: 'Jost', sans-serif;
	font-size: 0.95rem;
	color: var(--nb-text);
	transition: border-color 0.3s var(--nb-ease), box-shadow 0.3s var(--nb-ease);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--nb-gold);
	box-shadow: 0 0 0 3px rgba(184, 135, 60, 0.15);
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-submit {
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
}

.form-notice {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border-radius: var(--nb-radius);
	margin-bottom: 26px;
	font-size: 0.9rem;
	line-height: 1.6;
}
.form-notice svg { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.form-notice strong { display: block; margin-bottom: 2px; }

.form-notice.is-success {
	background: rgba(46, 125, 50, 0.08);
	border: 1px solid rgba(46, 125, 50, 0.3);
	color: #2e7d32;
}
.form-notice.is-error {
	background: rgba(198, 40, 40, 0.08);
	border: 1px solid rgba(198, 40, 40, 0.3);
	color: #c62828;
}

@media (max-width: 980px) {
	.contact-split { grid-template-columns: 1fr; min-height: 0; }
	.contact-info { padding: 130px 24px 60px; }
	.contact-form-panel { padding: 60px 24px; }
	.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.contact-info { padding: 110px 20px 50px; }
	.contact-form-panel { padding: 50px 20px; }
}

/* ==========================================================================
   CONTACT — Map
   ========================================================================== */

.contact-map { background: var(--nb-navy); }
.contact-map .img-placeholder {
	--ratio: auto;
	border-radius: 0;
	border: none;
	min-height: 420px;
}

/* ==========================================================================
   CONTACT — FAQ accordion
   ========================================================================== */

.faq { background: var(--nb-white); }

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--nb-border); }
.faq-item:first-child { border-top: 1px solid var(--nb-border); }

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 4px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Jost', sans-serif;
	font-size: 1.02rem;
	font-weight: 500;
	color: var(--nb-navy);
}

.faq-chevron {
	flex: none;
	width: 20px;
	height: 20px;
	color: var(--nb-gold);
	transition: transform 0.3s var(--nb-ease);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer { padding: 0 4px 24px; }
.faq-answer p {
	font-size: 0.94rem;
	line-height: 1.75;
	color: var(--nb-text-muted);
	margin: 0;
	max-width: 640px;
}

/* ==========================================================================
   MOLECULES ARCHIVE — /molecules/ (archive-molecules.php)
   ========================================================================== */

.molecules-page { overflow-x: hidden; }
.molecules-page section { position: relative; }

/* .section-inner carries its own 110px vertical padding (used by the
   front-page sections that rely on it for spacing) — these three sections
   already set their own vertical padding above, so zero it out here to
   stop the two from stacking. */
.molecules-hero .section-inner,
.molecules-filter-bar .section-inner,
.molecules-grid-section .section-inner {
	padding-top: 0;
	padding-bottom: 0;
}

/* ---------- Hero ---------- */

.molecules-hero {
	position: relative;
	background: linear-gradient(160deg, var(--nb-navy) 0%, var(--nb-navy-light) 100%);
	color: rgba(250, 247, 241, 0.85);
	padding: 120px 6vw 56px;
	overflow: hidden;
}

.molecules-hero-ornament {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 320px;
	height: 320px;
	opacity: 0.12;
	pointer-events: none;
}
.molecules-hero-ornament svg { width: 100%; height: 100%; stroke: var(--nb-gold-light); }

.molecules-eyebrow {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nb-gold-light);
	margin-bottom: 14px;
	position: relative;
	z-index: 2;
}

.molecules-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	font-weight: 700;
	color: var(--nb-white);
	max-width: 780px;
	margin: 0 0 14px;
	position: relative;
	z-index: 2;
}

.molecules-hero-lede {
	font-size: 1.02rem;
	line-height: 1.75;
	color: rgba(250, 247, 241, 0.72);
	max-width: 620px;
	margin: 0 0 28px;
	position: relative;
	z-index: 2;
}

.molecules-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	position: relative;
	z-index: 2;
}

.molecules-hero-stat {
	padding-left: 20px;
	border-left: 2px solid rgba(184, 135, 60, 0.4);
}
.molecules-hero-stat strong {
	display: block;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--nb-white);
	line-height: 1.2;
}
.molecules-hero-stat span {
	display: block;
	font-size: 0.82rem;
	color: rgba(250, 247, 241, 0.62);
	margin-top: 4px;
}

/* ---------- Filter bar ---------- */

.molecules-filter-bar {
	background: var(--nb-white);
	border-bottom: 1px solid var(--nb-border);
	padding: 26px 6vw 24px;
}

.molecules-filter-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}

.molecules-filter-label {
	display: block;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nb-text-muted);
	margin-top: -4px;
}

.molecules-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.molecules-tab {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid var(--nb-border);
	border-radius: 999px;
	background: var(--nb-offwhite);
	font-family: 'Jost', sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--nb-text-muted);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.3s var(--nb-ease), color 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease), transform 0.2s var(--nb-ease);
}
.molecules-tab:hover {
	border-color: var(--nb-gold);
	color: var(--nb-navy);
	transform: translateY(-1px);
}
.molecules-tab.is-active {
	background: var(--nb-navy);
	border-color: var(--nb-navy);
	color: var(--nb-white);
}
.molecules-tab.is-active .molecules-tab-count {
	background: rgba(250, 247, 241, 0.18);
	color: var(--nb-white);
}

.molecules-tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(11, 43, 74, 0.08);
	color: var(--nb-navy);
	font-size: 0.72rem;
	font-weight: 600;
}

.molecules-search {
	position: relative;
	width: 100%;
	max-width: 420px;
}
.molecules-search svg {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--nb-text-muted);
	pointer-events: none;
}
.molecules-search input {
	width: 100%;
	padding: 13px 18px 13px 46px;
	border: 1px solid var(--nb-border);
	border-radius: 999px;
	background: var(--nb-offwhite);
	font-family: 'Jost', sans-serif;
	font-size: 0.92rem;
	color: var(--nb-text);
	text-align: left;
	transition: border-color 0.3s var(--nb-ease), box-shadow 0.3s var(--nb-ease), background 0.3s var(--nb-ease);
}
.molecules-search input:focus {
	outline: none;
	border-color: var(--nb-gold);
	box-shadow: 0 0 0 3px rgba(184, 135, 60, 0.15);
	background: var(--nb-white);
}

/* ---------- Grid ---------- */

.molecules-grid-section {
	background: var(--nb-offwhite);
	padding: 44px 6vw 56px;
}

.molecules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 28px;
}

.molecule-card {
	display: flex;
	flex-direction: column;
	background: var(--nb-white);
	border-radius: var(--nb-radius);
	overflow: hidden;
	border: 1px solid var(--nb-border);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s var(--nb-ease), box-shadow 0.35s var(--nb-ease), border-color 0.35s var(--nb-ease);
}
.molecule-card[hidden] { display: none; }
.molecule-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(11, 43, 74, 0.14);
	border-color: transparent;
}

.molecule-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--nb-navy);
}
.molecule-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--nb-ease);
}
.molecule-card:hover .molecule-card-img { transform: scale(1.08); }

.molecule-card-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, var(--nb-navy) 0%, var(--nb-navy-light) 100%);
}
.molecule-card-fallback svg {
	width: 46px;
	height: 46px;
	color: rgba(250, 247, 241, 0.35);
}

.molecule-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(11, 43, 74, 0.82);
	backdrop-filter: blur(4px);
	color: var(--nb-white);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.molecule-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 24px 26px;
}

.molecule-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--nb-navy);
	margin: 0 0 8px;
	line-height: 1.35;
}

.molecule-card-cas {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--nb-gold);
	margin-bottom: 10px;
}

.molecule-card-excerpt {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--nb-text-muted);
	margin: 0 0 18px;
	flex: 1;
}

.molecule-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nb-navy);
	transition: gap 0.3s var(--nb-ease), color 0.3s var(--nb-ease);
}
.molecule-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--nb-ease); }
.molecule-card:hover .molecule-card-link { color: var(--nb-gold); gap: 12px; }
.molecule-card:hover .molecule-card-link svg { transform: translateX(2px); }

/* ---------- Pagination ---------- */

.molecules-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 44px;
}
.molecules-pagination[hidden] { display: none; }

.molecules-page-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid var(--nb-border);
	border-radius: 999px;
	background: var(--nb-white);
	font-family: 'Jost', sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--nb-text-muted);
	cursor: pointer;
	transition: background 0.3s var(--nb-ease), color 0.3s var(--nb-ease), border-color 0.3s var(--nb-ease);
}
.molecules-page-btn:hover:not(:disabled) {
	border-color: var(--nb-gold);
	color: var(--nb-navy);
}
.molecules-page-btn.is-active {
	background: var(--nb-navy);
	border-color: var(--nb-navy);
	color: var(--nb-white);
	cursor: default;
}
.molecules-page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* ---------- Empty state ---------- */

.molecules-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 80px 20px;
	color: var(--nb-text-muted);
}
.molecules-empty[hidden] { display: none; }
.molecules-empty svg {
	width: 46px;
	height: 46px;
	color: var(--nb-border);
	margin-bottom: 18px;
}
.molecules-empty h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.3rem;
	color: var(--nb-navy);
	margin: 0 0 10px;
}
.molecules-empty p { max-width: 440px; margin: 0; font-size: 0.92rem; line-height: 1.7; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
	.molecules-hero { padding: 100px 24px 44px; }
	.molecules-hero-stats { gap: 20px; }
	.molecules-filter-bar { padding: 20px 24px 18px; }
	.molecules-grid-section { padding: 36px 24px 44px; }
}

@media (max-width: 480px) {
	.molecules-hero { padding: 90px 20px 36px; }
	.molecules-hero-stats { gap: 16px 20px; }
	.molecules-hero-stat { padding-left: 14px; }
	.molecules-grid { grid-template-columns: 1fr; gap: 20px; }
}
