/* =========================================================================
   NolaKey 2026 — main stylesheet
   Design system: deep navy + amber accent (locksmith trust + NOLA warmth)
   Mobile-first, container-based, prefers-reduced-motion safe.
   ========================================================================= */

:root {
	/* Louisiana Locksmith brand palette — red + royal blue + white + black.
	   Color-picked from the official logo. Fine-tune these two hexes against
	   any printed brand guide later if needed. */
	--nk-red:         #d81e2c;   /* "LOUISIANA" red — primary CTA */
	--nk-red-dark:    #a8121c;   /* hover state */
	--nk-blue:        #1f3da9;   /* "LOCKSMITH" royal blue — structural */
	--nk-blue-dark:   #15296f;   /* hover state */
	--nk-black:       #0a0a0a;   /* hero / footer / dark sections */
	--nk-black-2:     #1a1a1a;

	/* Legacy aliases used throughout the theme — mapped onto the brand colors.
	   This lets us keep existing class names intact. */
	--nk-navy:        var(--nk-blue);
	--nk-navy-2:      var(--nk-blue-dark);
	--nk-navy-deep:   var(--nk-black);
	--nk-amber:       var(--nk-red);
	--nk-amber-dark:  var(--nk-red-dark);

	--nk-cream:       #fbf8f3;
	--nk-bg:          #ffffff;
	--nk-bg-alt:      #f4f4f4;
	--nk-text:        #1a1a1a;
	--nk-text-muted:  #5a5a5a;
	--nk-border:      #e3e3e3;
	--nk-shadow:      0 6px 20px rgba(0, 0, 0, 0.08);
	--nk-shadow-lg:   0 14px 40px rgba(0, 0, 0, 0.16);
	--nk-radius:      14px;
	--nk-radius-sm:   8px;
	--nk-radius-lg:   22px;
	--nk-container:   1200px;
	--nk-container-narrow: 760px;
	--nk-gutter:      clamp(16px, 4vw, 32px);

	/* Type system: bold condensed display (Oswald) to echo the logo lettering,
	   Inter for everything else. */
	--nk-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--nk-font-display: "Oswald", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--nk-font-sans);
	font-size: 17px;
	line-height: 1.65;
	color: var(--nk-text);
	background: var(--nk-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg, video, canvas, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--nk-navy); text-decoration: underline; text-underline-offset: 3px; transition: color .15s ease; }
a:hover, a:focus { color: var(--nk-amber-dark); }
a:focus-visible { outline: 3px solid var(--nk-amber); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nk-font-display);
	color: var(--nk-blue);
	line-height: 1.1;
	margin: 0 0 .5em;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}
h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	text-transform: none; /* keep subheads in mixed case for readability */
	letter-spacing: 0;
}
h4 { font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
h5, h6 { text-transform: none; letter-spacing: 0; }

p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1.2em; }
ul.plain-list, ol.plain-list { list-style: none; padding: 0; }
ul.plain-list li, ol.plain-list li { margin-bottom: .35em; }

blockquote {
	margin: 0 0 1.2em;
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--nk-amber);
	background: var(--nk-bg-alt);
	border-radius: var(--nk-radius-sm);
	font-style: italic;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: -9999px;
	background: var(--nk-amber);
	color: var(--nk-navy);
	padding: .6rem 1rem;
	z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------------- Layout helpers ---------------- */
.container { width: 100%; max-width: var(--nk-container); margin: 0 auto; padding: 0 var(--nk-gutter); }
.container--narrow { max-width: var(--nk-container-narrow); }
.text-center { text-align: center; }

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--alt { background: var(--nk-bg-alt); }

/* Watermark background — used on "Why NolaKey".
   Image sits behind a soft white veil. Stronger than a typical watermark so
   the imagery is actually visible, while individual copy blocks sit on
   solid surfaces for legibility. */
.section--watermark {
	position: relative;
	background-color: #ececec;
	overflow: hidden;
	isolation: isolate;
}
.section--watermark::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("https://nolakey.com/images/images-blue-key.jpg");
	background-size: cover;
	background-position: center 30%;
	opacity: 0.32;
	z-index: -2;
}
.section--watermark::after {
	/* Subtle veil — softens the image without washing it out */
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.65) 100%);
	z-index: -1;
	pointer-events: none;
}
.section--watermark > .container { position: relative; z-index: 1; }

/* When the watermark is on, the copy block + stats sit on cards so they read */
.section--watermark .two-col > div:first-child {
	background: rgba(255,255,255,0.88);
	border-radius: var(--nk-radius);
	padding: clamp(20px, 3vw, 36px);
	backdrop-filter: blur(2px);
	box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.section__header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__header .eyebrow { margin-bottom: .5rem; }

.eyebrow {
	display: inline-block;
	text-transform: uppercase;
	font-size: .78rem;
	letter-spacing: .14em;
	font-weight: 700;
	color: var(--nk-amber-dark);
	margin: 0 0 .8em;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}
@media (min-width: 880px) {
	.two-col { grid-template-columns: 1fr 1fr; }
}

/* ---------------- Buttons ---------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .55em;
	padding: .85rem 1.4rem;
	border-radius: 999px;
	border: 2px solid transparent;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
	will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--cta {
	background: var(--nk-red);
	color: #fff;
	box-shadow: 0 8px 24px rgba(200, 22, 29, 0.35);
}
.btn--cta:hover, .btn--cta:focus { background: var(--nk-amber-dark); color: #fff; }
.btn--primary {
	background: var(--nk-navy);
	color: #fff;
}
.btn--primary:hover, .btn--primary:focus { background: var(--nk-navy-2); color: #fff; }
.btn--ghost {
	background: transparent;
	color: var(--nk-navy);
	border-color: var(--nk-navy);
}
.btn--ghost:hover, .btn--ghost:focus { background: var(--nk-navy); color: #fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------------- Top bar ---------------- */
.top-bar {
	background: var(--nk-navy-deep);
	color: #d3dceb;
	font-size: .88rem;
}
.top-bar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	justify-content: space-between;
	align-items: center;
	padding-top: .55rem;
	padding-bottom: .55rem;
}
.top-bar a { color: #fff; text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: var(--nk-red); }
.top-bar__right {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}
@media (max-width: 640px) {
	.top-bar__msg { display: none; }
	.top-bar__inner { justify-content: center; }
	.top-bar__right { gap: .6rem; flex-wrap: wrap; justify-content: center; }
}

/* ---------------- Social icons ---------------- */
.social-icons {
	display: inline-flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 8px;
}
.social-icons li { margin: 0; }
.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	transition: background .15s ease, color .15s ease, transform .15s ease;
	text-decoration: none;
}
.social-icons a svg {
	width: 16px;
	height: 16px;
	display: block;
}
.social-icons a:hover,
.social-icons a:focus-visible {
	background: var(--nk-red);
	color: #fff;
	transform: translateY(-1px);
}

/* Brand-colored social icons (Facebook, Google, Instagram) — white circle
   background so the brand colors inside the SVG show through cleanly */
.social-icons__link--brand {
	background: #fff !important;
}
.social-icons__link--brand:hover,
.social-icons__link--brand:focus-visible {
	background: #fff !important;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.social-icons--topbar a { width: 26px; height: 26px; }
.social-icons--topbar a svg { width: 14px; height: 14px; }
.social-icons--footer { margin-top: 1rem; }

/* Google Business inline link in footer */
.footer-google-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	padding: 6px 12px;
	font-size: .82rem;
	font-weight: 600;
	color: #fff !important;
	text-decoration: none;
}
.footer-google-link:hover { background: rgba(255,255,255,0.12); color: var(--nk-red) !important; }
.footer-google-link svg { flex-shrink: 0; }

/* ---------------- Header ---------------- */
.site-header {
	background: #fff;
	box-shadow: var(--nk-shadow);
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 14px;
	padding-bottom: 14px;
}
.site-branding .site-title {
	display: inline-block;
	font-family: var(--nk-font-display);
	font-weight: 900;
	font-size: 1.45rem;
	color: var(--nk-navy);
	text-decoration: none;
	letter-spacing: -0.01em;
}
.site-branding .site-description { font-size: .8rem; color: var(--nk-text-muted); margin: 0; }

/* Logo sizing — applies to both WP Customizer custom logo AND fallback image */
.custom-logo-link img,
.site-branding__logo {
	display: block;
	height: auto;
	width: auto;
	max-height: 64px;
	max-width: 280px;
	object-fit: contain;
}
.site-branding__fallback { display: inline-block; line-height: 0; }
@media (max-width: 480px) {
	.custom-logo-link img,
	.site-branding__logo {
		max-height: 48px;
		max-width: 200px;
	}
}

/* ---------------- Primary nav ---------------- */
.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 1.4rem;
}
.primary-nav__list > li { position: relative; }
.primary-nav__list a {
	color: var(--nk-blue);
	text-decoration: none;
	font-weight: 600;
	padding: .4rem .1rem;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current_page_item > a {
	color: var(--nk-red);
}
.primary-nav__list .current-menu-item > a::after,
.primary-nav__list .current_page_item > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
	height: 3px; background: var(--nk-red); border-radius: 2px;
}

/* Dropdown caret for menu items with children */
.primary-nav__list .menu-item-has-children > a::before {
	content: "";
	display: inline-block;
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 6px;
	order: 2;
	transition: transform .15s ease;
}
.primary-nav__list .menu-item-has-children:hover > a::before { transform: rotate(180deg); }

/* The dropdown panel itself */
.primary-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: -18px;
	min-width: 280px;
	background: #fff;
	border-radius: var(--nk-radius);
	box-shadow: var(--nk-shadow-lg);
	border: 1px solid var(--nk-border);
	list-style: none;
	padding: 10px 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 100;
}
.primary-nav__list .sub-menu::before {
	/* Invisible bridge so cursor can travel from parent to dropdown */
	content: "";
	position: absolute;
	top: -14px; left: 0; right: 0;
	height: 14px;
}
.primary-nav__list > li:hover > .sub-menu,
.primary-nav__list > li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav__list .sub-menu li { margin: 0; }
.primary-nav__list .sub-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	font-size: .96rem;
	color: var(--nk-text);
	white-space: nowrap;
	transition: padding-left .15s ease, color .15s ease, background .15s ease;
}
.primary-nav__list .sub-menu a::after { display: none !important; }
.primary-nav__list .sub-menu a:hover {
	background: var(--nk-bg-alt);
	color: var(--nk-red);
	padding-left: 24px;
}
.primary-nav__list .sub-menu .sub-menu-icon {
	width: 24px;
	display: inline-flex;
	justify-content: center;
	color: var(--nk-red);
	font-size: 1.05rem;
}

.primary-nav__cta { white-space: nowrap; }

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 12px;
	cursor: pointer;
}
.menu-toggle__bar {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--nk-navy);
	border-radius: 2px;
	margin: 5px 0;
	transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
	.menu-toggle { display: block; }
	.primary-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem var(--nk-gutter);
		border-top: 1px solid var(--nk-border);
		box-shadow: var(--nk-shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
	}
	.primary-nav.is-open { max-height: 80vh; overflow-y: auto; }
	.primary-nav__list { flex-direction: column; gap: 0; }
	.primary-nav__list > li { border-bottom: 1px solid var(--nk-border); }
	.primary-nav__list a { display: block; padding: .9rem 0; }
	.primary-nav__cta { margin: 1rem 0 0; justify-content: center; }

	/* Sub-menu: always visible on mobile, indented */
	.primary-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: transparent;
		padding: 0 0 .5rem .8rem;
		min-width: 0;
	}
	.primary-nav__list .sub-menu a { padding: .55rem 0; font-size: .92rem; }
	.primary-nav__list .sub-menu a:hover { padding-left: 8px; background: transparent; }
	.primary-nav__list .menu-item-has-children > a::before { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
	/* Stacked: dark gradient overlay (left-strong for legibility) → red/blue tint → image */
	background:
		linear-gradient(
			to right,
			rgba(10, 10, 10, 0.92) 0%,
			rgba(10, 10, 10, 0.78) 45%,
			rgba(10, 10, 10, 0.55) 75%,
			rgba(10, 10, 10, 0.35) 100%
		),
		radial-gradient(circle at 85% 0%, rgba(216, 30, 44, 0.30), transparent 55%),
		radial-gradient(circle at 0% 100%, rgba(31, 61, 169, 0.18), transparent 55%),
		var(--nk-hero-image, url("https://nolakey.com/images/images-car-logos.jpg")) center/cover no-repeat,
		linear-gradient(135deg, var(--nk-black) 0%, #161616 55%, var(--nk-black-2) 100%);
	color: #fff;
	padding: clamp(56px, 8vw, 110px) 0;
	overflow: hidden;
	position: relative;
}
.hero::after {
	/* Subtle bottom fade so the hero blends into the content section */
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
	pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero__inner {
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 900px) {
	.hero__inner { grid-template-columns: 1.2fr 1fr; }
}
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--nk-amber); }
.hero__lede { font-size: 1.15rem; color: #d3dceb; max-width: 60ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0; }
.hero__badges {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: .55rem .8rem;
}
.hero__badges li {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	padding: .35rem .7rem;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
}
.hero__media { display: flex; justify-content: center; }
.hero__keycard {
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--nk-radius-lg);
	padding: 2rem;
	max-width: 360px;
	text-align: center;
	box-shadow: var(--nk-shadow-lg);
}
.hero__keycard-icon { font-size: 3rem; display: inline-block; margin-bottom: .3em; filter: drop-shadow(0 6px 12px rgba(0,0,0,.35)); }
.hero__keycard strong { display: block; color: var(--nk-amber); font-size: 1.4rem; margin-bottom: .3em; }
.hero__keycard p { color: #e2e8f0; margin: 0; }

/* ---------------- Page hero ---------------- */
.page-hero {
	/* Templates pass --nk-page-hero-img: url('...') inline to swap the image */
	background:
		linear-gradient(
			to right,
			rgba(10,10,10,0.92) 0%,
			rgba(10,10,10,0.80) 45%,
			rgba(10,10,10,0.55) 75%,
			rgba(10,10,10,0.35) 100%
		),
		radial-gradient(circle at 90% 50%, rgba(216, 30, 44, 0.25), transparent 65%),
		var(--nk-page-hero-img, none) center/cover no-repeat,
		linear-gradient(135deg, var(--nk-black), #141414);
	color: #fff;
	padding: clamp(60px, 8vw, 120px) 0 clamp(50px, 6vw, 80px);
	position: relative;
	overflow: hidden;
}
.page-hero > .container { position: relative; z-index: 2; }

/* Breadcrumbs inside the page-hero */
.breadcrumbs { margin: 0 0 1rem; }
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: .82rem;
	color: rgba(255,255,255,0.7);
}
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
}
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs__sep { color: rgba(255,255,255,0.4); margin: 0 4px; }
.breadcrumbs [aria-current="page"] { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--nk-amber); }
.page-hero__tagline { color: #cfd8e6; font-size: 1.1rem; max-width: 65ch; }
.page-hero--narrow { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero--post .eyebrow { margin-bottom: .8rem; }

/* ---------------- Trust bar ---------------- */
.trust-bar {
	background: #fff;
	padding: 28px 0 32px;
	border-bottom: 1px solid var(--nk-border);
}
.trust-bar__label {
	text-align: center;
	margin: 0 0 18px;
	color: var(--nk-text-muted);
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 600;
}
.trust-bar__items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px 24px;
	align-items: center;
}
@media (min-width: 768px) {
	.trust-bar__items {
		grid-template-columns: repeat(6, 1fr);
	}
}
.trust-bar__item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.trust-bar__icon { width: 36px; height: 36px; flex-shrink: 0; }
.trust-bar__icon--lg { width: 42px; height: 42px; }
.trust-bar__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.trust-bar__copy strong {
	font-size: .92rem;
	color: var(--nk-text);
	line-height: 1.2;
}
.trust-bar__copy span {
	font-size: .74rem;
	color: var(--nk-text-muted);
	line-height: 1.3;
}
.trust-bar__badge {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: "Inter", system-ui, sans-serif;
	line-height: 1;
}
.trust-bar__badge--bbb {
	background: #1F3DA9;
	color: #fff;
	gap: 1px;
}
.trust-bar__badge--bbb .trust-bar__badge-mark { font-size: .68rem; font-weight: 700; letter-spacing: .05em; }
.trust-bar__badge--bbb .trust-bar__badge-stars { font-size: 1rem; font-weight: 800; }
.trust-bar__badge--aloa {
	background: var(--nk-red);
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .04em;
}
.trust-bar__badge--years {
	background: var(--nk-black);
	color: var(--nk-red);
	gap: 0;
}
.trust-bar__badge--years strong { font-size: 1rem; font-weight: 800; color: #fff; }
.trust-bar__badge--years span { font-size: .55rem; font-weight: 700; letter-spacing: .1em; color: var(--nk-red); }

/* ---------------- Service grid (homepage + hub + cross-sell) ---------------- */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}
.service-grid--compact { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.service-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	padding: 1.6rem 1.4rem 1.4rem;
	text-decoration: none;
	color: var(--nk-text);
	box-shadow: var(--nk-shadow);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* Media variant — image-led cards used on the homepage */
.service-card--media {
	padding: 0;
	overflow: hidden;
}
.service-card--media .service-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: var(--nk-bg-alt);
	transition: transform .4s ease;
}
.service-card--media:hover .service-card__image,
.service-card--media:focus-visible .service-card__image {
	transform: scale(1.04);
}
.service-card--media .service-card__body {
	padding: 1.3rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	border-top: 4px solid var(--nk-red);
}
.service-card--media .service-card__title { margin-top: 0; }
.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-3px);
	box-shadow: var(--nk-shadow-lg);
	border-color: var(--nk-amber);
	color: var(--nk-text);
}
.service-card__icon {
	font-size: 2.4rem;
	margin-bottom: .4em;
	color: var(--nk-amber-dark);
}
.service-card__title { margin: 0 0 .45em; font-size: 1.2rem; color: var(--nk-blue); }
.service-card__desc { color: var(--nk-text-muted); font-size: .96rem; margin-bottom: 1rem; }
.service-card__cta {
	margin-top: auto;
	color: var(--nk-amber-dark);
	font-weight: 700;
	font-size: .95rem;
}

/* ---------------- Why / four-up ---------------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.check-list li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: .65em;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0; top: .4em;
	width: 18px; height: 18px;
	background: var(--nk-amber);
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4.5l-7 7L2.5 7.5' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4.5l-7 7L2.5 7.5' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.stat-stack {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.stat {
	background: #fff;
	border: 1px solid var(--nk-border);
	padding: 1.5rem 1.2rem;
	text-align: center;
	border-radius: var(--nk-radius);
	box-shadow: var(--nk-shadow);
}
.stat strong { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--nk-navy); font-weight: 900; line-height: 1; }
.stat span { display: block; font-size: .85rem; color: var(--nk-text-muted); margin-top: .35em; }

.four-up {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.four-up__item {
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	padding: 1.4rem;
	box-shadow: var(--nk-shadow);
}
.four-up__item h3 { color: var(--nk-navy); margin-top: 0; }

/* ---------------- Google reviews ---------------- */
.section__header--google { margin-bottom: 32px; }

.google-rating-banner {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2rem;
	padding: 14px 24px;
	background: #fff;
	border: 1px solid #dadce0;
	border-radius: var(--nk-radius);
	box-shadow: 0 2px 6px rgba(60,64,67,.08);
	margin-bottom: 1.4rem;
}
.google-rating-banner__logo { height: 28px; width: auto; }
.google-rating-banner__score {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.google-rating-banner__num {
	font-family: "Inter", system-ui, sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #202124;
	line-height: 1;
}
.google-rating-banner__stars {
	display: inline-flex;
	gap: 1px;
}
.google-rating-banner__stars svg {
	width: 16px;
	height: 16px;
}
.google-rating-banner__count {
	font-size: .78rem;
	color: #5f6368;
}
.google-rating-banner__cta {
	font-size: .9rem;
	font-weight: 600;
	color: #1A73E8;
	text-decoration: none;
}
.google-rating-banner__cta:hover { text-decoration: underline; color: #1A73E8; }

.google-review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.google-review {
	background: #fff;
	border: 1px solid #dadce0;
	border-radius: var(--nk-radius);
	padding: 1.4rem;
	box-shadow: 0 2px 6px rgba(60,64,67,.08);
	transition: box-shadow .15s ease, transform .15s ease;
	font-family: "Inter", "Google Sans", system-ui, sans-serif;
}
.google-review:hover { box-shadow: 0 6px 18px rgba(60,64,67,.14); transform: translateY(-2px); }

.google-review__head {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}
.google-review__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .02em;
	flex-shrink: 0;
}
.google-review__id { display: flex; flex-direction: column; min-width: 0; }
.google-review__name {
	font-family: "Inter", "Google Sans", system-ui, sans-serif;
	font-size: .98rem;
	font-weight: 600;
	color: #202124;
}
.google-review__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .78rem;
	color: #5f6368;
	margin-top: 2px;
}
.google-review__g {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
.google-review__stars {
	display: flex;
	gap: 1px;
	margin-bottom: 10px;
}
.google-review__stars svg {
	width: 16px;
	height: 16px;
}
.google-review__text {
	font-size: .94rem;
	line-height: 1.55;
	color: #3c4043;
	margin: 0;
	font-style: normal;
}

/* ---------------- Blog cards ---------------- */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.post-card {
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	overflow: hidden;
	box-shadow: var(--nk-shadow);
	display: flex;
	flex-direction: column;
	transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: var(--nk-shadow-lg); }
.post-card__media img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { color: var(--nk-text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .4em; }
.post-card__title { font-size: 1.2rem; margin: 0 0 .55em; }
.post-card__title a { color: var(--nk-navy); text-decoration: none; }
.post-card__title a:hover { color: var(--nk-amber-dark); }
.post-card__excerpt { color: var(--nk-text-muted); font-size: .95rem; margin-bottom: 1rem; }
.post-card__more { margin-top: auto; color: var(--nk-amber-dark); font-weight: 700; text-decoration: none; }

/* ---------------- Service hero (landing pages) ---------------- */
.service-hero {
	/* Each service page sets --nk-service-hero-img inline so the photo
	   matches the service. Left-weighted dark gradient keeps text legible. */
	background:
		linear-gradient(
			to right,
			rgba(10,10,10,0.94) 0%,
			rgba(10,10,10,0.80) 40%,
			rgba(10,10,10,0.50) 70%,
			rgba(10,10,10,0.30) 100%
		),
		radial-gradient(circle at 95% 0%, rgba(216, 30, 44, 0.28), transparent 50%),
		radial-gradient(circle at 0% 100%, rgba(31, 61, 169, 0.18), transparent 55%),
		var(--nk-service-hero-img, none) center/cover no-repeat,
		linear-gradient(135deg, var(--nk-black) 0%, #141414 100%);
	color: #fff;
	padding: clamp(60px, 8vw, 110px) 0;
	position: relative;
	overflow: hidden;
}
.service-hero > .container { position: relative; z-index: 2; }
.service-hero__inner {
	display: grid;
	gap: clamp(24px, 5vw, 48px);
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 880px) {
	.service-hero__inner { grid-template-columns: 1.4fr 1fr; }
}
.service-hero h1 { color: #fff; }
.service-hero .eyebrow { color: var(--nk-amber); }
.service-hero__lede { color: #cfd8e6; font-size: 1.15rem; max-width: 60ch; }
.service-hero__icon {
	font-size: clamp(6rem, 12vw, 10rem);
	text-align: center;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--nk-radius-lg);
	padding: 1.5rem;
}

/* ---------------- Article wrappers (vertical breathing room) ---------------- */
.page-article,
.post-article,
.service-article,
.faq-article {
	padding: clamp(48px, 7vw, 88px) 0;
}

/* ---------------- Service article ---------------- */
.service-article__media { margin: 0 0 2rem; border-radius: var(--nk-radius); overflow: hidden; box-shadow: var(--nk-shadow); }

/* Two-column layout: main content left, sticky sidebar right */
.service-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}
@media (min-width: 980px) {
	.service-layout { grid-template-columns: minmax(0, 1fr) 320px; }
}
.service-layout__main { min-width: 0; }
.service-layout__aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
@media (min-width: 980px) {
	.service-layout__aside {
		position: sticky;
		top: 100px;          /* below sticky header */
		max-height: calc(100vh - 110px);
		overflow-y: auto;
	}
}

.aside-card {
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	padding: 1.4rem;
	box-shadow: var(--nk-shadow);
}
.aside-card__title {
	margin: 0 0 .8em;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--nk-blue);
}
.aside-card__footer {
	margin: 1rem 0 0;
	font-size: .9rem;
}
.aside-card__footer--small { font-size: .82rem; color: var(--nk-text-muted); }
.aside-card__footer a {
	color: var(--nk-red);
	font-weight: 700;
	text-decoration: none;
}
.aside-card__footer a:hover { color: var(--nk-red-dark); }

/* Red-bg CTA aside card */
.aside-card--cta {
	background: var(--nk-red);
	color: #fff;
	border-color: var(--nk-red);
}
.aside-card--cta h3 { color: #fff; margin: 0 0 .4em; }
.aside-card--cta p { color: #fde8ea; }
.aside-card--cta .eyebrow--light { color: #ffd5d8; }
.aside-card--cta .btn--cta {
	background: #fff; color: var(--nk-red); box-shadow: 0 6px 16px rgba(0,0,0,.15);
}
.aside-card--cta .btn--cta:hover { background: var(--nk-black); color: #fff; }
.aside-card--cta .btn--ghost-light {
	background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.aside-card--cta .btn--ghost-light:hover { background: #fff; color: var(--nk-red); border-color: #fff; }

.btn--block { display: flex; width: 100%; justify-content: center; margin: 8px 0 0; }

/* List of other services in sidebar */
.aside-services {
	list-style: none;
	padding: 0;
	margin: 0;
}
.aside-services li { border-top: 1px solid var(--nk-border); }
.aside-services li:first-child { border-top: 0; }
.aside-services a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: .7rem 0;
	color: var(--nk-text);
	text-decoration: none;
	font-weight: 600;
	font-size: .96rem;
	transition: color .12s ease, padding .12s ease;
}
.aside-services a:hover {
	color: var(--nk-red);
	padding-left: 4px;
}
.aside-services__icon {
	flex: 0 0 auto;
	font-size: 1.2rem;
	width: 1.6em;
	text-align: center;
}
.aside-services__name { flex: 1; }
.aside-services__arrow { color: var(--nk-red); font-weight: 700; }

/* Service area chips */
.aside-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 .5rem;
}
.aside-card__chips span {
	display: inline-block;
	background: var(--nk-bg-alt);
	color: var(--nk-text);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 600;
}

.aside-card--area .aside-card__title { color: var(--nk-red); }

/* Linked chip variant — used in location-page sidebar where each city links
   to its own location landing page */
.aside-card__chips a.chip-link {
	display: inline-flex;
	align-items: center;
	background: var(--nk-bg-alt);
	color: var(--nk-text);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}
.aside-card__chips a.chip-link:hover {
	background: var(--nk-red);
	color: #fff;
}

/* ---------------- About page modules ---------------- */
.about-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 4vw, 40px);
	align-items: start;
	margin: 0 0 clamp(32px, 5vw, 56px);
}
@media (min-width: 880px) {
	.about-intro { grid-template-columns: 1fr 1.4fr; }
}
.about-intro__media img {
	width: 100%;
	height: auto;
	border-radius: var(--nk-radius);
	box-shadow: var(--nk-shadow);
}
.about-intro__copy h3 {
	margin-top: 0;
	color: var(--nk-text);
	text-transform: none;
	font-family: var(--nk-font-sans);
	font-weight: 700;
	font-size: 1.2rem;
}

/* Equipment thumbnail strip — blue band like the old site */
.about-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin: 0 -1rem clamp(40px, 6vw, 64px);
	padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 28px);
	background: linear-gradient(135deg, var(--nk-blue), var(--nk-blue-dark));
	border-radius: var(--nk-radius);
}
@media (max-width: 700px) {
	.about-strip { grid-template-columns: repeat(2, 1fr); }
	.about-strip { margin-left: 0; margin-right: 0; }
}
.about-strip__item {
	display: block;
	overflow: hidden;
	border-radius: var(--nk-radius-sm);
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	transition: transform .2s ease, box-shadow .2s ease;
	background: #fff;
}
.about-strip__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.about-strip__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
}

/* Skill set + intro layout in the why section */
.about-skills {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 5vw, 48px);
	margin: 0 0 clamp(32px, 5vw, 56px);
	align-items: start;
}
@media (min-width: 880px) {
	.about-skills { grid-template-columns: 1.1fr 1fr; }
}
.about-skills__copy h3,
.about-skills__bars h3 {
	margin-top: 0;
	font-family: var(--nk-font-sans);
	text-transform: none;
	font-size: 1.4rem;
	color: var(--nk-text);
	font-weight: 700;
}
.about-skills .button-primary {
	display: inline-block;
	background: var(--nk-red);
	color: #fff;
	padding: .85rem 1.4rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s ease;
}
.about-skills .button-primary:hover { background: var(--nk-red-dark); }

.skill-bar {
	margin: 0 0 1rem;
}
.skill-bar__label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 0 0 6px;
	font-size: .9rem;
	color: var(--nk-text);
}
.skill-bar__label strong {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: .85rem;
}
.skill-bar__label span {
	color: var(--nk-red);
	font-weight: 700;
	font-size: .85rem;
}
.skill-bar__track {
	height: 10px;
	background: var(--nk-bg-alt);
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid var(--nk-border);
}
.skill-bar__fill {
	height: 100%;
	background: linear-gradient(90deg, var(--nk-blue) 0%, var(--nk-red) 100%);
	border-radius: 999px;
	transition: width 1.2s ease;
}

/* ---------------- Prose content ---------------- */
.prose { font-size: 1.06rem; line-height: 1.75; color: var(--nk-text); }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 2em; }
.prose ul, .prose ol { margin-bottom: 1.4em; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--nk-radius-sm); margin: 1.5em 0; }
.prose blockquote { font-size: 1.1rem; }
.prose a { color: var(--nk-amber-dark); }
.prose hr { border: 0; border-top: 1px solid var(--nk-border); margin: 2.5em 0; }

/* ---------------- FAQ accordion (built from H3 + paragraph) ---------------- */
.faq-content details.faq-item {
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	background: #fff;
	margin: 0 0 14px;
	box-shadow: var(--nk-shadow);
	overflow: hidden;
}
.faq-content details.faq-item > summary {
	cursor: pointer;
	padding: 1.1rem 1.3rem;
	font-weight: 700;
	color: var(--nk-navy);
	font-size: 1.08rem;
	list-style: none;
	position: relative;
	padding-right: 3rem;
}
.faq-content details.faq-item > summary::-webkit-details-marker { display: none; }
.faq-content details.faq-item > summary::after {
	content: "+";
	position: absolute;
	right: 1.3rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: var(--nk-amber-dark);
	font-weight: 400;
	transition: transform .2s ease;
}
.faq-content details.faq-item[open] > summary::after { content: "\2212"; }
.faq-content details.faq-item > .faq-answer {
	padding: 0 1.3rem 1.3rem;
	color: var(--nk-text);
}
.faq-content details.faq-item > .faq-answer p:last-child { margin-bottom: 0; }
.faq-content h2 { margin-top: 2.2em; }
.faq-cta {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--nk-bg-alt);
	border-radius: var(--nk-radius);
	text-align: center;
}

/* ---------------- Map embed ---------------- */
.map-embed {
	border-radius: var(--nk-radius);
	overflow: hidden;
	box-shadow: var(--nk-shadow);
}

/* ---------------- Pre-footer CTA ---------------- */
.pre-footer-cta {
	background: var(--nk-red);
	color: #fff;
	padding: clamp(40px, 6vw, 70px) 0;
}
.pre-footer-cta h2 { color: #fff; margin: 0 0 .3em; }
.pre-footer-cta p { margin: 0; color: #ffe3e3; max-width: 60ch; }
.pre-footer-cta__inner {
	display: grid;
	gap: 1.6rem;
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 880px) {
	.pre-footer-cta__inner { grid-template-columns: 1.4fr auto; }
}
.pre-footer-cta__buttons { display: flex; flex-wrap: wrap; gap: .8rem; }
.pre-footer-cta .btn--cta { background: #fff; color: var(--nk-red); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.pre-footer-cta .btn--cta:hover { background: #000; color: #fff; }
.pre-footer-cta .btn--ghost { border-color: #fff; color: #fff; }
.pre-footer-cta .btn--ghost:hover { background: #fff; color: var(--nk-red); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--nk-navy-deep); color: #b8c2d1; padding-top: clamp(48px, 6vw, 72px); }
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1em; }
.site-footer a { color: #c9d3e1; text-decoration: none; }
.site-footer a:hover { color: var(--nk-amber); }
.site-footer__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__legal {
	border-top: 1px solid rgba(255,255,255,.08);
	margin-top: 32px;
	padding: 20px 0;
	font-size: .82rem;
	color: #94a0b3;
	text-align: center;
}

/* ---------------- Sticky call bar (mobile) ---------------- */
.call-bar {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	display: flex;
	background: var(--nk-navy-deep);
	z-index: 60;
	box-shadow: 0 -6px 18px rgba(0,0,0,.25);
}
.call-bar__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	padding: 1rem .8rem;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: .98rem;
	background: var(--nk-amber);
	color: var(--nk-navy-deep);
	border: 0;
}
.call-bar__btn--alt { background: var(--nk-navy); color: #fff; }
.call-bar__btn:hover { filter: brightness(1.08); }
@media (min-width: 768px) {
	.call-bar { display: none; }
}
body { padding-bottom: 0; }
@media (max-width: 767px) { body { padding-bottom: 64px; } }

/* ---------------- Content with sidebar ---------------- */
.content-with-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 5vw, 56px);
	padding: clamp(40px, 6vw, 80px) 0;
}
@media (min-width: 980px) {
	.content-with-sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
}
.sidebar .widget {
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius);
	padding: 1.4rem;
	margin-bottom: 24px;
	box-shadow: var(--nk-shadow);
}
.sidebar .widget-title { margin-top: 0; font-size: 1.1rem; }

/* ---------------- Post nav ---------------- */
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 2.5rem 0;
}
.post-nav a {
	display: block;
	padding: 1rem;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius-sm);
	text-decoration: none;
	color: var(--nk-navy);
	background: #fff;
	font-weight: 600;
}
.post-nav a:hover { border-color: var(--nk-amber); }
.post-nav__next { text-align: right; }

/* ---------------- Pagination ---------------- */
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 2.5rem 0; }
.nav-links .page-numbers {
	display: inline-block;
	padding: .6rem .9rem;
	background: #fff;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius-sm);
	text-decoration: none;
	color: var(--nk-navy);
	font-weight: 600;
}
.nav-links .page-numbers.current { background: var(--nk-navy); color: #fff; border-color: var(--nk-navy); }

/* ---------------- Comments ---------------- */
.comments-area { margin-top: 3rem; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { background: #fff; border: 1px solid var(--nk-border); border-radius: var(--nk-radius-sm); padding: 1.2rem; margin-bottom: 16px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: .75rem .9rem;
	border: 1px solid var(--nk-border);
	border-radius: var(--nk-radius-sm);
	font: inherit;
}
.comment-form label { display: block; font-weight: 600; margin: .6rem 0 .3rem; }

/* ---------------- Search form ---------------- */
.search-form { display: flex; gap: 8px; margin-bottom: 1.5rem; }
.search-form input[type="search"] { flex: 1; padding: .75rem .9rem; border: 1px solid var(--nk-border); border-radius: var(--nk-radius-sm); font: inherit; }

/* ---------------- Utility helpers ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
