	.neighbourhood-page {
		font-family: 'Campton', Helvetica, Arial, sans-serif;
		color: #192733;
		font-weight: 300;
	}
	.neighbourhood-page * { box-sizing: border-box; }
	/* main.min.css sets body { height:100%; overflow-x:hidden } which makes body
	   a fixed-height scroll container and silently breaks position:sticky on every
	   descendant. Force body fully visible + auto-height (sticky needs no scroll-
	   container ancestor) and clip horizontal overflow at html instead. */
	html { overflow-x: clip; }
	body { overflow: visible !important; height: auto !important; }
	/* main.min.css also sets overflow on .container-fluid, which clips sticky
	   descendants the same way — neutralize it on this page. */
	.container-fluid.neighbourhood-page { overflow: visible !important; }

	/* Hero */
	.nb-hero {
		padding: 11rem 1.5rem 4.5rem;
		text-align: center;
		background-image: url('../img/web/patio.jpg');
		background-size: cover;
		background-position: center 60%;
		color: #fff;
		position: relative;
	}
	.nb-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(25, 39, 51, 0.6) 0%, rgba(25, 39, 51, 0.75) 100%);
	}
	.nb-hero > * { position: relative; z-index: 1; }
	.nb-hero h1 {
		font-size: clamp(3rem, 9vw, 6rem);
		font-weight: 300;
		margin: 0;
		line-height: 1;
		letter-spacing: -0.02em;
		color: #fff;
	}
	.nb-hero .lead {
		max-width: 640px;
		margin: 1.5rem auto 0;
		font-size: clamp(1rem, 1.4vw, 1.15rem);
		line-height: 1.65;
		color: rgba(255,255,255,0.9);
	}
	.hero-stats {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin: 3rem auto 0;
		max-width: 980px;
	}
	.hero-stats .stat {
		padding: 0.5rem 2.25rem;
		border-left: 1px solid rgba(255,255,255,0.25);
	}
	.hero-stats .stat:first-child { border-left: 0; }
	.hero-stats .num {
		font-size: clamp(1.75rem, 3vw, 2.4rem);
		font-weight: 300;
		line-height: 1.1;
		color: #efb243;
	}
	.hero-stats .lbl {
		margin-top: 0.35rem;
		font-size: 0.68rem;
		letter-spacing: .22em;
		text-transform: uppercase;
		font-weight: 500;
		color: rgba(255,255,255,0.85);
		white-space: nowrap;
	}

	/* Section scaffolding */
	.nb-band { background: #fff; }
	.nb-band.stone { background: #f7f5f1; }
	.nb-section {
		max-width: 1200px;
		margin: 0 auto;
		padding: 5rem 1.5rem;
		scroll-margin-top: calc(var(--header-h, 65px) + 1.5rem);
	}
	.section-head {
		display: flex;
		align-items: baseline;
		gap: 1rem;
		margin-bottom: 2.5rem;
		padding-bottom: 1rem;
		border-bottom: 1px solid rgba(25, 39, 51, 0.15);
		flex-wrap: wrap;
	}
	.section-num {
		font-size: 0.8rem;
		letter-spacing: .25em;
		color: #efb243;
		font-weight: 500;
	}
	.section-head h2 {
		font-size: clamp(1.75rem, 4vw, 2.75rem);
		font-weight: 300;
		margin: 0;
		flex: 1;
		min-width: 250px;
		line-height: 1.15;
	}

	/* Life on The Drive — editorial split */
	.drive-split {
		display: grid;
		grid-template-columns: 7fr 5fr;
		gap: 3.5rem;
		align-items: center;
	}
	.drive-photos {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}
	.drive-photos figure { margin: 0; }
	.drive-photos figure.wide { grid-column: span 2; }
	.drive-photos img {
		width: 100%;
		aspect-ratio: 16 / 10;
		object-fit: cover;
		display: block;
	}
	.drive-photos figure.wide img { aspect-ratio: 16 / 9; }
	.drive-photos figcaption {
		margin-top: 0.6rem;
		font-size: 0.72rem;
		letter-spacing: .2em;
		text-transform: uppercase;
		font-weight: 500;
		opacity: 0.7;
	}
	.drive-copy p {
		font-size: 1.05rem;
		line-height: 1.7;
		margin: 0 0 1.5rem;
	}
	.drive-copy p:last-of-type { margin-bottom: 0; }

	/* Category pills */
	.cat-pills {
		display: flex;
		gap: 0.6rem;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0 0 1.75rem;
		padding-bottom: 0.25rem;
	}
	.cat-pills::-webkit-scrollbar { display: none; }
	.cat-pills button {
		flex: 0 0 auto;
		font-family: inherit;
		font-size: 0.75rem;
		letter-spacing: .14em;
		text-transform: uppercase;
		font-weight: 500;
		padding: 0.65rem 1.25rem;
		border: 1px solid rgba(25, 39, 51, 0.25);
		background: #fff;
		color: #192733;
		cursor: pointer;
		border-radius: 999px;
		transition: background .25s ease, color .25s ease, border-color .25s ease;
		white-space: nowrap;
	}
	.cat-pills button:hover { border-color: #efb243; color: #efb243; }
	.cat-pills button.active {
		background: #192733;
		color: #fff;
		border-color: #192733;
	}

	/* Two-column: amenity list + map */
	.nb-split {
		display: grid;
		grid-template-columns: 5fr 7fr;
		gap: 2rem;
		align-items: stretch;
	}
	.amenity-list {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}
	.amenity-card {
		background: #fff;
		border: 1px solid rgba(25, 39, 51, 0.08);
		border-left: 3px solid transparent;
		padding: 1rem 1.15rem;
		font-size: 0.95rem;
		line-height: 1.5;
		cursor: pointer;
		transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
	}
	.amenity-card:hover,
	.amenity-card.active {
		border-left-color: #efb243;
		transform: translateY(-1px);
		box-shadow: 0 6px 18px rgba(25, 39, 51, 0.08);
	}
	.amenity-card .amenity-num {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.6em;
		height: 1.6em;
		border-radius: 50%;
		background: #192733;
		color: #fff;
		font-size: 0.75rem;
		font-weight: 500;
		margin-right: 0.6em;
		vertical-align: middle;
	}
	.amenity-card .amenity-name {
		font-weight: 500;
		display: inline;
	}
	.amenity-card .amenity-addr {
		display: block;
		margin: 0.35rem 0 0 2.2em;
		font-size: 0.8rem;
		opacity: 0.7;
	}

	.nb-map {
		position: sticky;
		top: calc(var(--header-h, 65px) + 1.5rem);
		width: 100%;
		height: 560px;
		border: 1px solid rgba(25, 39, 51, 0.1);
		background: #f4f7f7;
		box-shadow: 0 6px 22px rgba(25, 39, 51, 0.06);
	}
	.nb-map .leaflet-container {
		width: 100%;
		height: 100%;
		background: #f4f7f7;
		font-family: 'Campton', Helvetica, Arial, sans-serif;
	}

	/* Numbered pin marker */
	.nb-pin {
		background: #192733;
		color: #fff;
		border: 2px solid #fff;
		border-radius: 50%;
		width: 28px !important;
		height: 28px !important;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: 'Campton', Helvetica, Arial, sans-serif;
		font-weight: 500;
		font-size: 0.78rem;
		box-shadow: 0 3px 8px rgba(25, 39, 51, 0.28);
	}
	.nb-pin.home {
		background: #efb243;
		color: #192733;
		width: 34px !important;
		height: 34px !important;
		font-size: 0.85rem;
		font-weight: 700;
		box-shadow: 0 4px 12px rgba(239, 178, 67, 0.45), 0 0 0 4px rgba(239, 178, 67, 0.15);
	}

	/* Leaflet popup — brand styling */
	.nb-map .leaflet-popup-content-wrapper {
		background: #192733;
		color: #fff;
		border-radius: 2px;
		box-shadow: 0 6px 18px rgba(25, 39, 51, 0.28);
		padding: 2px 6px;
	}
	.nb-map .leaflet-popup-content {
		margin: 12px 16px;
		font-size: 0.82rem;
		line-height: 1.45;
		font-weight: 300;
	}
	.nb-map .leaflet-popup-content strong {
		display: block;
		color: #efb243;
		font-weight: 500;
		letter-spacing: 0.04em;
		margin-bottom: 2px;
	}
	.nb-map .leaflet-popup-tip { background: #192733; }
	.nb-map .leaflet-popup-close-button {
		color: rgba(255, 255, 255, 0.55) !important;
		font-size: 18px !important;
		padding: 6px 8px 0 0 !important;
	}
	.nb-map .leaflet-popup-close-button:hover { color: #efb243 !important; }

	/* Zoom controls */
	.nb-map .leaflet-control-zoom {
		border: 0;
		box-shadow: 0 3px 10px rgba(25, 39, 51, 0.12);
	}
	.nb-map .leaflet-control-zoom a {
		background: #fff;
		color: #192733;
		border: 1px solid rgba(25, 39, 51, 0.08);
		font-weight: 400;
		width: 32px;
		height: 32px;
		line-height: 30px;
	}
	.nb-map .leaflet-control-zoom a:hover {
		background: #efb243;
		color: #192733;
		border-color: #efb243;
	}

	/* Attribution — subtle, brand-aligned */
	.nb-map .leaflet-control-attribution {
		background: rgba(255, 255, 255, 0.82);
		color: rgba(25, 39, 51, 0.7);
		font-size: 10px;
		font-family: 'Campton', Helvetica, Arial, sans-serif;
		padding: 2px 6px;
	}
	.nb-map .leaflet-control-attribution a { color: #192733; }

	/* CTA strip */
	.nb-cta {
		background: #192733;
		color: #fff;
		padding: 5rem 1.5rem;
		text-align: center;
	}
	.nb-cta h2 {
		font-size: clamp(2rem, 5vw, 3.5rem);
		font-weight: 300;
		margin: 0 0 1rem;
		color: #efb243;
	}
	.nb-cta p { margin: 0 0 2rem; font-size: 1.05rem; line-height: 1.6; }
	.nb-cta a {
		display: inline-flex;
		align-items: center;
		gap: 0.75rem;
		padding: 1rem 2.25rem;
		background: transparent;
		color: #fff;
		border: 1px solid #fff;
		text-decoration: none;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: .15em;
		font-size: 0.9rem;
		transition: background .25s ease, color .25s ease;
	}
	.nb-cta a:hover,
	.nb-cta a:focus {
		background: #efb243;
		color: #192733;
		border-color: #efb243;
	}

	/* Scroll reveal */
	.reveal {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity .6s ease, transform .6s ease;
	}
	.reveal.in-view {
		opacity: 1;
		transform: translateY(0);
	}
	@media (prefers-reduced-motion: reduce) {
		.reveal { opacity: 1; transform: none; transition: none; }
	}

	/* Footer override — white background */
	.neighbourhood-page #footer { background-color: #fff; }

	/* Site navigation — shared across all pages, always visible */
	#main-nav {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 3;
	}
	#main-nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		gap: 2.5rem;
		align-items: center;
	}
	#main-nav a {
		font-family: 'Campton', Helvetica, Arial, sans-serif;
		font-size: 0.8rem;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		font-weight: 500;
		color: #fff;
		text-decoration: none;
		padding: 0.4rem 0;
		border-bottom: 2px solid transparent;
		transition: color .25s ease, border-color .25s ease;
		white-space: nowrap;
	}
	#main-nav a:hover,
	#main-nav a:focus,
	#main-nav a.active {
		color: #efb243;
		border-bottom-color: #efb243;
	}
	#header.fixed #main-nav a { color: #192733; }
	#header.fixed #main-nav a:hover,
	#header.fixed #main-nav a:focus,
	#header.fixed #main-nav a.active { color: #efb243; }

	#nav-toggle {
		display: none;
		position: absolute;
		top: 50%;
		right: calc(1em + 130px);
		transform: translateY(-50%);
		z-index: 4;
		background: transparent;
		border: 0;
		padding: 8px;
		cursor: pointer;
		width: 38px;
		height: 38px;
	}
	#nav-toggle span {
		display: block;
		width: 22px;
		height: 2px;
		background: #fff;
		margin: 5px 0;
		transition: background .25s ease, transform .25s ease, opacity .25s ease;
	}
	#header.fixed #nav-toggle span { background: #192733; }
	#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	#nav-toggle.open span:nth-child(2) { opacity: 0; }
	#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	@media (max-width: 900px) {
		#header { overflow: visible; }
		#nav-toggle { display: block; }
		#main-nav {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			transform: none;
			background: #fff;
			max-height: 0;
			overflow: hidden;
			transition: max-height .35s ease;
			box-shadow: 0 4px 12px rgba(0,0,0,0.08);
		}
		#main-nav.open { max-height: 400px; }
		#main-nav ul {
			flex-direction: column;
			gap: 0;
			align-items: stretch;
		}
		#main-nav a {
			color: #192733 !important;
			display: block;
			padding: 1rem 1.5rem;
			border-bottom: 1px solid rgba(25, 39, 51, 0.06);
		}
	}

	/* Tablet & below */
	@media (max-width: 900px) {
		.drive-split { grid-template-columns: 1fr; gap: 2.5rem; }
	}
	@media (max-width: 860px) {
		.nb-split { grid-template-columns: 1fr; gap: 1.25rem; }
		.nb-map { position: relative; top: 0; height: 360px; order: -1; }
	}
	@media (max-width: 720px) {
		.nb-hero { padding: 7rem 1.25rem 3rem; }
		.hero-stats { margin-top: 2rem; }
		.hero-stats .stat { padding: 0.5rem 1.1rem; }
		.nb-section { padding: 3.25rem 1.25rem; }
		.section-head { gap: 0.5rem; margin-bottom: 1.75rem; }
		.amenity-card { padding: 0.85rem 1rem; font-size: 0.92rem; }
		.nb-map { height: 300px; }
		.drive-photos { gap: 1rem; }
		.nb-cta { padding: 3.5rem 1.25rem; }
	}
