@charset "UTF-8";
/* ==========================================================================
   Due North Equity 2026 — design system
   Navy / gold / cream. Editorial serif headings, Inter body.
   Boxy and structured: square corners, subtle borders, minimal shadow.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
	/* Brand palette */
	--dn-navy-950: #001b38;
	--dn-navy-900: #00254a;
	--dn-navy-800: #07375f;
	--dn-blue:     #0069a8;
	--dn-cyan:     #00b5df;
	--dn-gold:     #f4b72e;
	--dn-gold-dark:#d99b08;
	--dn-cream:    #f5f0e7;
	--dn-off-white:#faf9f7;
	--dn-slate:    #5d7181;  /* WCAG AA: 5.07:1 with white */
	--dn-text:     #142a42;
	--dn-muted:    #5f6c78;
	--dn-border:   #d7dee6;
	--dn-white:    #ffffff;
	--dn-black:    #111820;

	/* Derived surfaces */
	--dn-navy-overlay: rgba(0, 27, 56, .74);
	--dn-navy-scrim:   linear-gradient(90deg, rgba(0,27,56,.92) 0%, rgba(0,27,56,.78) 42%, rgba(0,27,56,.35) 72%, rgba(0,27,56,.18) 100%);
	--dn-card-scrim:   linear-gradient(180deg, rgba(0,27,56,0) 0%, rgba(0,27,56,.55) 55%, rgba(0,27,56,.88) 100%);

	/* Type */
	--dn-font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
	--dn-font-body:    "Inter", Arial, Helvetica, sans-serif;

	--dn-h1:      clamp(1.875rem, 1.23rem + 2.05vw, 3.3rem);    /* 30 -> 53  (-20%) */
	--dn-h1-page: clamp(1.6875rem, 1.19rem + 1.68vw, 2.875rem); /* 27 -> 46  (-20%) */
	--dn-h2:      clamp(1.375rem, 1.03rem + 1.12vw, 2.1875rem); /* 22 -> 35  (-20%) */
	--dn-h3:      clamp(1.0625rem, 0.94rem + 0.42vw, 1.4375rem);/* 17 -> 23  (-18%) */
	--dn-body:    clamp(1rem, 0.97rem + 0.11vw, 1.0625rem);     /* 16 -> 17  (-10%, kept readable) */
	--dn-nav:     clamp(0.75rem, 0.68rem + 0.22vw, 0.875rem);   /* 12 -> 14 */
	--dn-btn:     clamp(0.75rem, 0.72rem + 0.09vw, 0.8125rem);  /* 12 -> 13  (-20%) */
	--dn-small:   0.8125rem;
	--dn-eyebrow: 0.6875rem;

	/* Layout */
	--dn-container: 1180px;
	--dn-gutter: clamp(1rem, 0.68rem + 1.15vw, 2.1rem);
	--dn-section-y: clamp(1.6rem, 0.88rem + 2.9vw, 4.8rem);   /* 26 -> 77  (-20%) */
	--dn-section-y-tight: clamp(1.4rem, 0.8rem + 2.4vw, 3.6rem);

	/* Components */
	--dn-radius: 2px;
	--dn-radius-card: 3px;
	--dn-shadow: 0 1px 3px rgba(0, 27, 56, .10);
	--dn-shadow-card: 0 2px 10px rgba(0, 27, 56, .09);
	--dn-header-h: 148px;
	--dn-focus: 3px solid var(--dn-gold);
	--dn-transition: 160ms ease;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	/* clip, never hidden — `hidden` breaks position:sticky on the header */
	overflow-x: clip;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	overflow-x: clip;
	margin: 0;
	background: var(--dn-white);
	color: var(--dn-text);
	font-family: var(--dn-font-body);
	font-size: var(--dn-body);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.dnh-menu-open { overflow: hidden; }

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
svg { fill: currentColor; }

/* Master-library icons are raster derivatives of the master artwork. They are
   sized by their container rules (below), not fluidly, and are pre-tinted
   navy / white / gold at build time rather than inheriting currentColor. */
img.dnh-i { flex: none; object-fit: contain; max-width: none; }

h1, h2, h3, h4 {
	font-family: var(--dn-font-display);
	color: var(--dn-navy-950);
	margin: 0 0 .6em;
	line-height: 1.18;
	font-weight: 700;
	text-wrap: balance;
}
h1 { font-size: var(--dn-h1); line-height: 1.1; }
h2 { font-size: var(--dn-h2); }
h3 { font-size: var(--dn-h3); line-height: 1.28; }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--dn-blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--dn-navy-900); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }

hr { border: 0; border-top: 1px solid var(--dn-border); margin: 2rem 0; }

/* Accessibility: visible focus everywhere */
:focus-visible { outline: var(--dn-focus); outline-offset: 2px; }
.dnh-on-dark :focus-visible,
.dnh-header :focus-visible { outline-color: var(--dn-gold); }

.dnh-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--dn-gold); color: var(--dn-navy-950);
	padding: .85rem 1.4rem; font-weight: 700; text-decoration: none;
}
.dnh-skip:focus { left: 0; }

.screen-reader-text {
	border: 0; clip-path: inset(50%); height: 1px; width: 1px;
	margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.dnh-wrap {
	width: 100%;
	max-width: var(--dn-container);
	margin-inline: auto;
	padding-inline: var(--dn-gutter);
}
.dnh-wrap--narrow { max-width: 860px; }

.dnh-section { padding-block: var(--dn-section-y); }
.dnh-section--tight { padding-block: var(--dn-section-y-tight); }
.dnh-section--cream { background: var(--dn-cream); }
.dnh-section--offwhite { background: var(--dn-off-white); }
.dnh-section--navy { background: var(--dn-navy-950); color: rgba(255,255,255,.88); }
.dnh-section--navy h2, .dnh-section--navy h3 { color: var(--dn-white); }
.dnh-section--slate { background: var(--dn-slate); color: var(--dn-white); }
.dnh-section--slate h2, .dnh-section--slate h3 { color: var(--dn-white); }

.dnh-section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(1.75rem, 1rem + 2vw, 3.25rem); }
.dnh-section__head p { color: var(--dn-muted); margin-bottom: 0; }
.dnh-section--navy .dnh-section__head p,
.dnh-section--slate .dnh-section__head p { color: var(--dn-white); }

/* Gold rule under a heading — the mockup's accent underline */
.dnh-rule { position: relative; display: inline-block; }
.dnh-rule::after {
	content: ""; position: absolute; left: 50%; transform: translateX(-50%);
	bottom: -.42em; width: 76px; height: 3px; background: var(--dn-gold);
}
.dnh-rule--left::after { left: 0; transform: none; }

.dnh-eyebrow {
	font-family: var(--dn-font-body); font-size: var(--dn-eyebrow);
	letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
	color: var(--dn-gold); margin: 0 0 .75rem;
}

/* --------------------------------------------------------------------------
   4. BUTTONS — flat solid, never gradients, square-ish
   -------------------------------------------------------------------------- */
.dnh-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	min-height: 40px; padding: .62rem 1.35rem;
	font-family: var(--dn-font-body); font-size: var(--dn-btn); font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase; text-align: center;
	text-decoration: none; border: 2px solid transparent; border-radius: var(--dn-radius);
	cursor: pointer; transition: background-color var(--dn-transition), color var(--dn-transition), border-color var(--dn-transition);
}
.dnh-btn--gold { background: var(--dn-gold); color: var(--dn-navy-950); border-color: var(--dn-gold); }
.dnh-btn--gold:hover { background: var(--dn-gold-dark); border-color: var(--dn-gold-dark); color: var(--dn-navy-950); }

.dnh-btn--navy { background: var(--dn-navy-950); color: var(--dn-white); border-color: var(--dn-navy-950); }
.dnh-btn--navy:hover { background: var(--dn-navy-800); border-color: var(--dn-navy-800); color: var(--dn-white); }

.dnh-btn--outline { background: transparent; color: var(--dn-navy-950); border-color: var(--dn-navy-950); }
.dnh-btn--outline:hover { background: var(--dn-navy-950); color: var(--dn-white); }

.dnh-btn--outline-light { background: transparent; color: var(--dn-white); border-color: rgba(255,255,255,.65); }
.dnh-btn--outline-light:hover { background: var(--dn-white); color: var(--dn-navy-950); border-color: var(--dn-white); }

.dnh-btn--block { width: 100%; }
.dnh-btn--lg { min-height: 46px; padding: .78rem 1.75rem; }

/* --------------------------------------------------------------------------
   5. HEADER — two-level, logo panel, gold call panel
   -------------------------------------------------------------------------- */
.dnh-header {
	position: sticky; top: 0; z-index: 200;
	background: var(--dn-navy-950);
	border-bottom: 3px solid var(--dn-gold);
}

.dnh-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	/* The logo spans both rows; the nav runs to the right edge beneath the
	   gold call panel, which is what keeps eight top-level items on one line. */
	grid-template-areas:
		"logo utility call"
		"logo nav     nav";
	align-items: stretch;
	width: 100%; max-width: 1600px; margin-inline: auto;
}

/* Approved white logo variant sits directly on the navy — no light panel, so
   the header reads edge to edge. (The full-colour mark is still used wherever
   the background is light.) */
.dnh-header__logo {
	grid-area: logo;
	display: flex; align-items: center; justify-content: flex-start;
	padding: .7rem clamp(1rem, .6rem + 1.4vw, 2.25rem);
	transition: padding var(--dn-transition);
}
.dnh-header__logo a { display: block; line-height: 0; }
.dnh-header__logo img {
	width: auto; height: clamp(84px, 60px + 3.5vw, 124px);
	transition: height var(--dn-transition);
}

.dnh-header__utility {
	grid-area: utility;
	display: flex; align-items: center; gap: clamp(1rem, .4rem + 1.6vw, 2.5rem);
	padding: .55rem clamp(1rem, .6rem + 1vw, 1.75rem);
	border-bottom: 1px solid rgba(255,255,255,.14);
	font-size: var(--dn-nav);
	color: rgba(255,255,255,.9);
	min-height: 46px;
}
.dnh-utility__item {
	display: inline-flex; align-items: center; gap: .5rem;
	color: rgba(255,255,255,.9); text-decoration: none; white-space: nowrap;
	/* WCAG 2.2 SC 2.5.8 target size minimum */
	min-height: 26px; padding-block: 2px;
}
.dnh-utility__item:hover { color: var(--dn-gold); }
.dnh-utility__item svg, .dnh-utility__item img.dnh-i{ width: 20px; height: 20px; color: var(--dn-gold); flex: none; }
.dnh-utility__sep {
	width: 1px; align-self: stretch; background: rgba(255,255,255,.18); margin-block: .35rem;
}

/* Gold call panel, right */
.dnh-header__call {
	grid-area: call;
	display: flex; align-items: center; gap: .9rem;
	background: var(--dn-gold); color: var(--dn-navy-950);
	padding: .7rem clamp(1rem, .6rem + 1.2vw, 1.75rem);
	text-decoration: none;
	transition: background-color var(--dn-transition);
}
.dnh-header__call:hover { background: var(--dn-gold-dark); color: var(--dn-navy-950); }
.dnh-header__call svg, .dnh-header__call img.dnh-i{ width: 30px; height: 30px; flex: none; }
.dnh-call__label { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .04em; line-height: 1.3; }
.dnh-call__lead  { display: block; font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.3; }
.dnh-call__num   { display: block; font-size: clamp(1.125rem, .95rem + .55vw, 1.5rem); font-weight: 700; line-height: 1.2; letter-spacing: .01em; }

/* Nav row */
.dnh-header__nav {
	grid-area: nav; display: flex; align-items: center;
	padding-inline: clamp(.35rem, .1rem + .6vw, .9rem);
	border-top: 1px solid rgba(255,255,255,.08);
	min-width: 0;
}

/* nowrap: eight top-level items must stay on one line at desktop widths */
.dnh-menu { display: flex; flex-wrap: nowrap; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.dnh-menu > li {
	position: relative; display: flex; align-items: stretch;
	border-bottom: 3px solid transparent;
	transition: border-color var(--dn-transition);
}
.dnh-menu > li > a {
	display: flex; align-items: center;
	padding: .9rem clamp(.4rem, .1rem + .5vw, .85rem);
	color: var(--dn-white); text-decoration: none;
	font-size: var(--dn-nav); font-weight: 600; letter-spacing: .025em; text-transform: uppercase;
	white-space: nowrap;
	transition: color var(--dn-transition);
}
.dnh-menu > li.dnh-has-children > a { padding-right: .15rem; }

.dnh-menu > li:hover,
.dnh-menu > li:focus-within,
.dnh-menu > li.is-open,
.dnh-menu > li.current-menu-item,
.dnh-menu > li.current-menu-ancestor { border-bottom-color: var(--dn-gold); }

.dnh-menu > li:hover > a,
.dnh-menu > li:focus-within > a,
.dnh-menu > li.is-open > a,
.dnh-menu > li.current-menu-item > a,
.dnh-menu > li.current-menu-ancestor > a,
.dnh-menu > li:hover > .dnh-menu__toggle,
.dnh-menu > li.is-open > .dnh-menu__toggle { color: var(--dn-gold); }

.dnh-menu__toggle {
	display: inline-flex; align-items: center; justify-content: center;
	background: none; border: 0; margin: 0; cursor: pointer;
	padding: .25rem clamp(.45rem, .3rem + .3vw, .75rem) .25rem .1rem;
	color: var(--dn-white);
	transition: color var(--dn-transition);
}
.dnh-menu__toggle svg, .dnh-menu__toggle img.dnh-i{ width: 11px; height: 11px; transition: transform var(--dn-transition); }
.dnh-menu > li.is-open > .dnh-menu__toggle svg, .dnh-menu > li.is-open > .dnh-menu__toggle img.dnh-i{ transform: rotate(180deg); }

/* Dropdowns */
.dnh-submenu {
	position: absolute; top: 100%; left: 0; z-index: 30;
	min-width: 260px; margin: 0; padding: .4rem 0; list-style: none;
	background: var(--dn-white);
	border: 1px solid var(--dn-border); border-top: 3px solid var(--dn-gold);
	box-shadow: var(--dn-shadow-card);
	opacity: 0; visibility: hidden; transform: translateY(4px);
	transition: opacity var(--dn-transition), transform var(--dn-transition), visibility var(--dn-transition);
}
.dnh-menu > li.is-open > .dnh-submenu,
.dnh-menu > li:hover > .dnh-submenu,
.dnh-menu > li:focus-within > .dnh-submenu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.dnh-submenu a {
	display: block; padding: .62rem 1.15rem;
	color: var(--dn-text); text-decoration: none;
	font-size: .9375rem; font-weight: 500; line-height: 1.4;
	border-left: 3px solid transparent;
}
.dnh-submenu a:hover, .dnh-submenu a:focus-visible {
	background: var(--dn-off-white); color: var(--dn-navy-950); border-left-color: var(--dn-gold);
}
/* Keep the last dropdown on-screen */
.dnh-menu > li:nth-last-child(-n+2) > .dnh-submenu { left: auto; right: 0; }

/* Compact sticky state — shrinks without reflowing page content */
.dnh-header.is-stuck .dnh-header__logo { padding-block: .45rem; }
.dnh-header.is-stuck .dnh-header__logo img { height: clamp(58px, 42px + 2vw, 84px); }
.dnh-header.is-stuck .dnh-header__utility { min-height: 0; padding-block: .3rem; font-size: .8125rem; }
.dnh-header.is-stuck .dnh-menu > li > a { padding-block: .68rem; }

/* Mobile header bits (hidden on desktop) */
.dnh-header__mobile, .dnh-burger, .dnh-drawer, .dnh-stickybar { display: none; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.dnh-hero { position: relative; isolation: isolate; background: var(--dn-navy-950); }
.dnh-hero__media { position: absolute; inset: 0; z-index: -2; }
.dnh-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dnh-hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1; background: var(--dn-navy-scrim);
}
.dnh-hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(1.5rem, .5rem + 3vw, 4rem); align-items: center;
	padding-block: clamp(2rem, 1rem + 4vw, 4.4rem);
}
.dnh-hero__copy { color: var(--dn-white); max-width: 40rem; }
.dnh-hero__copy h1 { color: var(--dn-white); margin-bottom: .5em; }
.dnh-hero__lede { font-size: clamp(1rem, .95rem + .25vw, 1.125rem); color: rgba(255,255,255,.92); margin-bottom: 1.5rem; }

.dnh-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.dnh-checks li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 500; color: var(--dn-white); }
.dnh-checks svg, .dnh-checks img.dnh-i{ flex: none; width: 20px; height: 20px; color: var(--dn-gold); margin-top: .12em; }

.dnh-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }

/* Page (interior) hero variant */
.dnh-hero--page .dnh-hero__inner { padding-block: clamp(1.8rem, 1rem + 3.2vw, 3.6rem); }
.dnh-hero--page h1 { font-size: var(--dn-h1-page); }

/* --------------------------------------------------------------------------
   7. OFFER CARD / FORMS
   -------------------------------------------------------------------------- */
.dnh-card-form {
	background: var(--dn-navy-950);
	border: 1px solid rgba(255,255,255,.12);
	padding: clamp(1.15rem, .75rem + 1.3vw, 1.8rem);
	box-shadow: 0 10px 34px rgba(0, 12, 28, .34);
}
.dnh-card-form h2, .dnh-card-form h3 { color: var(--dn-white); text-align: center; margin-bottom: .35em; font-size: clamp(1.2rem, 1rem + .65vw, 1.6rem); }
.dnh-card-form__sub { text-align: center; color: rgba(255,255,255,.82); font-size: var(--dn-small); margin-bottom: 1.35rem; }

.dnh-form { display: grid; gap: .7rem; }
.dnh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.dnh-field { display: grid; gap: .3rem; min-width: 0; }
.dnh-field > label {
	font-size: .8125rem; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.9);
}
.dnh-form--light .dnh-field > label { color: var(--dn-text); }

.dnh-field input[type="text"],
.dnh-field input[type="tel"],
.dnh-field input[type="email"],
.dnh-field input[type="number"],
.dnh-field select,
.dnh-field textarea {
	width: 100%; min-height: 40px; padding: .55rem .7rem;
	font-family: var(--dn-font-body); font-size: 1rem; color: var(--dn-text);
	background: var(--dn-white); border: 1px solid var(--dn-border); border-radius: var(--dn-radius);
	transition: border-color var(--dn-transition), box-shadow var(--dn-transition);
}
.dnh-field textarea { min-height: 88px; resize: vertical; }
.dnh-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23142a42' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px; padding-right: 2.4rem; }
.dnh-field input:focus, .dnh-field select:focus, .dnh-field textarea:focus {
	outline: none; border-color: var(--dn-gold); box-shadow: 0 0 0 3px rgba(244, 183, 46, .32);
}
.dnh-field input[aria-invalid="true"], .dnh-field textarea[aria-invalid="true"], .dnh-field select[aria-invalid="true"] {
	border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, .18);
}
.dnh-field__error { font-size: .8125rem; color: #ffd2cc; font-weight: 600; }
.dnh-form--light .dnh-field__error { color: #c0392b; }

/* Honeypot — off-screen, never display:none (some bots skip hidden fields) */
.dnh-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.dnh-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .8125rem; line-height: 1.5; color: rgba(255,255,255,.85); }
.dnh-form--light .dnh-consent { color: var(--dn-muted); }
.dnh-consent input[type="checkbox"] { flex: none; width: 20px; height: 20px; margin-top: .12em; accent-color: var(--dn-gold); }
.dnh-consent a { color: inherit; text-decoration: underline; }

.dnh-privacy {
	display: flex; align-items: center; justify-content: center; gap: .45rem;
	text-align: center; font-size: .8125rem; color: rgba(255,255,255,.78); margin-top: .9rem; line-height: 1.5;
}
.dnh-privacy svg, .dnh-privacy img.dnh-i{ width: 14px; height: 14px; flex: none; }
.dnh-form--light .dnh-privacy { color: var(--dn-muted); }
/* On the navy card the link must not inherit the global blue — #0069a8 on
   #001b38 is 2.95:1. Inheriting the panel's own text colour clears AA. */
.dnh-privacy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.dnh-privacy a:hover { color: var(--dn-gold); }
.dnh-form--light .dnh-privacy a { color: var(--dn-blue); }
.dnh-form--light .dnh-privacy a:hover { color: var(--dn-navy-900); }

.dnh-form__msg { padding: .85rem 1rem; border-radius: var(--dn-radius); font-size: .9375rem; font-weight: 600; }
.dnh-form__msg--ok   { background: #e8f6ec; color: #17603a; border: 1px solid #b7e0c4; }
.dnh-form__msg--err  { background: #fdecea; color: #8f2418; border: 1px solid #f3bcb4; }

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.dnh-trust { display: grid; grid-template-columns: repeat(5, 1fr); }
.dnh-trust__item {
	text-align: center; padding: clamp(1rem, .6rem + 1vw, 1.6rem) clamp(.5rem, .2rem + .8vw, 1.25rem);
	border-left: 1px solid var(--dn-border);
}
.dnh-trust__item:first-child { border-left: 0; }
.dnh-trust__icon { display: flex; justify-content: center; margin-bottom: .7rem; }
.dnh-trust__icon svg, .dnh-trust__icon img.dnh-i{ width: 28px; height: 28px; color: var(--dn-navy-950); }
.dnh-trust h3 { font-size: 1.0625rem; margin-bottom: .3em; line-height: 1.3; }
.dnh-trust p { font-size: .875rem; color: var(--dn-muted); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------------------
   9. PROCESS STEPS
   -------------------------------------------------------------------------- */
.dnh-steps { display: grid; gap: clamp(1rem, .4rem + 1.6vw, 2rem); align-items: start; }
.dnh-steps--3 { grid-template-columns: 1fr auto 1fr auto 1fr; }
.dnh-steps--4 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.dnh-step { text-align: center; }
.dnh-step__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: var(--dn-navy-950); color: var(--dn-white);
	font-family: var(--dn-font-body); font-size: 1.0625rem; font-weight: 700;
	margin-bottom: 1rem;
}
.dnh-step__icon { display: flex; justify-content: center; margin-bottom: .9rem; }
.dnh-step__icon svg, .dnh-step__icon img.dnh-i{ width: 38px; height: 38px; color: var(--dn-navy-950); }
.dnh-step h3 { font-size: 1.125rem; margin-bottom: .35em; }
.dnh-step p { font-size: .9375rem; color: var(--dn-muted); margin: 0; }
.dnh-steps__arrow { display: flex; align-items: center; justify-content: center; padding-top: 3.4rem; color: var(--dn-slate); }
.dnh-steps__arrow svg, .dnh-steps__arrow img.dnh-i{ width: 46px; height: 14px; }
.dnh-steps__connector { display: none; }

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.dnh-grid { display: grid; gap: clamp(1rem, .6rem + 1.1vw, 1.85rem); }
.dnh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dnh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dnh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Image card with navy content panel (Why Choose Us) */
.dnh-icard {
	display: flex; flex-direction: column; height: 100%;
	background: var(--dn-navy-950); border-radius: var(--dn-radius-card);
	/* NOT overflow:hidden — the circular badge deliberately overlaps the
	   image/panel boundary and would be clipped in half. */
}
.dnh-icard__media {
	position: relative; aspect-ratio: 16 / 9; overflow: hidden;
	border-radius: var(--dn-radius-card) var(--dn-radius-card) 0 0;
}
.dnh-icard__media img { width: 100%; height: 100%; object-fit: cover; }
/* Sits on the media/panel boundary, half in each — outside .dnh-icard__media
   so it is not clipped by that element's overflow. */
.dnh-icard__badge {
	position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
	width: 48px; height: 48px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--dn-navy-950); border: 3px solid var(--dn-white); color: var(--dn-white); z-index: 3;
}
.dnh-icard__body { position: relative; }
.dnh-icard__badge svg, .dnh-icard__badge img.dnh-i{ width: 21px; height: 21px; }
.dnh-icard__body { padding: 2.5rem clamp(1.1rem, .8rem + .9vw, 1.75rem) clamp(1.4rem, 1rem + .9vw, 1.9rem); text-align: center; flex: 1; }
.dnh-icard__body h3 { color: var(--dn-white); font-size: 1.3125rem; margin-bottom: .5em; }
.dnh-icard__body p { color: rgba(255,255,255,.84); font-size: .9375rem; margin: 0; }

/* ------------------------------------------------------------------
   SERVICE CARDS — the homepage centrepiece. Two per row, image over a
   navy panel, circular master icon straddling the boundary. The first
   card runs full width as a feature so nine services land as
   1 feature + 4 clean rows of 2, with no orphan.
   ------------------------------------------------------------------ */
.dnh-scards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, .5rem + 1.4vw, 2rem); }

.dnh-scard {
	display: flex; flex-direction: column; height: 100%;
	background: var(--dn-navy-950); border-radius: var(--dn-radius-card);
	text-decoration: none; position: relative;
	transition: transform var(--dn-transition), box-shadow var(--dn-transition);
}
.dnh-scard:hover, .dnh-scard:focus-visible { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,27,56,.22); }

.dnh-scard__media { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--dn-radius-card) var(--dn-radius-card) 0 0; }
.dnh-scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.dnh-scard:hover .dnh-scard__media img { transform: scale(1.04); }
.dnh-scard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,27,56,0) 45%, rgba(0,27,56,.55) 100%); }

.dnh-scard__badge {
	position: absolute; left: clamp(1.1rem, .8rem + 1vw, 1.9rem); top: 0; transform: translateY(-50%);
	width: 50px; height: 50px; border-radius: 50%; z-index: 3;
	display: flex; align-items: center; justify-content: center;
	background: var(--dn-gold); border: 3px solid var(--dn-navy-950);
}
.dnh-scard__badge svg, .dnh-scard__badge img.dnh-i { width: 21px; height: 21px; }

.dnh-scard__body {
	position: relative; flex: 1;
	padding: clamp(1.85rem, 1.5rem + 1.15vw, 2.4rem) clamp(.95rem, .68rem + .9vw, 1.55rem) clamp(1.05rem, .82rem + .75vw, 1.5rem);
	display: flex; flex-direction: column;
}
.dnh-scard__body h3 { color: var(--dn-white); font-size: clamp(1.25rem, 1.1rem + .6vw, 1.6rem); margin-bottom: .55rem; }
.dnh-scard__body h3::after { content: ""; display: block; width: 54px; height: 3px; background: var(--dn-gold); margin-top: .55rem; }
.dnh-scard__blurb { display: block; color: rgba(255,255,255,.84); font-size: .9375rem; line-height: 1.6; margin: .9rem 0 1.2rem; }
.dnh-scard__more {
	margin-top: auto; display: inline-flex; align-items: center; gap: .5rem;
	color: var(--dn-gold); font-size: .8125rem; font-weight: 700;
	letter-spacing: .09em; text-transform: uppercase;
}
.dnh-scard:hover .dnh-scard__more { color: var(--dn-white); }
.dnh-scard__more span[aria-hidden] { transition: transform var(--dn-transition); }
.dnh-scard:hover .dnh-scard__more span[aria-hidden] { transform: translateX(4px); }

/* Feature card: full width, photo beside the panel */
.dnh-scard--feature { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.dnh-scard--feature .dnh-scard__media {
	flex: 1 1 52%; aspect-ratio: auto; min-height: 272px;
	border-radius: var(--dn-radius-card) 0 0 var(--dn-radius-card);
}
.dnh-scard--feature .dnh-scard__media::after { background: linear-gradient(90deg, rgba(0,27,56,0) 55%, rgba(0,27,56,.5) 100%); }
.dnh-scard--feature .dnh-scard__body { flex: 1 1 48%; justify-content: center; padding: clamp(1.6rem, 1rem + 2.4vw, 3.25rem); }
.dnh-scard--feature .dnh-scard__badge { left: auto; right: clamp(1.6rem, 1rem + 2vw, 3.25rem); top: clamp(1.6rem, 1rem + 2vw, 3.25rem); transform: none; }
.dnh-scard--feature .dnh-scard__body h3 { font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.4rem); }
.dnh-scard--feature .dnh-scard__blurb { font-size: 1.0625rem; max-width: 46ch; }
.dnh-scard__eyebrow {
	display: block;
	font-size: var(--dn-eyebrow); letter-spacing: .16em; text-transform: uppercase;
	font-weight: 700; color: var(--dn-gold); margin-bottom: .7rem;
}

/* "We also buy houses" — deliberately quieter than the service cards */
.dnh-buyband { background: var(--dn-cream); border-top: 3px solid var(--dn-gold); }
.dnh-buyband__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3.5rem); align-items: center; }
.dnh-buyband h2 { margin-bottom: .8rem; }
.dnh-buyband p { color: var(--dn-muted); margin-bottom: 0; }
.dnh-buyband__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Photo tile with overlay label (Situations We Help) */
.dnh-tile {
	position: relative; display: block; overflow: hidden;
	border-radius: var(--dn-radius-card); aspect-ratio: 3 / 2;
	color: var(--dn-white); text-decoration: none; background: var(--dn-navy-900);
}
.dnh-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.dnh-tile::after { content: ""; position: absolute; inset: 0; background: var(--dn-card-scrim); }
.dnh-tile:hover img, .dnh-tile:focus-visible img { transform: scale(1.045); }
.dnh-tile__body {
	position: absolute; inset: auto 0 0 0; z-index: 2;
	padding: clamp(1rem, .7rem + .8vw, 1.5rem); display: flex; align-items: center; gap: .8rem;
}
.dnh-tile__icon {
	flex: none; width: 38px; height: 38px; border-radius: 50%;
	background: rgba(0,27,56,.86); border: 2px solid rgba(255,255,255,.85);
	display: flex; align-items: center; justify-content: center;
}
.dnh-tile__icon svg, .dnh-tile__icon img.dnh-i{ width: 18px; height: 18px; color: var(--dn-white); }
.dnh-tile__title { font-family: var(--dn-font-display); font-size: 1.1875rem; font-weight: 700; line-height: 1.25; color: var(--dn-white); }
.dnh-tile:hover .dnh-tile__title { color: var(--dn-gold); }

/* Property card */
.dnh-pcard {
	display: flex; flex-direction: column; height: 100%;
	background: var(--dn-white); border: 1px solid var(--dn-border); border-radius: var(--dn-radius-card); overflow: hidden;
	transition: border-color var(--dn-transition), box-shadow var(--dn-transition);
}
.dnh-pcard:hover { border-color: var(--dn-slate); box-shadow: var(--dn-shadow-card); }
.dnh-pcard__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--dn-cream); }
.dnh-pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.dnh-pcard__body { padding: clamp(1rem, .8rem + .6vw, 1.4rem); flex: 1; display: flex; flex-direction: column; }
.dnh-pcard__city { font-family: var(--dn-font-display); font-size: 1.25rem; font-weight: 700; color: var(--dn-navy-950); margin: 0 0 .25rem; }
.dnh-pcard__meta { font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--dn-slate); margin-bottom: .7rem; }
.dnh-pcard__excerpt { font-size: .9375rem; color: var(--dn-muted); margin-bottom: 1rem; }
.dnh-pcard__link { margin-top: auto; font-size: .875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--dn-blue); text-decoration: none; }
.dnh-pcard__link:hover { color: var(--dn-navy-950); text-decoration: underline; }
.dnh-pcard__status {
	display: inline-block; padding: .18rem .55rem; font-size: .6875rem; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase; background: var(--dn-cream); color: var(--dn-navy-900);
}

/* Orphan handling: a lone last card in a 2-up row centres rather than hanging left */
@supports selector(:has(*)) {
	.dnh-grid--3:has(> :last-child:nth-child(3n + 1)) > :last-child,
	.dnh-grid--2:has(> :last-child:nth-child(2n + 1)) > :last-child {
		grid-column: 1 / -1; max-width: min(100%, 420px); margin-inline: auto;
	}
	/* Same rule for the trust strip, which is its own grid */
	.dnh-trust:has(> :last-child:nth-child(3n + 1)) > :last-child { grid-column: 1 / -1; border-left: 0; }
}

/* --------------------------------------------------------------------------
   11. SPLIT SECTIONS
   -------------------------------------------------------------------------- */
.dnh-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.dnh-split__media { position: relative; min-height: 340px; }
.dnh-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dnh-split__panel {
	background: var(--dn-navy-950); color: rgba(255,255,255,.88);
	padding: clamp(1.4rem, .8rem + 2.4vw, 3.2rem) clamp(1rem, .65rem + 1.9vw, 2.8rem);
	display: flex; flex-direction: column; justify-content: center;
}
.dnh-split__panel h2 { color: var(--dn-white); }
.dnh-split__panel .dnh-form__msg { color: #17603a; }

/* Navy callout card floating over the split photo */
.dnh-callout {
	position: absolute; left: clamp(1rem, .5rem + 2vw, 3.25rem); bottom: clamp(1rem, .5rem + 2vw, 3rem); z-index: 2;
	display: flex; align-items: center; gap: 1rem;
	background: var(--dn-navy-950); color: var(--dn-white);
	padding: 1.1rem 1.6rem; max-width: calc(100% - 2rem); text-decoration: none;
	border-left: 4px solid var(--dn-gold);
}
.dnh-callout svg, .dnh-callout img.dnh-i{ width: 28px; height: 28px; color: var(--dn-gold); flex: none; }
.dnh-callout__label { display: block; font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.86); }
.dnh-callout__num { display: block; font-size: clamp(1.25rem, 1.05rem + .6vw, 1.6rem); font-weight: 700; color: var(--dn-gold); line-height: 1.25; }
.dnh-callout__note { display: block; font-size: .8125rem; color: rgba(255,255,255,.78); }

/* --------------------------------------------------------------------------
   12. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.dnh-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--dn-border); }
.dnh-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--dn-white); font-size: .9375rem; }
.dnh-table th, .dnh-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--dn-border); vertical-align: top; }
.dnh-table thead th { background: var(--dn-navy-950); color: var(--dn-white); font-family: var(--dn-font-body); font-size: .8125rem; letter-spacing: .07em; text-transform: uppercase; }
.dnh-table thead th:first-child { background: var(--dn-navy-900); }
.dnh-table tbody th { font-weight: 600; color: var(--dn-navy-950); background: var(--dn-off-white); width: 26%; }
.dnh-table tbody tr:nth-child(even) td { background: #fcfbf9; }
.dnh-table td:first-of-type { font-weight: 600; color: var(--dn-navy-900); }

/* --------------------------------------------------------------------------
   13. PROSE (editor content)
   -------------------------------------------------------------------------- */
.dnh-prose { max-width: 74ch; }
.dnh-prose h2 { margin-top: 1.8em; }
.dnh-prose h3 { margin-top: 1.5em; }
.dnh-prose ul li, .dnh-prose ol li { margin-bottom: .4em; }
.dnh-prose table { width: 100%; }

/* FAQ */
.dnh-faq { display: grid; gap: .75rem; max-width: 860px; margin-inline: auto; }
.dnh-faq details { border: 1px solid var(--dn-border); background: var(--dn-white); }
.dnh-faq summary {
	cursor: pointer; padding: 1rem 1.25rem; font-weight: 600; color: var(--dn-navy-950);
	font-size: 1.0625rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.dnh-faq summary::-webkit-details-marker { display: none; }
.dnh-faq summary::after { content: "+"; color: var(--dn-gold); font-weight: 700; font-size: 1.35rem; line-height: 1; }
.dnh-faq details[open] summary::after { content: "\2212"; }
.dnh-faq__body { padding: 0 1.25rem 1.15rem; color: var(--dn-muted); font-size: .9375rem; }

/* Breadcrumbs */
.dnh-crumbs { font-size: .8125rem; color: var(--dn-muted); padding-block: .9rem; }
.dnh-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.dnh-crumbs li::after { content: "/"; margin-left: .4rem; color: var(--dn-border); }
.dnh-crumbs li:last-child::after { content: ""; }
.dnh-crumbs a { color: var(--dn-muted); }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.dnh-footer { background: var(--dn-navy-950); color: rgba(255,255,255,.8); font-size: .9375rem; }
.dnh-footer__main { display: grid; grid-template-columns: minmax(200px, 1.1fr) repeat(3, minmax(0, 1fr)) auto; gap: clamp(1.25rem, .6rem + 2vw, 3rem); padding-block: clamp(2rem, 1.2rem + 2.4vw, 3.5rem); align-items: start; }
/* The brand column sits well short of its neighbours' height, so the mark
   can grow without making the footer any taller. */
.dnh-footer__brand img { width: auto; height: clamp(86px, 60px + 3vw, 120px); }
.dnh-footer__legalname { font-size: .8125rem; color: rgba(255,255,255,.62); margin-top: .9rem; line-height: 1.5; }
.dnh-fcol h3 { color: var(--dn-white); font-size: .8125rem; font-family: var(--dn-font-body); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.dnh-fitem { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 1rem; }
.dnh-fitem svg, .dnh-fitem img.dnh-i{ width: 20px; height: 20px; color: var(--dn-gold); flex: none; margin-top: .2em; }
.dnh-fitem a { color: var(--dn-white); text-decoration: none; font-weight: 600; }
.dnh-fitem a:hover { color: var(--dn-gold); }
.dnh-fitem span { display: block; font-size: .8125rem; color: rgba(255,255,255,.64); font-weight: 400; }
.dnh-fmenu { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.dnh-fmenu a { color: rgba(255,255,255,.8); text-decoration: none; }
.dnh-fmenu a:hover { color: var(--dn-gold); }

.dnh-social { display: flex; flex-direction: column; gap: .6rem; }
.dnh-social a {
	width: 34px; height: 34px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--dn-white); color: var(--dn-navy-950);
	transition: background-color var(--dn-transition), color var(--dn-transition);
}
.dnh-social a:hover { background: var(--dn-gold); }
.dnh-social svg, .dnh-social img.dnh-i{ width: 18px; height: 18px; }
.dnh-social img { width: 38px; height: 38px; }

.dnh-footer__legal { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.15rem; }
.dnh-footer__legal-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 1.5rem; }
/* wp_nav_menu items_wrap emits bare <li>s here; suppress the list markers. */
.dnh-legalmenu, .dnh-footer__legal-inner ul { list-style: none; display: contents; margin: 0; padding: 0; }
.dnh-footer__legal-inner li { list-style: none; display: inline-flex; margin: 0; padding: 0; }
.dnh-footer__legal a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.dnh-footer__legal a:hover { color: var(--dn-gold); }
.dnh-footer__copy { text-align: center; font-size: .8125rem; color: rgba(255,255,255,.58); padding-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   15. RESPONSIVE
   -------------------------------------------------------------------------- */

/* --- Large desktop down: tighten nav before it wraps --- */
@media (max-width: 1340px) {
	.dnh-menu > li > a { padding-inline: .38rem; letter-spacing: .01em; font-size: .78rem; }
	.dnh-menu__toggle { padding-right: .3rem; }
	/* Fluid rather than a flat value, so there is no visible step at 1340. */
	.dnh-header__logo img { height: clamp(86px, 62px + 2.6vw, 104px); }
	.dnh-header__utility { gap: 1rem; font-size: .8125rem; }
	.dnh-header__call { padding-inline: 1rem; }
	.dnh-call__num { font-size: 1.125rem; }
}

/* --- Collapse to mobile header before nav links wrap (spec §14 tablet) --- */
@media (max-width: 1100px) {
	.dnh-header__inner { display: none; }

	.dnh-header__mobile {
		display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
		gap: .5rem; padding: .6rem var(--dn-gutter); background: var(--dn-navy-950);
	}
	.dnh-header__mobile .dnh-mlogo { line-height: 0; }
	.dnh-header__mobile .dnh-mlogo img { height: 46px; width: auto; }

	.dnh-mcall {
		display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
		min-height: 44px; min-width: 44px; padding: .5rem .8rem;
		background: var(--dn-gold); color: var(--dn-navy-950); text-decoration: none;
		font-weight: 700; font-size: .875rem; border-radius: var(--dn-radius);
	}
	.dnh-mcall svg, .dnh-mcall img.dnh-i{ width: 18px; height: 18px; }

	.dnh-burger {
		display: inline-flex; align-items: center; justify-content: center;
		width: 46px; height: 46px; padding: 0; background: transparent;
		border: 1px solid rgba(255,255,255,.32); border-radius: var(--dn-radius);
		color: var(--dn-white); cursor: pointer;
	}
	.dnh-burger svg, .dnh-burger img.dnh-i{ width: 22px; height: 22px; }
	.dnh-burger .dnh-burger__close { display: none; }
	.dnh-burger[aria-expanded="true"] .dnh-burger__open { display: none; }
	.dnh-burger[aria-expanded="true"] .dnh-burger__close { display: block; }

	/* Off-canvas drawer */
	.dnh-drawer {
		display: block; position: fixed; inset: 0 0 0 auto; z-index: 300;
		width: min(400px, 88vw); background: var(--dn-navy-950);
		transform: translateX(100%); transition: transform 240ms ease;
		overflow-y: auto; overscroll-behavior: contain;
		padding: 1.1rem var(--dn-gutter) 2.5rem;
		border-left: 3px solid var(--dn-gold);
	}
	.dnh-drawer.is-open { transform: translateX(0); }
	.dnh-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.16); margin-bottom: .8rem; }
	.dnh-drawer__title { font-family: var(--dn-font-body); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dn-gold); font-weight: 700; }
	.dnh-drawer__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,.32); color: var(--dn-white); cursor: pointer; border-radius: var(--dn-radius); }
	.dnh-drawer__close svg, .dnh-drawer__close img.dnh-i{ width: 20px; height: 20px; }

	.dnh-drawer .dnh-menu { display: block; }
	.dnh-drawer .dnh-menu > li {
		display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
		border-bottom: 1px solid rgba(255,255,255,.1);
	}
	.dnh-drawer .dnh-menu > li > a {
		flex: 1; color: var(--dn-white); text-transform: none; letter-spacing: .01em;
		font-size: 1.0625rem; padding: .85rem 0; min-height: 44px; white-space: normal;
	}
	.dnh-drawer .dnh-submenu a {
		color: rgba(255,255,255,.82); font-size: .9375rem;
		padding: .7rem 0; min-height: 44px; display: flex; align-items: center;
	}
	.dnh-drawer .dnh-menu__toggle { width: 44px; height: 44px; padding: 0; color: var(--dn-gold); }
	.dnh-drawer .dnh-menu__toggle svg, .dnh-drawer .dnh-menu__toggle img.dnh-i{ width: 14px; height: 14px; }
	.dnh-drawer .dnh-submenu {
		position: static; opacity: 1; visibility: visible; transform: none;
		background: transparent; border: 0; box-shadow: none; padding: 0 0 .4rem .9rem;
		display: none;
	}
	.dnh-drawer .dnh-menu > li.is-open > .dnh-submenu { display: block; }
	.dnh-drawer .dnh-submenu { flex-basis: 100%; border-left: 2px solid rgba(244,183,46,.5); }
	.dnh-drawer .dnh-submenu a { border-left: 0; }
	.dnh-drawer .dnh-submenu a:hover { background: transparent; color: var(--dn-gold); }

	.dnh-drawer__cta { display: grid; gap: .65rem; margin-top: 1.4rem; }

	.dnh-scrim {
		position: fixed; inset: 0; z-index: 290; background: rgba(0, 12, 28, .6);
		opacity: 0; visibility: hidden; transition: opacity 240ms ease, visibility 240ms ease;
	}
	.dnh-scrim.is-open { opacity: 1; visibility: visible; }

	/* Sticky bottom action bar */
	.dnh-stickybar {
		display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
		position: fixed; inset: auto 0 0 0; z-index: 210;
		background: rgba(255,255,255,.2);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}
	.dnh-stickybar a {
		display: flex; align-items: center; justify-content: center; gap: .5rem;
		min-height: 56px; text-decoration: none; font-weight: 700;
		font-size: .9375rem; letter-spacing: .04em; text-transform: uppercase;
	}
	.dnh-stickybar svg, .dnh-stickybar img.dnh-i{ width: 18px; height: 18px; }
	.dnh-stickybar__call  { background: var(--dn-navy-950); color: var(--dn-white); }
	.dnh-stickybar__offer { background: var(--dn-gold); color: var(--dn-navy-950); }
	body { padding-bottom: 56px; }
}

/* --- Tablet layout --- */
@media (max-width: 1024px) {
	.dnh-hero__inner { grid-template-columns: 1fr; }
	.dnh-hero__copy { max-width: none; }

	.dnh-steps--3, .dnh-steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dnh-steps__arrow { display: none; }

	.dnh-trust { grid-template-columns: repeat(3, 1fr); }
	.dnh-trust__item:nth-child(3n + 1) { border-left: 0; }
	.dnh-trust__item:nth-child(n + 4) { border-top: 1px solid var(--dn-border); }

	.dnh-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.dnh-split { grid-template-columns: 1fr; }
	.dnh-split__media { min-height: 320px; }

	.dnh-scard--feature { flex-direction: column; }
	.dnh-scard--feature .dnh-scard__media { border-radius: var(--dn-radius-card) var(--dn-radius-card) 0 0; min-height: 240px; }
	.dnh-scard--feature .dnh-scard__media::after { background: linear-gradient(180deg, rgba(0,27,56,0) 45%, rgba(0,27,56,.55) 100%); }
	.dnh-scard--feature .dnh-scard__badge { left: clamp(1.1rem, .8rem + 1vw, 1.9rem); right: auto; top: 0; transform: translateY(-50%); }

	.dnh-buyband__inner { grid-template-columns: 1fr; }

	.dnh-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dnh-social { flex-direction: row; }
}

@media (max-width: 860px) {
	.dnh-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Phone: card grids stay 2-up; never blanket single column --- */
@media (max-width: 600px) {
	.dnh-trust { grid-template-columns: repeat(2, 1fr); }
	.dnh-trust__item { border-left: 1px solid var(--dn-border); border-top: 1px solid var(--dn-border); }
	.dnh-trust__item:nth-child(2n + 1) { border-left: 0; }
	.dnh-trust__item:nth-child(-n + 2) { border-top: 0; }
	.dnh-trust h3 { font-size: .9375rem; }
	.dnh-trust p { font-size: .8125rem; }

	/* A lone final item in the 2-up strip spans and centres rather than
	   hanging in the left column. */
	@supports selector(:has(*)) {
		.dnh-trust:has(> :last-child:nth-child(2n + 1)) > :last-child {
			grid-column: 1 / -1; border-left: 0;
		}
	}

	.dnh-tile__body { padding: .85rem; gap: .6rem; flex-direction: column; align-items: flex-start; }
	.dnh-tile__icon { width: 36px; height: 36px; }
	.dnh-tile__title { font-size: 1rem; }

	.dnh-icard__body h3 { font-size: 1.125rem; }

	/* Service cards stay two-up on phones — they are the main content */
	.dnh-scards { gap: .7rem; }
	.dnh-scard__body { padding: 1.6rem .8rem 1rem; }
	.dnh-scard__body h3 { font-size: 1rem; line-height: 1.25; }
	.dnh-scard__body h3::after { width: 38px; height: 2px; }
	.dnh-scard__blurb { font-size: .8125rem; margin: .65rem 0 .9rem; }
	.dnh-scard__more { font-size: .6875rem; letter-spacing: .06em; }
	.dnh-scard__badge { width: 44px; height: 44px; left: .8rem; border-width: 2px; }
	.dnh-scard__badge svg, .dnh-scard__badge img.dnh-i { width: 20px; height: 20px; }
	.dnh-scard--feature .dnh-scard__media { min-height: 165px; }
	.dnh-scard--feature .dnh-scard__blurb { font-size: .875rem; }

	.dnh-form__row { grid-template-columns: 1fr; }

	/* Desktop can be compact; thumbs cannot. Restore comfortable tap targets. */
	.dnh-btn { min-height: 44px; padding: .7rem 1.3rem; }
	.dnh-btn--lg { min-height: 48px; }
	.dnh-field input, .dnh-field select, .dnh-field textarea { min-height: 44px; }

	.dnh-footer__main { grid-template-columns: 1fr; text-align: left; }
	.dnh-footer__legal-inner { justify-content: flex-start; }

	/* Steps stack with a vertical connector instead of horizontal arrows */
	.dnh-steps--3, .dnh-steps--4 { grid-template-columns: 1fr; gap: 0; }
	.dnh-step { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; text-align: left; padding-bottom: 1.6rem; position: relative; }
	.dnh-step__num { margin-bottom: 0; grid-row: 1 / span 3; }
	.dnh-step__icon { display: none; }
	.dnh-step h3 { margin-top: .35rem; }
	.dnh-steps--3 .dnh-step:not(:last-child)::before,
	.dnh-steps--4 .dnh-step:not(:last-child)::before {
		content: ""; position: absolute; left: 21px; top: 50px; bottom: .5rem;
		width: 2px; background: var(--dn-border);
	}
}

/* --- Small phones: only genuinely narrow content drops to one column --- */
@media (max-width: 430px) {
	.dnh-grid--3.dnh-grid--stack-sm,
	.dnh-grid--2.dnh-grid--stack-sm { grid-template-columns: 1fr; }
	.dnh-callout { left: 0; right: 0; bottom: 0; max-width: none; padding: .9rem 1.1rem; }
}

/* --------------------------------------------------------------------------
   LIGHTBOX — gallery images open full size with prev/next.
   Vanilla, no library. Triggers are real <button>s injected by JS, so they are
   keyboard reachable; the dialog traps focus and restores it on close.
   -------------------------------------------------------------------------- */
.dnh-lbtrigger {
	display: block; width: 100%; padding: 0; margin: 0; border: 0; background: none;
	cursor: zoom-in; border-radius: var(--dn-radius-card); overflow: hidden; line-height: 0;
}
.dnh-lbtrigger img { transition: transform 320ms ease; }
.dnh-lbtrigger:hover img { transform: scale(1.03); }
.dnh-lbtrigger:focus-visible { outline: var(--dn-focus); outline-offset: 3px; }

.dnh-lb {
	position: fixed; inset: 0; z-index: 400;
	display: none; align-items: center; justify-content: center;
	background: rgba(0, 12, 28, .94);
	padding: clamp(2.75rem, 2rem + 3vw, 4.5rem) clamp(.5rem, .2rem + 2vw, 4rem);
}
.dnh-lb.is-open { display: flex; }
body.dnh-lb-open { overflow: hidden; }

.dnh-lb__figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.dnh-lb__img {
	max-width: 100%; max-height: calc(100vh - 9rem);
	width: auto; height: auto; object-fit: contain;
	border: 1px solid rgba(255,255,255,.14); background: var(--dn-navy-950);
}
.dnh-lb__caption { color: rgba(255,255,255,.82); font-size: .875rem; text-align: center; }

.dnh-lb__btn {
	position: absolute; display: flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; padding: 0; cursor: pointer;
	background: rgba(0,27,56,.85); color: var(--dn-white);
	border: 1px solid rgba(255,255,255,.28); border-radius: var(--dn-radius);
	transition: background-color var(--dn-transition), border-color var(--dn-transition);
}
.dnh-lb__btn:hover { background: var(--dn-gold); color: var(--dn-navy-950); border-color: var(--dn-gold); }
.dnh-lb__btn:focus-visible { outline: var(--dn-focus); outline-offset: 2px; }
.dnh-lb__btn svg { width: 22px; height: 22px; }
.dnh-lb__prev { left: clamp(.5rem, .2rem + 1.4vw, 2rem); top: 50%; transform: translateY(-50%); }
.dnh-lb__next { right: clamp(.5rem, .2rem + 1.4vw, 2rem); top: 50%; transform: translateY(-50%); }
.dnh-lb__close { top: clamp(.75rem, .4rem + 1vw, 1.5rem); right: clamp(.75rem, .4rem + 1vw, 1.5rem); }
.dnh-lb__count {
	position: absolute; top: clamp(.75rem, .4rem + 1vw, 1.5rem); left: 50%; transform: translateX(-50%);
	color: rgba(255,255,255,.75); font-size: .8125rem; letter-spacing: .1em; font-weight: 600;
}

@media (max-width: 600px) {
	.dnh-lb__btn { width: 44px; height: 44px; }
	.dnh-lb__prev { left: .35rem; }
	.dnh-lb__next { right: .35rem; }
	.dnh-lb__img { max-height: calc(100vh - 8rem); }
}
@media (prefers-reduced-motion: reduce) {
	.dnh-lbtrigger img, .dnh-lbtrigger:hover img { transition: none; transform: none; }
}
