/* Nottingham Homes – Trades : single profile page
   Namespaced .nhp-* so it never collides with the directory (.nh-*) styles. */

body:has(.nhp) {
	background:
		radial-gradient(circle at 12% 12%, rgba(111,161,92,.34), transparent 34%),
		radial-gradient(circle at 88% 72%, rgba(95,138,79,.28), transparent 38%),
		linear-gradient(135deg, #10241a 0%, #183d2a 48%, #0b1b13 100%);
	background-attachment: fixed;
}

.nhp {
	--nhp-dark:   #0f1c16;
	--nhp-dark2:  #0b1611;
	--nhp-panel:  #13241b;
	--nhp-line:   rgba(255,255,255,.09);
	--nhp-ink:    #eef3ee;
	--nhp-muted:  #9fb0a3;
	--nhp-green:  #5f8a4f;
	--nhp-green2: #6fa15c;
	--nhp-gold:   #e8b53b;

	--lt-bg:    #f3f1ea;
	--lt-ink:   #1b2a20;
	--lt-muted: #6f7d70;
	--lt-card:  #ffffff;
	--lt-line:  #e7e6df;

	background: var(--nhp-dark);
	color: var(--nhp-ink);
	font-family: inherit;
	font-size: 16px;
	width: 100%;
	max-width: 2280px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0;
	overflow: hidden;
	padding-bottom: 70px; /* room for the sticky bar */
}
.nhp * { box-sizing: border-box; }
.nhp h1, .nhp h2 { margin: 0 0 12px; line-height: 1.15; }

/* ---------- buttons ---------- */
.nhp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.nhp-btn--green { background: var(--nhp-green); color: #fff; }
.nhp-btn--green:hover { background: #517a43; color: #fff; }
.nhp-btn--ghost { background: transparent; color: var(--nhp-ink); border-color: rgba(255,255,255,.25); }
.nhp-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.nhp-btn--lg { padding: 15px 28px; font-size: 1rem; }
.nhp-light .nhp-btn--ghost { color: var(--lt-ink); border-color: var(--lt-line); }
.nhp-light .nhp-btn--ghost:hover { background: #fff; }

/* ---------- top bar ---------- */
.nhp-topbar {
	display: flex; align-items: center; justify-content: space-between;
	height: 100px;
	padding: 2px 28px;
	border-bottom: 1px solid var(--nhp-line);
}
.nhp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--nhp-ink); }
.nhp-brand__logo {
	display: block;
	width: auto;
	height: 95px;
	max-width: 360px;
	object-fit: contain;
	object-position: left center;
}

/* ---------- breadcrumb ---------- */
.nhp-crumb { display: flex; gap: 8px; align-items: center; padding: 16px 28px 0; font-size: 1rem; color: var(--nhp-muted); flex-wrap: wrap; }
.nhp-crumb a { color: var(--nhp-muted); text-decoration: none; }
.nhp-crumb a:hover { color: var(--nhp-ink); }
.nhp-crumb__current { color: var(--nhp-ink); }

/* ---------- hero ---------- */
.nhp-hero { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; padding: 22px 28px 8px; }
.nhp-hero__media { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--nhp-panel); }
.nhp-hero__media .nhp-svg, .nhp-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nhp-pill {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(95,138,79,.18); color: #bfe0ad;
	border: 1px solid rgba(111,161,92,.4);
	padding: 5px 12px; border-radius: 999px; font-size: 1rem; font-weight: 600; margin-bottom: 10px;
}
.nhp-dot { width: 7px; height: 7px; border-radius: 50%; background: #7ed957; box-shadow: 0 0 0 3px rgba(126,217,87,.25); }
.nhp-hero__title { font-size: 2.6rem; font-weight: 800; color: var(--nhp-ink) !important; }
.nhp-hero__sub { color: var(--nhp-muted); margin: 0 0 12px; font-size: 1rem; }
.nhp-hero__rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 16px; }
.nhp-hero__rating strong { font-size: 1.05rem; }
.nhp-hero__rating span { color: var(--nhp-muted); font-size: 1rem; }
.nhp-hero__rating a { color: var(--nhp-green2); font-size: 1rem; text-decoration: underline; }
.nhp-hero__points { list-style: none !important; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.nhp-hero__points li {
	list-style: none !important;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	color: var(--nhp-ink);
	font-size: 1rem;
	line-height: 1.3;
}
.nhp-hero__points li::marker { content: ""; font-size: 0; }
.nhp-hero__points li::before {
	content: "✓";
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--nhp-green);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}
.nhp-hero__points li:nth-child(1)::before { content: "◷"; font-size: 15px; }
.nhp-hero__points li:nth-child(4)::before { content: "☎"; font-size: 12px; }
.nhp-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- stars ---------- */
.nhp-stars { display: inline-flex !important; flex-direction: row !important; align-items: center; flex-wrap: nowrap; gap: 2px; white-space: nowrap; }
.nhp-star {
	display: inline-block !important; flex: 0 0 auto;
	font-size: 1rem; line-height: 1; color: transparent !important; margin: 0 !important;
	background: linear-gradient(90deg, var(--nhp-gold) var(--nhp-star-fill), rgba(255,255,255,.25) var(--nhp-star-fill));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.nhp-light .nhp-star { background: linear-gradient(90deg, var(--nhp-gold) var(--nhp-star-fill), #d7d4c7 var(--nhp-star-fill)); -webkit-background-clip: text; background-clip: text; }

/* ---------- trust strip ---------- */
.nhp-trust {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
	margin: 16px 28px; padding: 18px 20px;
	background: var(--nhp-panel); border: 1px solid var(--nhp-line); border-radius: 14px;
}
.nhp-trust__item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nhp-trust__icon { width: 42px; height: 42px; object-fit: contain; flex: 0 0 42px; }
.nhp-trust__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nhp-trust__item strong { font-size: 1rem; }
.nhp-trust__item span { color: var(--nhp-muted); font-size: 1rem; }

/* ---------- gallery ---------- */
.nhp-gallery {
	display: flex; gap: 12px; overflow-x: auto; padding: 0 28px 4px;
	scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.nhp-tile {
	flex: 0 0 200px; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
	scroll-snap-align: start; background: var(--nhp-panel);
}
.nhp-tile .nhp-svg, .nhp-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- stats ---------- */
.nhp-stats {
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
	margin: 16px 28px 0; padding: 20px; 
	background: var(--nhp-panel); border: 1px solid var(--nhp-line); border-radius: 14px;
}
.nhp-stat { display: flex; flex-direction: column; gap: 3px; }
.nhp-stat strong { font-size: 1.5rem; font-weight: 800; color: var(--nhp-green2); }
.nhp-stat span { color: var(--nhp-muted); font-size: 1rem; }

/* ---------- light sections ---------- */
.nhp-light { background: var(--lt-bg); color: var(--lt-ink); padding: 34px 28px; margin-top: 22px; }
.nhp-light + .nhp-light { margin-top: 0; padding-top: 0; }
.nhp-light h2 { color: var(--lt-ink); font-size: 1.4rem; }
.nhp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.nhp-about p, .nhp-seo p { color: var(--lt-muted); line-height: 1.6; margin: 0 0 12px; }
.nhp-about__lead { color: var(--lt-ink) !important; font-weight: 600; margin-top: 6px !important; }
.nhp-ticks { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 7px; }
.nhp-ticks li { position: relative; padding-left: 24px; color: var(--lt-ink); font-size: 1rem; }
.nhp-ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--nhp-green); font-weight: 800; }

/* services grid */
.nhp-services__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.nhp-service {
	background: var(--nhp-dark); color: var(--nhp-ink);
	border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 5px; min-height: 92px;
}

.nhp-service__icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
	flex: 0 0 48px;
}

.nhp-service__copy {
	min-width: 0;
}

.nhp-service__copy strong,
.nhp-service__copy span {
	display: block;
}
.nhp-service strong { font-size: 1rem; }
.nhp-service span { color: var(--nhp-muted); font-size: 1rem; }

/* areas */
.nhp-areas {
	margin-top: 28px;
	background-color: #10241a;
	background-image: linear-gradient(
		90deg,
		#183d2a 0%,
		#183d2a 45%,
		#10241a 80%,
		#10241a 100%
	) !important;
	border-radius: 16px; overflow: hidden;
	display: grid; grid-template-columns: 1fr 1.4fr; align-items: stretch; color: var(--nhp-ink);
}
.nhp-areas__panel { padding: 26px; background: transparent; }
.nhp-areas__panel h2 { color: var(--nhp-ink); }
.nhp-areas__panel p { color: var(--nhp-muted); font-size: 1rem; margin: 0 0 14px; }
.nhp-areas__list { list-style: none !important; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.nhp-areas__list li { list-style: none !important; position: relative; padding-left: 20px; font-size: 1rem; }
.nhp-areas__list li::marker { content: ""; font-size: 0; }
.nhp-areas__list li::before { content: "◉"; position: absolute; left: 0; color: var(--nhp-green2); font-size: .7rem; top: 3px; }
.nhp-areas__map {
	position: relative;
	min-height: 260px;
	min-width: 0;
	overflow: hidden;
}
.nhp-areas__map .nhp-map__image {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: right center;
	transform: scale(1.06);
	transform-origin: right center;
}

/* reviews */
.nhp-reviews { margin-top: 28px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.nhp-reviews__score strong { display: block; font-size: 3rem; font-weight: 800; color: var(--lt-ink); line-height: 1; }
.nhp-reviews__score span { display: block; color: var(--lt-muted); font-size: 1rem; margin-top: 6px; }
.nhp-reviews__score .nhp-stars { display: inline-flex !important; margin-top: 10px; }
.nhp-reviews__score .nhp-star { font-size: 1.3rem; margin: 0 !important; }
.nhp-reviews__cards { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
.nhp-review {
	flex: 0 0 260px; background: var(--nhp-dark); color: var(--nhp-ink);
	border-radius: 12px; padding: 16px; scroll-snap-align: start;
}
.nhp-review p { font-size: 1rem; line-height: 1.5; margin: 8px 0; }
.nhp-review span { color: var(--nhp-muted); font-size: 1rem; }
.nhp-review em { color: var(--nhp-green2); font-style: normal; margin-left: 6px; }

/* need help banner */
.nhp-help {
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	margin: 22px 28px; padding: 26px;
	background: linear-gradient(135deg, #1d3a2a, #0e2018);
	border: 1px solid var(--nhp-line); border-radius: 16px;
}
.nhp-help h2 { color: var(--nhp-ink); }
.nhp-help p { color: var(--nhp-muted); margin: 0; }
.nhp-help p strong { color: var(--nhp-green2); }

/* enquiry forms */
.nhp-contact { padding-top: 30px; }
.nhp-contact__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.nhp-enquiry {
	border: 1px solid rgba(31,74,51,.18);
	border-radius: 16px;
	background: #f8faf6;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(16,36,26,.08);
}
.nhp-enquiry summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	color: var(--nhp-ink);
	background:
		radial-gradient(circle at 82% 20%, rgba(111,161,92,.22), transparent 30%),
		linear-gradient(110deg, #10241a 0%, #193b29 58%, #214a33 100%);
	transition: filter .15s;
}
.nhp-enquiry summary::-webkit-details-marker { display: none; }
.nhp-enquiry summary:hover { filter: brightness(1.08); }
.nhp-enquiry summary span,
.nhp-enquiry summary strong,
.nhp-enquiry summary small { display: block; }
.nhp-enquiry summary strong { font-size: 1.25rem; color: #fff; letter-spacing: -.01em; }
.nhp-enquiry summary small { margin-top: 5px; color: #b9c9bd; font-size: 1rem; font-weight: 400; }
.nhp-enquiry summary i {
	position: relative;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.20);
}
.nhp-enquiry summary i::before,
.nhp-enquiry summary i::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 18px;
	width: 16px;
	height: 2px;
	background: #c7e1ba;
	transition: transform .18s;
}
.nhp-enquiry summary i::after { transform: rotate(90deg); }
.nhp-enquiry[open] summary { border-bottom: 1px solid rgba(255,255,255,.10); }
.nhp-enquiry[open] summary i::after { transform: rotate(0); }
.nhp-enquiry-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 22px;
	padding: 30px;
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(145deg, rgba(255,255,255,.94), rgba(243,247,240,.96)),
		#f5f8f2;
}
.nhp-enquiry-form .nhp-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	color: var(--lt-ink);
	font-size: 1rem;
	font-weight: 700;
}
.nhp-enquiry-form .nhp-field--wide { grid-column: 1 / -1; }
.nhp-enquiry-form input,
.nhp-enquiry-form textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid #c7d2c7;
	border-radius: 10px;
	padding: 13px 15px;
	background: #fff;
	color: var(--lt-ink);
	font: inherit;
	box-shadow: inset 0 1px 2px rgba(16,36,26,.04);
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.nhp-enquiry-form input::placeholder,
.nhp-enquiry-form textarea::placeholder { color: #89968b; opacity: 1; }
.nhp-enquiry-form input:hover,
.nhp-enquiry-form textarea:hover { border-color: #91aa91; }
.nhp-enquiry-form input:focus,
.nhp-enquiry-form textarea:focus {
	outline: none;
	border-color: var(--nhp-green);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(95,138,79,.14);
}
.nhp-enquiry-form textarea { min-height: 130px; resize: vertical; }
.nhp-enquiry-form .nhp-consent {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 14px 16px;
	border: 1px solid #d5ddd3;
	border-radius: 10px;
	background: rgba(255,255,255,.72);
	color: var(--lt-muted);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
}
.nhp-enquiry-form .nhp-consent input[type="checkbox"] {
	appearance: auto;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	min-height: 20px;
	margin: 2px 0 0;
	padding: 0;
	border: 0;
	border-radius: 3px;
	box-shadow: none;
	accent-color: var(--nhp-green);
	cursor: pointer;
}
.nhp-enquiry-form .nhp-consent a { color: #3e7134; font-weight: 700; text-underline-offset: 2px; }
.nhp-enquiry-form .nhp-consent a:hover { color: #294f23; }
.nhp-enquiry-form .nhp-btn {
	grid-column: 1 / -1;
	justify-self: start;
	min-height: 52px;
	padding: 14px 26px;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(81,122,67,.20);
}
.nhp-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.nhp-form-notice { margin-bottom: 18px; padding: 12px 14px; border-radius: 9px; font-weight: 600; }
.nhp-form-notice--success { background: #e4f3dc; color: #315b28; }
.nhp-form-notice--error { background: #f8e0df; color: #8a2925; }

/* compare */
.nhp-compare-wrap { margin-top: 0; }
.nhp-compare { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
.nhp-compare__card {
	flex: 0 0 230px; background: var(--lt-card); border: 1px solid var(--lt-line);
	border-radius: 12px; padding: 16px; text-decoration: none; color: var(--lt-ink);
	display: flex; flex-direction: column; gap: 5px; scroll-snap-align: start;
	transition: box-shadow .15s, transform .15s;
}
.nhp-compare__card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-2px); }
.nhp-compare__card strong { font-size: 1rem; }
.nhp-compare__rating { font-size: 1rem; color: var(--lt-muted); }
.nhp-compare__meta, .nhp-compare__avail { font-size: 1rem; color: var(--lt-muted); }
.nhp-compare__avail { color: var(--nhp-green); font-weight: 600; }

/* faq */
.nhp-faq__item { border: 1px solid var(--lt-line); border-radius: 10px; background: var(--lt-card); margin-bottom: 10px; padding: 4px 14px; }
.nhp-faq__item summary { cursor: pointer; padding: 12px 0; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; }
.nhp-faq__item summary::after { content: "⌄"; color: var(--lt-muted); }
.nhp-faq__item[open] summary::after { content: "⌃"; }
.nhp-faq__item p { color: var(--lt-muted); font-size: 1rem; line-height: 1.55; margin: 0 0 12px; }

/* sticky bar */
.nhp-sticky {
	position: sticky; bottom: 0; left: 0; right: 0;
	display: grid; grid-template-columns: 1fr 1fr 1fr;
	background: var(--nhp-dark2); border-top: 1px solid var(--nhp-line);
}
.nhp-sticky a { padding: 16px 8px; text-align: center; color: var(--nhp-ink); text-decoration: none; font-weight: 600; font-size: 1rem; }
.nhp-sticky a:first-child { background: var(--nhp-green); color: #fff; }
.nhp-sticky a:hover { background: rgba(255,255,255,.06); }
.nhp-sticky a:first-child:hover { background: #517a43; }

/* missing state */
.nhp-wrap { padding: 40px 28px; }
.nhp-missing { color: var(--nhp-muted); }

/* business portal */
.nh-portal {
	max-width: 1180px; margin: 40px auto; padding: 0 22px 48px;
	color: #10241a; font-size: 16px; line-height: 1.55;
}
.nh-portal__header {
	padding: 34px 38px; border-radius: 22px;
	background: linear-gradient(135deg, #10241a, #214f36);
	color: #fff; box-shadow: 0 18px 45px rgba(16,36,26,.18);
}
.nh-portal__header h1 { margin: 0 0 6px; color: #fff; font-size: clamp(2rem,4vw,3.2rem); }
.nh-portal__header p { margin: 0; color: #c9d9cc; }
.nh-portal__auth { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.nh-portal__card, .nh-portal__editor {
	background: #fff; border: 1px solid #dce5dc; border-radius: 18px; padding: 30px;
	box-shadow: 0 12px 32px rgba(16,36,26,.08);
}
.nh-portal__card h2 { margin-top: 0; color: #10241a; }
.nh-portal label { display: flex; flex-direction: column; gap: 7px; margin: 0 0 18px; font-weight: 650; color: #183d2a; }
.nh-portal input:not([type="checkbox"]), .nh-portal textarea {
	width: 100%; box-sizing: border-box; padding: 13px 15px; min-height: 50px;
	border: 1px solid #aebcaf; border-radius: 10px; background: #fbfdfb; color: #10241a;
	font: inherit; transition: border-color .15s, box-shadow .15s, background .15s;
}
.nh-portal textarea { resize: vertical; }
.nh-portal input:focus, .nh-portal textarea:focus {
	outline: 0; border-color: #659456; background: #fff; box-shadow: 0 0 0 4px rgba(101,148,86,.17);
}
.nh-portal__remember, .nh-portal__check { flex-direction: row !important; align-items: center; font-weight: 500 !important; }
.nh-portal__remember input, .nh-portal__check input { width: 20px; height: 20px; accent-color: #659456; }
.nh-portal__notice { margin-top: 20px; padding: 15px 18px; border-radius: 12px; border-left: 5px solid; background: #fff; }
.nh-portal__notice--success { border-color: #659456; }
.nh-portal__notice--pending { border-color: #d49b2b; background: #fff9e9; }
.nh-portal__notice--error { border-color: #b32d2e; background: #fff5f5; }
.nh-portal__toolbar {
	display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; margin: 24px 0;
	padding: 16px 20px; border-radius: 12px; background: #e9f0e8;
}
.nh-portal__toolbar span { flex: 1; color: #53695b; }
.nh-portal__toolbar a { color: #315e38; font-weight: 700; }
.nh-portal__editor { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.nh-portal__wide { grid-column: 1 / -1; }
.nh-portal .nhp-btn--ghost { color: #315e38; border: 2px solid #659456; background: #f6faf5; }
.nh-portal .nhp-btn { min-height: 50px; border-radius: 10px; padding: 12px 22px; font-size: 16px; font-weight: 700; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
	.nh-portal__auth, .nh-portal__editor { grid-template-columns: 1fr; }
	.nh-portal__wide { grid-column: auto; }
	.nhp-hero { grid-template-columns: 1fr; }
	.nhp-hero__title { font-size: 2rem; }
	.nhp-trust { grid-template-columns: 1fr 1fr; }
	.nhp-stats { grid-template-columns: 1fr 1fr; }
	.nhp-cols { grid-template-columns: 1fr; gap: 28px; }
	.nhp-services__grid { grid-template-columns: 1fr 1fr; }
	.nhp-areas { grid-template-columns: 1fr; }
	.nhp-areas__map { min-height: clamp(240px, 55vw, 430px); }
	.nhp-areas__map .nhp-map__image { object-fit: contain; transform: scale(1.02); transform-origin: center; }
	.nhp-reviews { grid-template-columns: 1fr; }
	.nhp-enquiry-form { grid-template-columns: 1fr; padding: 22px; }
	.nhp-enquiry-form .nhp-field--wide,
	.nhp-enquiry-form .nhp-btn { grid-column: auto; }
}
@media (max-width: 480px) {
	.nhp-topbar, .nhp-crumb, .nhp-hero, .nhp-light, .nhp-gallery { padding-left: 16px; padding-right: 16px; }
	.nhp-topbar { height: 78px; padding-top: 2px; padding-bottom: 2px; }
	.nhp-brand__logo { height: 74px; max-width: 245px; }
	.nhp-trust, .nhp-stats, .nhp-help { margin-left: 16px; margin-right: 16px; }
	.nhp-trust, .nhp-stats { grid-template-columns: 1fr; }
	.nhp-services__grid { grid-template-columns: 1fr; }
}
