/* =========================================================================
   NorthShift theme.css — design system for the single-scroll Framer rebuild.
   Palette: Deep Navy / Amber / Emerald / Silver / off-white.
   Fonts: Plus Jakarta Sans (primary) + Sora (secondary), self-hosted.
   ========================================================================= */

:root {
	--ns-navy: #0D293B;
	--ns-navy-light: #123449;
	--ns-navy-lighter: #0f3346;
	--ns-amber: #E7A701;
	--ns-emerald: #0D9265;
	--ns-emerald-bright: #3FBF8F;
	--ns-silver: #E6E6E6;
	--ns-off-white: #F4F5F5;
	--ns-off-white-2: #EDEFEF;
	--ns-white: #FFFFFF;
	--ns-text-muted: #5B6C77;
	--ns-text-muted-light: #C7D5DB;

	--ns-font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ns-font-secondary: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--ns-h1-size: 72px;
	--ns-h2-size: 42px;
	--ns-h3-size: 28px;
	--ns-h4-size: 22px;
	--ns-body-size: 22px;
	--ns-body-lg-size: 18px;
	--ns-body-sm-size: 14px;
	--ns-btn-size: 19px;
	--ns-stat-size: 64px;
	--ns-stat-label-size: 16px;

	--ns-header-h: 88px;
	--ns-container-w: 1200px;
	--ns-radius: 16px;
	--ns-radius-lg: 25px;
	--ns-radius-pill: 999px;
}

/* -------------------------------------------------------------------------
   Reset / base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ns-font-primary);
	font-size: var(--ns-body-lg-size);
	line-height: 1.6;
	color: var(--ns-navy);
	background: var(--ns-white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}

.ns-container {
	max-width: var(--ns-container-w);
	margin: 0 auto;
	padding: 0 32px;
}

.ns-section { position: relative; padding: 100px 0; }
.ns-bg-light { background: var(--ns-off-white); }
.ns-bg-navy { background: var(--ns-navy); color: var(--ns-white); }
.ns-bg-navy p, .ns-bg-navy .ns-body { color: var(--ns-text-muted-light); }
.ns-bg-navy h1, .ns-bg-navy h2, .ns-bg-navy h3, .ns-bg-navy h4 { color: var(--ns-white); }

/* Scroll-reveal (JS toggles .is-visible; CSS default = visible if JS absent) */
.ns-reveal { opacity: 1; transform: none; }
.ns-reveal.js-armed { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ns-reveal.js-armed.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.ns-reveal.js-armed { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------------------
   Type scale
   ---------------------------------------------------------------------- */
h1, .ns-h1 { font-size: var(--ns-h1-size); line-height: .9; font-weight: 800; letter-spacing: -.02em; }
h2, .ns-h2 { font-size: var(--ns-h2-size); line-height: 1.1; font-weight: 700; letter-spacing: -.01em; }
h3, .ns-h3 { font-size: var(--ns-h3-size); line-height: 1.2; font-weight: 700; }
h4, .ns-h4 { font-size: var(--ns-h4-size); line-height: 1.4; font-weight: 600; }
.ns-body { font-size: var(--ns-body-size); line-height: 1.5; }
.ns-body-lg { font-size: var(--ns-body-lg-size); line-height: 1.8; }
.ns-body-sm { font-size: var(--ns-body-sm-size); line-height: 1.6; }

/* -------------------------------------------------------------------------
   Eyebrow pill
   ---------------------------------------------------------------------- */
.ns-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ns-emerald);
	color: var(--ns-navy);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 9px 18px;
	border-radius: var(--ns-radius-pill);
	margin-bottom: 24px;
}
.ns-eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ns-navy); }
a.ns-eyebrow:hover { filter: brightness(1.08); }

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.ns-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--ns-btn-size);
	line-height: 1.1;
	font-weight: 600;
	padding: 14px 26px;
	border-radius: var(--ns-radius-pill);
	transition: filter .15s ease, transform .15s ease;
	white-space: nowrap;
}
.ns-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ns-btn--amber { background: var(--ns-amber); color: var(--ns-navy); }
.ns-btn--emerald { background: var(--ns-emerald); color: var(--ns-white); }
.ns-btn--outline { background: transparent; color: var(--ns-white); border: 1px solid rgba(255,255,255,.4); }
.ns-btn--wide { width: 100%; justify-content: center; }
.ns-btn__icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.ns-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: var(--ns-navy);
	height: var(--ns-header-h);
	display: flex;
	align-items: center;
}
.ns-header__inner {
	width: 100%;
	max-width: var(--ns-container-w);
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.ns-site-main { padding-top: var(--ns-header-h); }

.ns-logo-plaque { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.ns-logo-mark { width: 30px; height: 29px; color: var(--ns-white); }
.ns-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.ns-logo-wordmark { color: var(--ns-white); font-weight: 800; font-size: 18px; }
.ns-logo-wordmark sup { font-size: 9px; }
.ns-logo-rule { display: block; width: 100%; height: 1px; background: rgba(255,255,255,.25); margin: 3px 0; }
.ns-logo-tag { color: var(--ns-text-muted-light); font-size: 11px; letter-spacing: .01em; }

.ns-nav-inline { flex: 1 1 auto; display: flex; justify-content: center; }
.ns-nav-inline__list { display: flex; align-items: center; gap: 40px; }
.ns-nav-inline__list .ns-menu-link { color: var(--ns-white); font-weight: 500; font-size: 16px; }
.ns-nav-inline__list .ns-menu-link:hover { color: var(--ns-amber); }

.ns-header__cta { flex: 0 0 auto; }

.ns-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
}
.ns-burger span { display: block; width: 100%; height: 2px; background: var(--ns-white); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.ns-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ns-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ns-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ns-nav-overlay {
	position: fixed; inset: 0; background: rgba(13,41,59,.55);
	z-index: 998; opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.ns-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.ns-navpanel {
	position: fixed;
	top: 0; right: 0;
	width: min(320px, 86vw);
	height: 100%;
	background: var(--ns-navy-light);
	z-index: 999;
	padding: 28px 28px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	transform: translateX(100%);
	transition: transform .25s ease;
	overflow-y: auto;
}
.ns-navpanel.is-open { transform: translateX(0); }
.ns-navpanel-close { align-self: flex-end; font-size: 30px; line-height: 1; color: var(--ns-white); }
.ns-navpanel .ns-menu { display: flex; flex-direction: column; gap: 4px; }
.ns-navpanel .ns-menu-link { display: block; padding: 14px 4px; color: var(--ns-white); font-size: 20px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.ns-navpanel__cta { align-self: flex-start; }

@media (max-width: 809px) {
	.ns-nav-inline, .ns-header__cta { display: none; }
	.ns-burger { display: flex; }
}
@media (min-width: 810px) {
	.ns-navpanel, .ns-nav-overlay, .ns-navpanel-close { display: none; }
}

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.ns-footer { background: var(--ns-navy); color: var(--ns-white); padding: 64px 0 32px; }
.ns-footer__inner { max-width: var(--ns-container-w); margin: 0 auto; padding: 0 32px; }
.ns-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ns-footer__list { display: flex; gap: 28px; flex-wrap: wrap; }
.ns-footer__list a { color: var(--ns-text-muted-light); font-size: 15px; }
.ns-footer__list a:hover { color: var(--ns-amber); }
.ns-footer__social { display: flex; gap: 16px; }
.ns-social-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; }
.ns-social-icon svg { width: 16px; height: 16px; fill: var(--ns-white); }
.ns-social-icon:hover { border-color: var(--ns-amber); }
.ns-footer__divider { border: none; border-top: 1px solid var(--ns-emerald); margin: 40px 0 24px; opacity: .5; }
.ns-footer__bottom { display: flex; flex-direction: column; gap: 6px; }
.ns-footer__legal { color: var(--ns-text-muted-light); font-size: 13px; margin: 0; }

.ns-totop {
	position: fixed; bottom: 28px; right: 28px; z-index: 500;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--ns-amber); color: var(--ns-navy);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; pointer-events: none; transform: translateY(10px);
	transition: opacity .2s ease, transform .2s ease;
}
.ns-totop.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.ns-totop svg { width: 20px; height: 20px; }

@media (max-width: 809px) {
	.ns-footer__top { flex-direction: column; align-items: flex-start; }
}

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.ns-hero { padding-top: 140px; padding-bottom: 100px; overflow: hidden; text-align: center; }
.ns-hero__dotgrid {
	position: absolute; inset: 0; z-index: 0;
	background-image: radial-gradient(circle, rgba(13,41,59,.14) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 100%);
}
.ns-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.ns-hero__headline { max-width: 900px; margin: 0 auto 24px; }
.ns-hero__sub { max-width: 640px; margin: 0 auto 48px; color: var(--ns-text-muted); font-size: var(--ns-body-size); }
.ns-hero__media { width: 100%; max-width: 730px; margin: 0 auto; }
.ns-hero__video, .ns-hero__poster, .ns-hero__embed iframe {
	width: 100%; display: block; border-radius: var(--ns-radius-lg);
	border: 1px solid rgba(13,41,59,.12);
	aspect-ratio: 16/10; object-fit: cover; background: var(--ns-navy);
}
.ns-hero__embed { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--ns-radius-lg); overflow: hidden; }
.ns-hero__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }

@media (max-width: 809px) {
	.ns-hero { padding-top: 120px; }
}

/* -------------------------------------------------------------------------
   AI panel
   ---------------------------------------------------------------------- */
.ns-aipanel {
	background-size: cover; background-position: center; background-repeat: no-repeat;
	min-height: 560px; display: flex; align-items: center; color: var(--ns-white);
	padding: 100px 0;
}
.ns-aipanel__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,41,59,.25), rgba(13,41,59,.55)); }
.ns-aipanel__inner { position: relative; z-index: 1; text-align: center; }
.ns-aipanel__heading { max-width: 780px; margin: 0 auto; font-size: 40px; line-height: 1.25; font-weight: 700; }
.ns-aipanel__overlay { margin: 32px auto 0; max-width: 480px; border-radius: var(--ns-radius); }

@media (max-width: 809px) {
	.ns-aipanel__heading { font-size: 28px; }
}

/* -------------------------------------------------------------------------
   About + Stats
   ---------------------------------------------------------------------- */
.ns-aboutstats__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.ns-aboutstats__heading { font-size: 34px; line-height: 1.25; }
.ns-aboutstats__subline { display: flex; flex-direction: column; gap: 4px; font-family: var(--ns-font-secondary); font-weight: 700; font-size: 26px; color: var(--ns-emerald); }

.ns-stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ns-stat-card {
	background: var(--ns-navy); border-radius: var(--ns-radius); padding: 32px 24px;
	border-top: 4px solid var(--ns-amber);
}
.ns-stat-card--emerald { border-top-color: var(--ns-emerald); }
.ns-stat-card__number { display: block; font-size: 44px; font-weight: 700; color: var(--ns-emerald-bright); font-family: var(--ns-font-secondary); margin-bottom: 12px; }
.ns-stat-card__label { color: var(--ns-white); font-size: var(--ns-stat-label-size); line-height: 1.5; margin: 0; }

@media (max-width: 1199px) {
	.ns-aboutstats__grid { grid-template-columns: 1fr; }
	.ns-stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 809px) {
	.ns-stat-cards { grid-template-columns: 1fr; }
	.ns-aboutstats__heading { font-size: 26px; }
}

/* -------------------------------------------------------------------------
   Why it matters
   ---------------------------------------------------------------------- */
.ns-why__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.ns-why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.ns-why-card { background: var(--ns-navy-light); border-radius: var(--ns-radius); padding: 28px 24px; }
.ns-why-card__number { display: block; font-family: var(--ns-font-secondary); font-size: 40px; font-weight: 700; color: var(--ns-amber); margin-bottom: 10px; }
.ns-why-card__desc { color: var(--ns-text-muted-light); font-size: 15px; line-height: 1.5; margin: 0; }
.ns-divider { border: none; height: 1px; margin: 0 0 24px; }
.ns-divider--emerald { background: var(--ns-emerald); }
.ns-why__heading { font-size: 32px; line-height: 1.3; }

@media (max-width: 1199px) {
	.ns-why__grid { grid-template-columns: 1fr; }
}
@media (max-width: 809px) {
	.ns-why-cards { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   How we do it
   ---------------------------------------------------------------------- */
.ns-hwdi { text-align: center; }
.ns-hwdi__heading { max-width: 820px; margin: 0 auto 12px; font-size: 34px; line-height: 1.25; }
.ns-hwdi__sub { color: var(--ns-text-muted-light); margin-bottom: 48px; }
.ns-hwdi__mockup { max-width: 900px; margin: 0 auto 40px; }
.ns-hwdi__mockup img { border-radius: var(--ns-radius); width: 100%; }
.ns-hwdi__tagline { font-family: var(--ns-font-secondary); font-size: 30px; font-weight: 600; }
.ns-highlight--emerald { color: var(--ns-emerald-bright); }
.ns-highlight--amber { color: var(--ns-amber); }
.ns-hwdi__privacy { max-width: 700px; margin: 24px auto 0; color: var(--ns-text-muted-light); font-size: 14px; }

@media (max-width: 809px) {
	.ns-hwdi__heading { font-size: 26px; }
	.ns-hwdi__tagline { font-size: 22px; }
}

/* -------------------------------------------------------------------------
   Solutions carousel
   ---------------------------------------------------------------------- */
.ns-carousel { position: relative; margin-top: 40px; }
.ns-carousel__viewport { overflow: hidden; border-radius: var(--ns-radius-lg); }
.ns-carousel__track { display: flex; transition: transform .4s ease; }
.ns-carousel__slide { flex: 0 0 100%; min-width: 100%; }

.ns-solution-card { background: var(--ns-navy); border-radius: var(--ns-radius-lg); display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; padding: 40px; align-items: center; color: var(--ns-white); }
.ns-solution-card__media img { border-radius: var(--ns-radius); width: 100%; }
.ns-solution-card__title { font-size: 30px; margin-bottom: 6px; }
.ns-solution-card__subtitle { color: var(--ns-amber); font-weight: 600; margin-bottom: 20px; }
.ns-solution-card__bullets { display: flex; flex-direction: column; gap: 12px; }
.ns-solution-card__bullets li { position: relative; padding-left: 24px; color: var(--ns-text-muted-light); font-size: 15px; line-height: 1.5; }
.ns-solution-card__bullets li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--ns-emerald); }

.ns-carousel__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--ns-white); border: 1px solid rgba(13,41,59,.15);
	display: flex; align-items: center; justify-content: center;
	color: var(--ns-navy); z-index: 2;
}
.ns-carousel__arrow svg { width: 22px; height: 22px; }
.ns-carousel__arrow--prev { left: -24px; }
.ns-carousel__arrow--next { right: -24px; }
.ns-carousel__arrow:hover { background: var(--ns-amber); }

.ns-carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.ns-carousel__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(13,41,59,.2); }
.ns-carousel__dot.is-active { background: var(--ns-emerald); width: 26px; border-radius: 5px; }

@media (max-width: 1199px) {
	.ns-solution-card { grid-template-columns: 1fr; }
	.ns-carousel__arrow--prev { left: 4px; }
	.ns-carousel__arrow--next { right: 4px; }
}
@media (max-width: 809px) {
	.ns-solution-card { padding: 28px; }
	.ns-solution-card__title { font-size: 24px; }
}

/* -------------------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------------- */
.ns-testimonials__heading { text-align: center; margin-bottom: 48px; }
.ns-testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ns-testimonial-card { background: var(--ns-silver); border-radius: var(--ns-radius); padding: 32px; color: var(--ns-navy); }
.ns-testimonial-card__photo { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 20px; }
.ns-testimonial-card__quote { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.ns-testimonial-card__name { font-weight: 700; margin: 0; }
.ns-testimonial-card__title { color: var(--ns-text-muted); font-size: 14px; margin: 0; }
.ns-testimonials__disclaimer { text-align: center; margin-top: 32px; color: var(--ns-text-muted-light); font-size: 12px; max-width: 700px; margin-left: auto; margin-right: auto; }

@media (max-width: 809px) {
	.ns-testimonial-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Insights
   ---------------------------------------------------------------------- */
.ns-insights__sub { max-width: 640px; color: var(--ns-text-muted); margin-bottom: 40px; }
.ns-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.ns-insight-card { display: block; background: var(--ns-white); border-radius: var(--ns-radius); overflow: hidden; border: 1px solid rgba(13,41,59,.08); }
.ns-insight-card__thumb { height: 160px; }
.ns-gradient-emerald { background: linear-gradient(135deg, var(--ns-emerald) 0%, var(--ns-emerald-bright) 100%); }
.ns-gradient-amber { background: linear-gradient(135deg, #b57e00 0%, var(--ns-amber) 100%); }
.ns-insight-card__label { display: block; color: var(--ns-emerald); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 20px 24px 8px; }
.ns-insight-card__title { font-size: 19px; margin: 0 24px 8px; }
.ns-insight-card__desc { color: var(--ns-text-muted); font-size: 14px; margin: 0 24px 24px; }

.ns-email-strip { background: var(--ns-navy); border-radius: var(--ns-radius-lg); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: var(--ns-white); flex-wrap: wrap; }
.ns-email-strip__text h3 { margin: 0 0 6px; font-size: 24px; }
.ns-email-strip__text p { margin: 0; color: var(--ns-text-muted-light); }
.ns-email-strip__form { display: flex; gap: 12px; flex: 0 1 420px; }
.ns-email-strip__form input { flex: 1 1 auto; padding: 14px 18px; border-radius: var(--ns-radius-pill); border: none; background: var(--ns-white); }
.ns-email-strip__form .ns-btn { flex: 0 0 auto; }

@media (max-width: 1199px) {
	.ns-insight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 809px) {
	.ns-insight-grid { grid-template-columns: 1fr; }
	.ns-email-strip { flex-direction: column; align-items: stretch; }
	.ns-email-strip__form { flex-direction: column; }
}

/* -------------------------------------------------------------------------
   FAQs
   ---------------------------------------------------------------------- */
.ns-faqs__heading { max-width: 640px; margin-bottom: 40px; font-size: 34px; line-height: 1.3; }
.ns-accordion { display: flex; flex-direction: column; gap: 16px; }
.ns-accordion__item { background: var(--ns-navy); border-radius: var(--ns-radius); overflow: hidden; }
.ns-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; color: var(--ns-white); text-align: left; }
.ns-accordion__question { font-size: 18px; font-weight: 600; }
.ns-accordion__icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .2s ease; }
.ns-accordion__trigger[aria-expanded="true"] .ns-accordion__icon { transform: rotate(45deg); background: var(--ns-amber); color: var(--ns-navy); }
.ns-accordion__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ns-accordion__panel p { padding: 0 28px 24px; margin: 0; color: var(--ns-text-muted-light); font-size: 15px; line-height: 1.7; }

@media (max-width: 809px) {
	.ns-faqs__heading { font-size: 26px; }
	.ns-accordion__question { font-size: 16px; }
}

/* -------------------------------------------------------------------------
   Contact
   ---------------------------------------------------------------------- */
.ns-contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.ns-contact__heading { font-size: 38px; margin-bottom: 16px; }
.ns-contact__sub { color: var(--ns-text-muted-light); margin-bottom: 40px; max-width: 460px; }
.ns-contact__details-heading { font-weight: 700; margin-bottom: 8px; }
.ns-contact__details p { margin: 0 0 6px; color: var(--ns-text-muted-light); }
.ns-contact__details a { color: var(--ns-amber); }

.ns-form { display: flex; flex-direction: column; gap: 20px; }
.ns-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ns-field { display: flex; flex-direction: column; gap: 8px; }
.ns-field label { color: var(--ns-white); font-size: 14px; font-weight: 600; }
.ns-field input, .ns-field textarea {
	background: var(--ns-silver); border: none; border-radius: 10px;
	padding: 14px 16px; color: var(--ns-navy); font-size: 15px; resize: vertical;
}
.ns-field input:focus, .ns-field textarea:focus { outline: 2px solid var(--ns-amber); }

@media (max-width: 1199px) {
	.ns-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 809px) {
	.ns-form__row { grid-template-columns: 1fr; }
	.ns-contact__heading { font-size: 28px; }
}

/* -------------------------------------------------------------------------
   Rich text (Privacy Policy / One-Sheets pages)
   ---------------------------------------------------------------------- */
.ns-richtext-section__title { margin-bottom: 24px; }
.ns-richtext { max-width: 760px; }
.ns-richtext h2 { font-size: 30px; margin-top: 1.6em; }
.ns-richtext h3 { font-size: 22px; margin-top: 1.4em; }
.ns-richtext p, .ns-richtext li { color: inherit; font-size: 16px; line-height: 1.8; }
.ns-richtext a { color: var(--ns-emerald); text-decoration: underline; }
.ns-bg-navy .ns-richtext a { color: var(--ns-amber); }
.ns-richtext ul, .ns-richtext ol { padding-left: 1.4em; margin-bottom: 1em; }

/* -------------------------------------------------------------------------
   Generic page/blog templates
   ---------------------------------------------------------------------- */
.ns-generic-page { padding: 160px 0 100px; }
.ns-generic-page h1 { font-size: 48px; margin-bottom: 24px; }
.ns-post-list { display: flex; flex-direction: column; gap: 40px; }
.ns-post-list article { border-bottom: 1px solid rgba(13,41,59,.1); padding-bottom: 32px; }
.ns-post-list h2 a { color: var(--ns-navy); }
.ns-post-list h2 a:hover { color: var(--ns-emerald); }
.ns-pagination { display: flex; gap: 12px; margin-top: 40px; }
.ns-pagination a, .ns-pagination span { padding: 8px 16px; border-radius: var(--ns-radius-pill); background: var(--ns-off-white-2); }
.ns-search-form { display: flex; gap: 12px; margin-bottom: 40px; }
.ns-search-form input[type="search"] { flex: 1 1 auto; padding: 14px 18px; border-radius: var(--ns-radius-pill); border: 1px solid rgba(13,41,59,.2); }
.ns-404 { text-align: center; padding: 200px 0 140px; }
.ns-404 h1 { font-size: 96px; color: var(--ns-emerald); margin-bottom: 8px; }

/* -------------------------------------------------------------------------
   Responsive container / global breakpoints
   ---------------------------------------------------------------------- */
@media (max-width: 1199px) {
	:root {
		--ns-h1-size: 52px;
		--ns-h2-size: 32px;
	}
	.ns-section { padding: 72px 0; }
}
@media (max-width: 809px) {
	:root {
		--ns-h1-size: 38px;
		--ns-h2-size: 28px;
		--ns-body-size: 17px;
	}
	.ns-container { padding: 0 20px; }
	.ns-section { padding: 56px 0; }
	.ns-header__inner { padding: 0 20px; }
}
