/* ============================================================
   KWNYC – Broker Urbano preset
   Fonts : Cormorant Garamond (headings) + Jost (body / nav)
   Palette: #111111 dark · #ffffff light · #BE1313 KW red
   Urban brokerage preset visual system.
   ============================================================ */

.ntz-preset-kwnyc {
	--ntz-kw-black:  var(--ntz-primary, #111111);
	--ntz-kw-red:    var(--ntz-secondary, #BE1313);
	--ntz-kw-white:  #ffffff;
	--ntz-kw-light:  var(--ntz-accent, #f5f5f0);
	--ntz-kw-mid:    #555555;
	--ntz-kw-line:   rgba(255, 255, 255, 0.18);
	--ntz-kw-lined:  rgba(0, 0, 0, 0.10);
	font-family: "Jost", "Inter", sans-serif;
	background: var(--ntz-kw-white);
	color: var(--ntz-kw-black);
}

/* All headings: Cormorant Garamond, regular weight, title-case */
.ntz-preset-kwnyc h1,
.ntz-preset-kwnyc h2,
.ntz-preset-kwnyc h3,
.ntz-preset-kwnyc h4 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.02em;
	line-height: 1.08;
}

.ntz-preset-kwnyc p,
.ntz-preset-kwnyc li,
.ntz-preset-kwnyc cite,
.ntz-preset-kwnyc figcaption {
	font-family: "Jost", "Inter", sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
}

/* ── Section inner width ─────────────────────────────── */

.ntz-preset-kwnyc .ntz-section__inner {
	width: min(100% - 48px, var(--ntz-container));
}

/* ── Site header ────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--ntz-kw-black) !important;
	color: #ffffff !important;
	border-bottom: 1px solid var(--ntz-kw-line);
}

.ntz-preset-kwnyc .ntz-site-header__brand {
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff !important;
}

.ntz-preset-kwnyc .ntz-site-header__brand img {
	max-height: 44px;
}

.ntz-preset-kwnyc .ntz-site-header__nav a {
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85) !important;
}

.ntz-preset-kwnyc .ntz-site-header__nav a:hover {
	color: var(--ntz-kw-red) !important;
}

.ntz-preset-kwnyc .ntz-site-header__cta {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	border-radius: 0;
	padding: 0 20px;
}

/* ── Hero KW (new centered variant) ─────────────────── */

.ntz-preset-kwnyc .ntz-section-hero-kw {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-size: cover !important;
	background-position: center !important;
}

.ntz-preset-kwnyc .ntz-hero-kw__content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	padding: 0 24px;
}

.ntz-preset-kwnyc .ntz-hero-kw__content .ntz-eyebrow {
	display: inline-block;
	padding: 0;
	background: transparent;
	border-radius: 0;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.70);
	margin-bottom: 20px;
}

.ntz-preset-kwnyc .ntz-hero-kw__content h1 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(56px, 9vw, 130px);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.01em;
	line-height: 1.0;
	color: var(--ntz-kw-white);
	margin-bottom: 28px;
}

.ntz-preset-kwnyc .ntz-hero-kw__content p {
	font-family: "Jost", sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.75);
	max-width: 60ch;
	margin: 0 auto 36px;
}

.ntz-preset-kwnyc .ntz-hero-kw__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	align-items: center;
}

/* Primary hero button — outline white */
.ntz-preset-kwnyc .ntz-hero-kw__btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.80);
	color: var(--ntz-kw-white);
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	min-height: 52px;
	padding: 0 36px;
	border-radius: 0;
	box-shadow: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ntz-preset-kwnyc .ntz-hero-kw__btn:hover {
	background: var(--ntz-kw-white);
	border-color: var(--ntz-kw-white);
	color: var(--ntz-kw-black);
}

/* Second button — filled KW red */
.ntz-preset-kwnyc .ntz-hero-kw__btn--alt {
	background: var(--ntz-kw-red);
	border-color: var(--ntz-kw-red);
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-hero-kw__btn--alt:hover {
	background: #a00e0e;
	border-color: #a00e0e;
	color: var(--ntz-kw-white);
}

/* ── Hero fullbleed override (if still used) ─────────── */

.ntz-preset-kwnyc .ntz-section-hero-fullbleed {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
}

/* Symmetric dark overlay — overrides the left-bias gradient from inline style */
.ntz-preset-kwnyc .ntz-section-hero-fullbleed::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.30);
	pointer-events: none;
	z-index: 0;
}

.ntz-preset-kwnyc .ntz-hero-fullbleed__content {
	position: relative;
	z-index: 1;
	max-width: 860px;
	padding-left: 0;
	border-left: none;
	text-align: center;
	margin: 0 auto;
}

/* Outline-white button inside fullbleed hero (mirrors kw variant) */
.ntz-preset-kwnyc .ntz-section-hero-fullbleed .ntz-button {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.80);
	color: var(--ntz-kw-white);
	box-shadow: none;
}

.ntz-preset-kwnyc .ntz-section-hero-fullbleed .ntz-button:hover {
	background: var(--ntz-kw-white);
	border-color: var(--ntz-kw-white);
	color: var(--ntz-kw-black);
}

.ntz-preset-kwnyc .ntz-hero-fullbleed__content .ntz-eyebrow {
	background: transparent;
	padding: 0;
	border-radius: 0;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.68);
}

.ntz-preset-kwnyc .ntz-hero-fullbleed__content h1 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(52px, 8vw, 118px);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.01em;
	line-height: 1.0;
	color: var(--ntz-kw-white);
	max-width: none;
}

.ntz-preset-kwnyc .ntz-hero-fullbleed__content p {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 auto 36px;
}

/* ── Global buttons ─────────────────────────────────── */

.ntz-preset-kwnyc .ntz-button {
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	min-height: 50px;
	padding: 0 32px;
	border-radius: 0;
	background: var(--ntz-kw-black);
	color: var(--ntz-kw-white);
	box-shadow: none;
	transition: background 0.18s, color 0.18s;
}

.ntz-preset-kwnyc .ntz-button:hover {
	background: var(--ntz-kw-red);
	color: var(--ntz-kw-white);
}

/* ── Eyebrow / kicker ────────────────────────────────── */

.ntz-preset-kwnyc .ntz-eyebrow,
.ntz-preset-kwnyc .ntz-section-kicker {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: transparent;
	padding: 0;
	border-radius: 0;
	color: var(--ntz-kw-red);
}

/* ── Section headings ────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section h2 {
	font-size: clamp(38px, 4.8vw, 70px);
	font-weight: 400;
}

/* ── Property search ────────────────────────────────── */

.ntz-preset-kwnyc .ntz-property-search {
	border-radius: 0;
	border: none;
	border-top: 3px solid var(--ntz-kw-black);
	border-left: none;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.ntz-preset-kwnyc .ntz-property-search h2 {
	font-size: clamp(32px, 3.8vw, 56px);
}

.ntz-preset-kwnyc .ntz-property-search__form {
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.20);
	box-shadow: none;
}

.ntz-preset-kwnyc .ntz-property-search__form input,
.ntz-preset-kwnyc .ntz-property-search__form button {
	min-height: 58px;
	border-radius: 0;
	font-family: "Jost", sans-serif;
}

.ntz-preset-kwnyc .ntz-property-search__form button {
	background: var(--ntz-kw-black);
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
}

.ntz-preset-kwnyc .ntz-property-search__links a {
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.18);
	color: var(--ntz-kw-black);
	font-family: "Jost", sans-serif;
	font-weight: 600;
	background: transparent;
}

.ntz-preset-kwnyc .ntz-property-search__links a:hover {
	background: var(--ntz-kw-black);
	border-color: var(--ntz-kw-black);
	color: var(--ntz-kw-white);
}

/* Dark search section override */
.ntz-preset-kwnyc .ntz-section-property-search[style*="111"],
.ntz-preset-kwnyc .ntz-section-property-search[style*="0b0b"] {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-property-search[style*="111"] .ntz-property-search,
.ntz-preset-kwnyc .ntz-section-property-search[style*="0b0b"] .ntz-property-search {
	border-color: rgba(255, 255, 255, 0.20);
	background: rgba(255, 255, 255, 0.06) !important;
}

.ntz-preset-kwnyc .ntz-section-property-search[style*="111"] .ntz-property-search h2,
.ntz-preset-kwnyc .ntz-section-property-search[style*="0b0b"] .ntz-property-search h2 {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-property-search[style*="111"] .ntz-property-search p,
.ntz-preset-kwnyc .ntz-section-property-search[style*="0b0b"] .ntz-property-search p {
	color: rgba(255, 255, 255, 0.60);
}

.ntz-preset-kwnyc .ntz-section-property-search[style*="111"] .ntz-property-search__links a,
.ntz-preset-kwnyc .ntz-section-property-search[style*="0b0b"] .ntz-property-search__links a {
	border-color: rgba(255, 255, 255, 0.22);
	color: var(--ntz-kw-white);
	background: transparent;
}

/* ── About sections ──────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-about h2,
.ntz-preset-kwnyc .ntz-section-about-split h2 {
	font-size: clamp(36px, 4.2vw, 64px);
	font-weight: 400;
}

.ntz-preset-kwnyc .ntz-section-about .ntz-card,
.ntz-preset-kwnyc .ntz-section-about-split .ntz-card {
	border-radius: 0;
	border: none;
	box-shadow: none;
	background: transparent !important;
}

.ntz-preset-kwnyc .ntz-section-about img,
.ntz-preset-kwnyc .ntz-section-about-split img {
	border-radius: 0;
	box-shadow: none;
}

.ntz-preset-kwnyc .ntz-section-about p,
.ntz-preset-kwnyc .ntz-section-about-split p {
	font-size: 17px;
	line-height: 1.8;
	color: #333333;
}

/* ── Stat strip ─────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-stat-strip {
	border-top: 2px solid var(--ntz-kw-red);
}

.ntz-preset-kwnyc .ntz-stat-strip__label {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
	margin-bottom: 28px;
}

.ntz-preset-kwnyc .ntz-stat-strip__number {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(44px, 6vw, 80px);
	font-weight: 400;
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-stat-strip__desc {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.48);
}

.ntz-preset-kwnyc .ntz-stat-strip__item {
	border-right-color: rgba(255, 255, 255, 0.10);
}

/* ── Dual panel ──────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-dual-panel__eyebrow {
	font-family: "Jost", sans-serif;
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--ntz-kw-red);
}

.ntz-preset-kwnyc .ntz-dual-panel__content h2 {
	font-size: clamp(38px, 5vw, 72px);
	font-weight: 400;
	letter-spacing: 0.01em;
}

.ntz-preset-kwnyc .ntz-dual-panel__btn {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	letter-spacing: 0.14em;
	border-color: rgba(255, 255, 255, 0.65);
}

.ntz-preset-kwnyc .ntz-dual-panel__btn:hover {
	background: var(--ntz-kw-white);
	border-color: var(--ntz-kw-white);
	color: var(--ntz-kw-black);
}

/* ── Houses ──────────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-houses-heading {
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 400;
}

.ntz-preset-kwnyc .ntz-houses-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--ntz-kw-lined);
}

.ntz-preset-kwnyc .house-item.block {
	display: grid;
	grid-template-columns: minmax(190px, 0.85fr) minmax(0, 1fr);
	border: 0;
	border-right: 1px solid var(--ntz-kw-lined);
	border-bottom: 1px solid var(--ntz-kw-lined);
	background: var(--ntz-kw-white);
	box-shadow: none;
	border-radius: 0;
}

/* Dark houses section */
.ntz-preset-kwnyc .ntz-section-houses[style*="111"],
.ntz-preset-kwnyc .ntz-section-houses[style*="0b0"] {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-houses[style*="111"] .house-item.block,
.ntz-preset-kwnyc .ntz-section-houses[style*="0b0"] .house-item.block {
	background: var(--ntz-kw-black);
	color: var(--ntz-kw-white);
	border-color: rgba(255, 255, 255, 0.10);
}

.ntz-preset-kwnyc .ntz-section-houses[style*="111"] .ntz-houses-grid,
.ntz-preset-kwnyc .ntz-section-houses[style*="0b0"] .ntz-houses-grid {
	border-color: rgba(255, 255, 255, 0.10);
}

.ntz-preset-kwnyc .ntz-section-houses[style*="111"] .house-item.block .content,
.ntz-preset-kwnyc .ntz-section-houses[style*="0b0"] .house-item.block .content {
	color: rgba(255, 255, 255, 0.70);
}

.ntz-preset-kwnyc .ntz-section-houses[style*="111"] .house-item.block .content .price,
.ntz-preset-kwnyc .ntz-section-houses[style*="0b0"] .house-item.block .content .price {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .house-item.block figure {
	height: 100%;
	min-height: 250px;
	border-radius: 0;
}

.ntz-preset-kwnyc .house-item.block figure img {
	border-radius: 0;
}

.ntz-preset-kwnyc .house-item.block .content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px 24px;
}

.ntz-preset-kwnyc .house-item.block .content .price {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.ntz-preset-kwnyc .house-item.block figure .category {
	border-radius: 0;
	background: var(--ntz-kw-red);
	font-family: "Jost", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
}

/* ── Services ────────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-services h2 {
	font-size: clamp(38px, 4.8vw, 70px);
	font-weight: 400;
}

.ntz-preset-kwnyc .ntz-section-services .ntz-card {
	border-radius: 0;
	border: 1px solid var(--ntz-kw-lined);
	box-shadow: none;
}

.ntz-preset-kwnyc .ntz-section-services .ntz-card h3 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	color: inherit;
}

/* Dark services */
.ntz-preset-kwnyc .ntz-section-services[style*="111"],
.ntz-preset-kwnyc .ntz-section-services[style*="0b0"] {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-services[style*="111"] .ntz-card,
.ntz-preset-kwnyc .ntz-section-services[style*="0b0"] .ntz-card {
	border-color: rgba(255, 255, 255, 0.10);
	background: var(--ntz-kw-black) !important;
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-services[style*="111"] .ntz-card h3,
.ntz-preset-kwnyc .ntz-section-services[style*="0b0"] .ntz-card h3 {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-services[style*="111"] .ntz-card p,
.ntz-preset-kwnyc .ntz-section-services[style*="0b0"] .ntz-card p {
	color: rgba(255, 255, 255, 0.62);
}

/* ── Advisors ────────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-advisor-card {
	border-radius: 0;
	box-shadow: none;
	border: 1px solid var(--ntz-kw-lined);
}

.ntz-preset-kwnyc .ntz-advisor-card img {
	border-radius: 0;
}

.ntz-preset-kwnyc .ntz-advisor-card__body h3 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.ntz-preset-kwnyc .ntz-advisor-card__role {
	font-family: "Jost", sans-serif;
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--ntz-kw-red) !important;
}

/* ── Testimonials ────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-testimonials h2 {
	font-size: clamp(36px, 4.5vw, 66px);
	font-weight: 400;
}

.ntz-preset-kwnyc .ntz-section-testimonials .ntz-quote {
	border-radius: 0;
	border: 1px solid var(--ntz-kw-lined);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ntz-preset-kwnyc .ntz-section-testimonials .ntz-quote p {
	font-size: 17px;
	line-height: 1.75;
	font-style: italic;
}

.ntz-preset-kwnyc .ntz-section-testimonials .ntz-quote__icon {
	background: var(--ntz-kw-red);
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-testimonials cite {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Dark testimonials */
.ntz-preset-kwnyc .ntz-section-testimonials[style*="111"],
.ntz-preset-kwnyc .ntz-section-testimonials[style*="0b0"] {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-testimonials[style*="111"] .ntz-quote,
.ntz-preset-kwnyc .ntz-section-testimonials[style*="0b0"] .ntz-quote {
	background: var(--ntz-kw-black) !important;
	border-color: rgba(255, 255, 255, 0.10);
	color: var(--ntz-kw-white);
}

/* Spotlight variant */
.ntz-preset-kwnyc .ntz-section-testimonials-spotlight .ntz-quote {
	background: transparent !important;
	border: none;
	box-shadow: none;
}

.ntz-preset-kwnyc .ntz-testimonial-carousel__controls button {
	border-radius: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--ntz-kw-white);
}

/* ── CTA sections ────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-cta h2,
.ntz-preset-kwnyc .ntz-section-cta-banner h2 {
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 400;
}

.ntz-preset-kwnyc .ntz-section-cta .ntz-cta-box,
.ntz-preset-kwnyc .ntz-section-cta-banner .ntz-cta-box {
	border-radius: 0;
	box-shadow: none;
}

/* ── Contact ─────────────────────────────────────────── */

/* Always white text on the section background (dark in kwnyc preset) */
.ntz-preset-kwnyc .ntz-section-contact,
.ntz-preset-kwnyc .ntz-section-contact-split {
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-contact h2,
.ntz-preset-kwnyc .ntz-section-contact-split h2 {
	font-size: clamp(36px, 4.2vw, 62px);
	font-weight: 400;
	color: var(--ntz-kw-white);
}

.ntz-preset-kwnyc .ntz-section-contact p,
.ntz-preset-kwnyc .ntz-section-contact-split > .ntz-section__inner > div > p {
	color: rgba(255, 255, 255, 0.75);
}

.ntz-preset-kwnyc .ntz-section-contact .ntz-card,
.ntz-preset-kwnyc .ntz-section-contact-split .ntz-card {
	border-radius: 0;
	border: 1px solid var(--ntz-kw-lined);
	box-shadow: 12px 12px 0 rgba(190, 19, 19, 0.18);
	/* White card — restore dark text for legibility */
	color: var(--ntz-kw-black);
}

.ntz-preset-kwnyc .ntz-section-contact .ntz-card strong,
.ntz-preset-kwnyc .ntz-section-contact-split .ntz-card strong {
	color: var(--ntz-kw-black);
}

.ntz-preset-kwnyc .ntz-section-contact .ntz-card li,
.ntz-preset-kwnyc .ntz-section-contact-split .ntz-card li {
	color: var(--ntz-kw-black);
}

/* ── Footer ──────────────────────────────────────────── */

.ntz-preset-kwnyc .ntz-section-footer {
	background: var(--ntz-kw-black) !important;
	color: rgba(255,255,255,0.80) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ntz-preset-kwnyc .ntz-section-footer p,
.ntz-preset-kwnyc .ntz-section-footer a,
.ntz-preset-kwnyc .ntz-section-footer span {
	font-family: "Jost", sans-serif;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.72) !important;
}

.ntz-preset-kwnyc .ntz-section-footer a:hover {
	color: var(--ntz-kw-red) !important;
}

/* ── Theme microsite header (outside shell) ──────────── */

.microsite-header--kwnyc .navbar {
	background: var(--ntz-primary, #111111) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.microsite-header--kwnyc .navbar-brand,
.microsite-header--kwnyc .microsite-brand {
	font-family: "Jost", sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: #ffffff !important;
}

.microsite-header--kwnyc .navbar-brand img,
.microsite-header--kwnyc .microsite-brand img {
	filter: brightness(0) invert(1);
}

.microsite-header--kwnyc .nav-link {
	font-family: "Jost", sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.80) !important;
}

.microsite-header--kwnyc .nav-link:hover {
	color: var(--ntz-secondary, #BE1313) !important;
}

.microsite-header--kwnyc .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.25) !important;
	color: #ffffff !important;
}

.microsite-header--kwnyc .navbar-toggler i {
	color: #ffffff !important;
}

/* ── Theme microsite footer (outside shell) ──────────── */

.microsite-footer--kwnyc {
	background: var(--ntz-primary, #111111) !important;
	color: rgba(255, 255, 255, 0.75) !important;
	border-top: 2px solid var(--ntz-secondary, #BE1313) !important;
}

.microsite-footer--kwnyc small,
.microsite-footer--kwnyc a {
	font-family: "Jost", sans-serif !important;
	font-size: 12px !important;
	letter-spacing: 0.06em !important;
	color: rgba(255, 255, 255, 0.55) !important;
}

.microsite-footer--kwnyc a:hover {
	color: var(--ntz-secondary, #BE1313) !important;
}

/* ── Base hero-kw (frontend) ─────────────────────────── */

.ntz-section-hero-kw {
	position: relative;
	overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────── */

@container ntz-preview (max-width: 900px) {
	.ntz-preset-kwnyc .ntz-houses-grid,
	.ntz-preset-kwnyc .house-item.block {
		grid-template-columns: 1fr;
	}

	.ntz-preset-kwnyc .house-item.block figure {
		min-height: 220px;
		height: 220px;
	}

	.ntz-preset-kwnyc .ntz-section-hero-kw {
		min-height: 70vh;
	}

	.ntz-preset-kwnyc .ntz-section-hero-fullbleed {
		min-height: 70vh;
	}

	.ntz-preset-kwnyc .ntz-hero-kw__actions {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 900px) {
	.ntz-preset-kwnyc .ntz-houses-grid,
	.ntz-preset-kwnyc .house-item.block {
		grid-template-columns: 1fr;
	}

	.ntz-preset-kwnyc .house-item.block figure {
		min-height: 220px;
		height: 220px;
	}

	.ntz-preset-kwnyc .ntz-section-hero-kw {
		min-height: 70vh;
	}

	.ntz-preset-kwnyc .ntz-section-hero-fullbleed {
		min-height: 70vh;
	}

	.ntz-preset-kwnyc .ntz-hero-kw__actions {
		flex-direction: column;
		align-items: center;
	}
}
