/* ============================================================================
   NadLan Showroom - ENGINE STYLES (vanilla, token-driven)
   Cream editorial page + dark immersive 3D theater. One shadow family, hairlines,
   generous whitespace, motion on interaction. RTL-first, mobile-first.
   ============================================================================ */

.nl-app { background: var(--cream); color: var(--ink); min-height: 100vh; width: 100%; max-width: 100%; overflow-x: clip; }
.nl-app, .nl-app * { box-sizing: border-box; }
.nl-app img, .nl-app svg, .nl-app iframe, .nl-app model-viewer { max-width: 100%; }
.nl-wrap { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }
.nl-sec { padding-block: clamp(40px, 6vw, 88px); }
.nl-eyebrow { font-family: var(--font-sans-he); font-size: var(--fs-micro); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--gold); font-weight: 600; }
html[lang="en"] .nl-eyebrow, html[lang="fr"] .nl-eyebrow { font-family: var(--font-sans-en); }
.nl-rule { width: 34px; height: 2px; background: var(--gold); border: 0; margin-block: 14px; margin-inline: 0; }
.nl-muted { color: var(--muted-foreground); }
.nl-lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); line-height: var(--lh-snug); color: #423d33; max-width: 56ch; }

/* buttons */
.nl-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 22px; border-radius: var(--radius); border: 1px solid transparent; font-size: var(--fs-small); font-weight: 600; cursor: pointer; text-decoration: none; transition: transform .14s ease, box-shadow .14s ease, background .14s ease, opacity .14s ease; }
.nl-btn:active { transform: translateY(1px); }
.nl-btn--primary { background: var(--ink); color: var(--primary-foreground); }
.nl-btn--primary:hover { box-shadow: var(--shadow-card); }
.nl-btn--accent { background: var(--terracotta); color: var(--accent-foreground); }
.nl-btn--accent:hover { opacity: .92; box-shadow: 0 8px 22px -10px rgba(194,86,58,.6); }
.nl-btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.nl-btn--ghost:hover { background: var(--secondary); }
.nl-btn--gold { background: linear-gradient(180deg,#b9923f,#9C7A3C); color: #fff; }
.nl-btn--block { width: 100%; }
.nl-btn--sm { min-height: 38px; padding: 0 14px; font-size: var(--fs-micro); }

.nl-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: var(--tracking-wide); text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-sm); font-weight: 600; }
.nl-badge--demo { background: rgba(156,122,60,.12); color: #7c5f2c; border: 1px solid rgba(156,122,60,.3); text-transform: none; letter-spacing: 0; }
.nl-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.s-available { background: var(--sage); } .s-reserved { background: var(--gold); } .s-sold { background: #9aa29a; }

/* ---------- header / language bar ---------- */
.nl-header { position: sticky; top: 0; z-index: 40; background: rgba(250,247,241,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nl-header__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.nl-brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; }
.nl-brand__mark { width: 30px; height: 30px; border-radius: 7px; background: var(--ink); color: var(--cream); display: grid; place-items: center; font-family: var(--font-serif-he); font-weight: 900; font-size: 16px; align-self: center; }
.nl-brand__name { font-family: var(--font-serif-he); font-weight: 700; font-size: 20px; color: var(--ink); }
.nl-brand__sub { font-size: var(--fs-micro); color: var(--muted-foreground); }
.nl-nav { display: flex; align-items: center; gap: 20px; }
.nl-nav__links { display: flex; gap: 18px; }
.nl-nav__links a { font-size: var(--fs-small); color: #4b4639; text-decoration: none; }
.nl-nav__links a:hover { color: var(--ink); }
.nl-langs { display: flex; gap: 4px; }
.nl-lang { min-width: 34px; height: 30px; padding: 0 9px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: #5f5a4d; font-size: 12px; font-weight: 600; cursor: pointer; }
.nl-lang[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nl-nav__links a.is-active { color: var(--ink); font-weight: 600; }

/* ---------- in-page section nav (sticky, single in-page nav) ---------- */
.nl-secnav { position: sticky; top: 63px; z-index: 30; display: flex; gap: clamp(14px, 3vw, 26px); overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; background: rgba(250,247,241,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding-inline: clamp(14px, 3vw, 28px); }
.nl-secnav::-webkit-scrollbar { display: none; }
.nl-secnav a { flex: 0 0 auto; white-space: nowrap; font-size: 14px; font-weight: 600; color: #4b4639; text-decoration: none; padding: 14px 2px; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease; }
.nl-secnav a:hover { color: var(--ink); }
.nl-secnav a.is-active { color: var(--ink); border-bottom-color: var(--gold); }
@media (max-width: 700px) { .nl-secnav { top: 57px; gap: 16px; } }

/* ---------- hero (block 2) ---------- */
.nl-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 4vw, 56px); align-items: center; }
.nl-hero__h1 { font-size: var(--fs-display); font-weight: 500; line-height: 1.04; margin-block: 10px 0; }
.nl-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.nl-hero__facts { display: flex; gap: 28px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.nl-fact__n { font-family: var(--font-serif-he); font-size: 1.9rem; font-weight: 700; line-height: 1; }
html[lang="en"] .nl-fact__n { font-family: var(--font-serif-en); }
.nl-fact__l { font-size: var(--fs-small); color: var(--muted-foreground); margin-top: 4px; }
.nl-hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); aspect-ratio: 4/3; background: var(--theater-1); }
.nl-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.nl-hero__badge { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; }

/* ---------- 3D theater (block 3) ---------- */
.nl-theater { position: relative; border-radius: var(--radius-2xl); overflow: hidden; background: linear-gradient(160deg, var(--theater-2), var(--theater-1) 60%, #0e0d0a); box-shadow: var(--shadow-theater); border: 1px solid rgba(20,19,15,.5); }
.nl-theater__top { position: absolute; inset-block-start: 0; inset-inline: 0; z-index: 6; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: clamp(14px,2vw,22px); pointer-events: none; background: linear-gradient(180deg, rgba(10,9,7,.55), transparent); }
/* the bar itself stays click-transparent (the stage shows through) but every
   control on it MUST receive clicks - this one missing line kept studio,
   co-tour, light and filter chips dead for weeks (owner bug 2026-07-11) */
.nl-theater__top > * { pointer-events: auto; }
.nl-theater__title { color: var(--theater-fore); }
.nl-theater__title .e { color: #d8c79a; font-size: var(--fs-micro); letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 600; font-family: var(--font-sans-he); }
.nl-theater__title h2 { color: var(--theater-fore); font-size: clamp(1.3rem,1rem+1.4vw,2rem); margin-top: 4px; }
.nl-toggle { display: inline-flex; background: rgba(15,14,11,.6); border: 1px solid var(--theater-line); border-radius: 999px; padding: 4px; pointer-events: auto; }
.nl-toggle button { min-height: 34px; padding: 0 16px; border: 0; background: transparent; color: var(--theater-sub); font-size: 13px; font-weight: 600; border-radius: 999px; cursor: pointer; }
.nl-toggle button[aria-pressed="true"] { background: linear-gradient(180deg,#b9923f,#9C7A3C); color: #fff; }
.nl-stagewrap { position: relative; width: 100%; aspect-ratio: 16 / 11; min-height: 380px; }
@media (max-width: 700px){ .nl-stagewrap { aspect-ratio: 3 / 4; min-height: 460px; } }
.nl-stage { width: 100%; height: 100%; direction: ltr; --poster-color: transparent; background: radial-gradient(120% 90% at 30% 18%, #20242a 0%, #14130f 60%, #0c0b08 100%); }
.nl-stage::part(default-progress-bar){ display: none; }
.nl-poster { position: absolute; inset: 0; z-index: 4; background-size: cover; background-position: center; transition: opacity .7s ease; pointer-events: none; }
.nl-poster.is-hidden { opacity: 0; }
.nl-spinner { position: absolute; z-index: 5; inset-block-end: 16px; inset-inline-start: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--theater-sub); font-size: 12px; pointer-events: none; transition: opacity .4s ease; }
.nl-spinner i { width: 14px; height: 14px; border: 2px solid rgba(242,236,222,.3); border-top-color: #d8c79a; border-radius: 50%; animation: nlspin .8s linear infinite; }
@keyframes nlspin { to { transform: rotate(360deg); } }
.nl-model-error { position: absolute; z-index: 7; inset-inline: clamp(14px, 3vw, 28px); inset-block-end: 18px; max-width: min(520px, calc(100% - 28px)); margin-inline: auto; padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid rgba(216,199,154,.45); background: rgba(250,247,241,.94); color: var(--ink); box-shadow: var(--shadow-card); font-size: 14px; line-height: 1.45; text-align: center; }
.nl-model-error[hidden] { display: none; }

/* hotspots */
.nl-hot { --c: var(--sage); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; cursor: pointer; border: 2px solid var(--c); background: rgba(18,17,13,.5); backdrop-filter: blur(2px); box-shadow: 0 4px 14px rgba(0,0,0,.45); transition: transform .16s ease, background .16s ease; padding: 0; }
.nl-hot:hover { transform: scale(1.12); }
/* occlusion honesty (2026-07-11): model-viewer drops data-visible when a
   hotspot's normal faces away - the far side of the building hides instead
   of scattering over the front */
.nl-hot { transition: transform .16s ease, background .16s ease, opacity .3s ease; }
.nl-hot:not([data-visible]) { opacity: 0; pointer-events: none; transform: scale(.6); }
/* direct-sun ring from the sun engine */
.nl-hot.nl-sunlit { box-shadow: 0 0 0 3px rgba(201,156,73,.85), 0 0 18px rgba(201,156,73,.55), 0 4px 14px rgba(0,0,0,.45); }
.nl-fsq.nl-sunlit { outline: 2px solid rgba(201,156,73,.85); outline-offset: 1px; }
.nl-hot--reserved { --c: var(--gold); } .nl-hot--sold { --c: #9aa29a; }
.nl-hot--rec::after { content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid var(--sage); opacity:.0; animation: nlpulse 2.1s infinite; }
.nl-hot.is-active { transform: scale(1.16); background: rgba(122,143,106,.4); box-shadow: 0 0 0 6px rgba(122,143,106,.18), 0 6px 18px rgba(0,0,0,.5); }
@keyframes nlpulse { 0%{ transform: scale(.8); opacity:.5;} 70%{ transform: scale(1.35); opacity:0;} 100%{opacity:0;} }

/* orientation pins */
.nl-orient { position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: rgba(12,11,8,.6); border: 1px solid var(--theater-line); color: #cfc8b6; font-size: 11px; font-weight: 600; pointer-events: none; backdrop-filter: blur(4px); }
.nl-orient svg { width: 12px; height: 12px; }

/* legend */
.nl-legend { position: absolute; z-index: 6; inset-block-end: clamp(12px,2vw,18px); inset-inline-end: clamp(12px,2vw,18px); display: inline-flex; gap: 12px; padding: 8px 13px; border-radius: 999px; background: rgba(12,11,8,.66); border: 1px solid var(--theater-line); color: #d7d0c0; font-size: 12px; font-weight: 600; backdrop-filter: blur(6px); }
.nl-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* facade backup (block 4) */
.nl-facade { position: absolute; inset: 0; z-index: 3; display: none; padding: clamp(16px,3vw,30px); }
.nl-facade.is-on { display: grid; place-items: center; }
.nl-facade__frame { position: relative; height: 100%; aspect-ratio: 1000 / 1333; max-height: 100%; max-width: 100%; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--theater-line); background: #161611 center/cover; }
.nl-facade__concept::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,17,12,.08), rgba(18,17,12,.68)); }
.nl-facade__notice { position: absolute; inset-inline: 14px; inset-block-end: 14px; display: grid; gap: 7px; padding: 14px; border-radius: var(--radius-md); background: rgba(250,247,241,.94); border: 1px solid rgba(156,122,60,.24); box-shadow: var(--shadow-card); color: var(--ink); }
.nl-facade__notice span { width: fit-content; border-radius: 999px; background: rgba(194,86,58,.12); color: var(--terracotta); padding: 4px 9px; font-size: 12px; font-weight: 800; }
.nl-facade__notice strong { font-size: 18px; line-height: 1.2; }
.nl-facade__notice p { margin: 0; color: #5c5649; font-size: 13px; line-height: 1.5; }
.nl-facade__missing { display: grid; place-items: center; gap: 8px; padding: clamp(18px, 4vw, 34px); text-align: center; background: linear-gradient(145deg, rgba(250,247,241,.94), rgba(232,226,211,.9)); color: var(--ink); }
.nl-facade__missing strong { font-size: 20px; }
.nl-facade__missing p { max-width: 34ch; margin: 0; color: #5c5649; line-height: 1.55; }
.nl-fsq { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border-radius: 6px; border: 1.5px solid var(--c, var(--sage)); background: rgba(12,12,9,.5); color: #fff; cursor: pointer; padding: 4px; }
.nl-fsq b { font-size: 12px; } .nl-fsq span { font-size: 9px; opacity: .8; }
.nl-fsq.is-active { background: rgba(122,143,106,.34); box-shadow: 0 0 0 3px rgba(122,143,106,.2); }
.nl-fsq--reserved { --c: var(--gold);} .nl-fsq--sold { --c:#9aa29a;}

/* cinematic select */
.nl-scrim { position: absolute; inset: 0; z-index: 7; background: radial-gradient(60% 50% at var(--sx,50%) var(--sy,42%), transparent 0%, rgba(8,7,5,.46) 60%, rgba(8,7,5,.66) 100%); opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.nl-scrim.is-on { opacity: 1; }
.nl-fly { position: fixed; z-index: 48; pointer-events: none; border-radius: 10px; border: 1.5px solid #cdb274; background: linear-gradient(180deg, rgba(34,31,25,.95), rgba(20,19,15,.95)); color: #f4eede; box-shadow: 0 20px 50px -16px rgba(0,0,0,.7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.nl-fly b { font-family: var(--font-serif-he); font-size: 20px; } .nl-fly span { font-size: 11px; color: #d8c79a; }

/* ---------- apartment panel (block 5) - slide-out ---------- */
.nl-panel { position: absolute; z-index: 8; inset-block: 0; inset-inline-end: 0; width: clamp(320px, 36%, 430px); transform: translateX(112%); transition: transform .42s cubic-bezier(.22,.61,.36,1); background: linear-gradient(180deg, rgba(28,26,21,.96), rgba(17,16,12,.98)); backdrop-filter: blur(10px); border-inline-start: 1px solid var(--theater-line); display: flex; flex-direction: column; color: var(--theater-fore); }
[dir="rtl"] .nl-panel { transform: translateX(-112%); }
.nl-panel.is-open { transform: translateX(0); }
.nl-panel__scroll { overflow-y: auto; padding: clamp(16px,2vw,22px) clamp(16px,2vw,22px) 40px; flex: 1; scrollbar-width: none; -ms-overflow-style: none; }
.nl-panel__scroll::-webkit-scrollbar { display: none; }
/* soft cue that the panel continues - instead of a gray frame-in-frame scrollbar */
.nl-panel::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 36px; background: linear-gradient(180deg, rgba(17,16,12,0), rgba(17,16,12,.92)); pointer-events: none; }
.nl-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.nl-panel__close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--theater-line); background: rgba(255,255,255,.05); color: var(--theater-fore); cursor: pointer; flex: none; }
.nl-panel__title { font-family: var(--font-serif-he); font-size: 1.6rem; color: #fff; }
html[lang="en"] .nl-panel__title { font-family: var(--font-serif-en); }
.nl-panel__floor { text-align: end; flex: none; }
.nl-panel__floor b { font-family: var(--font-serif-he); font-size: 2rem; line-height: 1; color: #fff; display: block; }
.nl-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.nl-stat { padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.05); }
.nl-stat .k { font-size: 12px; color: var(--theater-sub); } .nl-stat .v { font-size: 17px; font-weight: 700; color: #fff; }
.nl-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 16px; }
.nl-tab { min-height: 40px; border-radius: 9px; border: 1px solid var(--theater-line); background: rgba(255,255,255,.05); color: #efe7d6; font-weight: 600; font-size: 13px; cursor: pointer; }
.nl-tab[aria-selected="true"] { background: linear-gradient(180deg,#b9923f,#9C7A3C); color: #fff; border-color: transparent; }
.nl-tabpane { margin-top: 10px; min-height: 150px; border-radius: 12px; border: 1px solid var(--theater-line); background: rgba(10,10,7,.5); display: grid; place-items: center; overflow: hidden; }
.nl-tabpane img { width: 100%; height: 100%; max-height: 220px; object-fit: contain; }
.nl-tabpane p { padding: 22px; text-align: center; color: #b7b0a0; font-size: 13.5px; line-height: 1.6; }
.nl-panel__actions { display: flex; gap: 8px; margin-top: 14px; }
.nl-iconbtn { flex: 1; min-height: 42px; border-radius: 10px; border: 1px solid var(--theater-line); background: rgba(255,255,255,.05); color: #efe7d6; font-weight: 600; font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.nl-iconbtn.is-on { color: #f0d999; border-color: rgba(201,156,73,.5); }
.nl-iconbtn svg { width: 16px; height: 16px; }

/* ---------- inventory (block 6) ---------- */
.nl-invhead { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.nl-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-chip { min-height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: #4b4639; font-size: 13px; font-weight: 600; cursor: pointer; }
.nl-chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nl-invgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 12px; }
.nl-ucard { text-align: start; cursor: pointer; padding: 14px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease; position: relative; }
.nl-ucard:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.nl-ucard.is-active { border-color: var(--gold); box-shadow: 0 8px 22px -10px rgba(156,122,60,.4); }
.nl-ucard.is-sold { opacity: .6; }
.nl-ucard__top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted-foreground); }
.nl-ucard__rooms { font-family: var(--font-serif-he); font-size: 1.15rem; font-weight: 700; margin: 8px 0 2px; }
html[lang="en"] .nl-ucard__rooms { font-family: var(--font-serif-en); }
.nl-ucard__fav { position: absolute; inset-block-start: 10px; inset-inline-end: 10px; width: 26px; height: 26px; border: 0; background: transparent; cursor: pointer; color: #c4bdaf; }
.nl-ucard__fav.is-on { color: var(--terracotta); }

/* ---------- price + comps (block 6.5) ---------- */
.nl-pricewrap { display: grid; gap: 22px; }
.nl-pcard2 { background: linear-gradient(150deg, var(--ink), #211f19); color: var(--cream); border-radius: var(--radius-2xl); padding: clamp(22px,4vw,40px); box-shadow: var(--shadow-theater); }
.nl-pcard2__lbl { color: #e9d9a9; font-size: var(--fs-micro); letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 600; }
.nl-pcard2__big { font-family: var(--font-serif-he); font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem); font-weight: 700; line-height: 1.1; margin-top: 8px; }
html[lang="en"] .nl-pcard2__big { font-family: var(--font-serif-en); }
.nl-pchips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.nl-pchip { font-size: 13px; font-weight: 600; color: #efe7d6; background: rgba(242,236,222,.08); border: 1px solid rgba(242,236,222,.18); border-radius: 999px; padding: 5px 12px; }
.nl-pnote { font-size: 12.5px; color: #b8b1a2; line-height: 1.6; margin-top: 14px; }
.nl-comps__h { margin: 4px 0 12px; }
.nl-comps__wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.nl-comps { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--card); }
.nl-comps th, .nl-comps td { padding: 11px 14px; text-align: start; border-bottom: 1px solid var(--border); white-space: nowrap; }
.nl-comps th { background: rgba(156,122,60,.08); font-weight: 600; color: #4b4639; }
.nl-comps tbody tr:last-child td { border-bottom: 0; }
.nl-comps__src { font-size: 12px; color: var(--muted-foreground); margin-top: 10px; }

/* ---------- the complete world (block 8) ---------- */
.nl-world { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(18px,3vw,32px); align-items: start; }
.nl-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); aspect-ratio: 4/3; background: #e9efe6; }
.nl-map svg { width: 100%; height: 100%; display: block; }
.nl-map--error { display: grid; place-items: center; background: linear-gradient(145deg, rgba(250,247,241,.96), rgba(232,226,211,.9)); }
.nl-map-error { margin: 18px; padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid rgba(194,86,58,.28); background: rgba(255,255,255,.76); color: var(--ink); box-shadow: var(--shadow-card); font-size: 14px; line-height: 1.5; text-align: center; }
.nl-pin { position: absolute; transform: translate(-50%,-100%); display: inline-flex; flex-direction: column; align-items: center; cursor: pointer; }
.nl-pin__dot { width: 26px; height: 26px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--ink); border: 2px solid #fff; box-shadow: var(--shadow-soft); display: grid; place-items: center; }
.nl-pin__dot svg { width: 12px; height: 12px; transform: rotate(45deg); color: #fff; }
.nl-pin--project .nl-pin__dot { background: var(--terracotta); width: 32px; height: 32px; }
.nl-pin__lbl { margin-top: 4px; font-size: 11px; font-weight: 600; background: rgba(255,255,255,.85); padding: 1px 6px; border-radius: 4px; white-space: nowrap; opacity: 0; transition: opacity .15s; }
.nl-pin:hover .nl-pin__lbl, .nl-pin.is-on .nl-pin__lbl { opacity: 1; }
.nl-spokes { display: flex; flex-direction: column; gap: 12px; }
.nl-spoke { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card); padding: 16px; }
.nl-spoke__h { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.nl-spoke__h .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--secondary); display: grid; place-items: center; color: var(--gold); flex: none; }
.nl-spoke__items { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.nl-spoke__items span { font-size: 13px; color: #4b4639; background: var(--secondary); border-radius: 999px; padding: 4px 11px; }
.nl-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 22px; }
.nl-statbig { padding: 16px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); }
.nl-statbig b { font-family: var(--font-serif-he); font-size: 1.5rem; display: block; }
html[lang="en"] .nl-statbig b { font-family: var(--font-serif-en); }
.nl-statbig span { font-size: 12.5px; color: var(--muted-foreground); }

/* generic editorial section cards (media/investor/nearby) */
.nl-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.nl-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card); padding: 18px; }
.nl-card .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); display: grid; place-items: center; color: var(--cream); margin-bottom: 12px; }
.nl-card h4 { font-family: var(--font-serif-he); font-weight: 700; margin-bottom: 6px; }
html[lang="en"] .nl-card h4 { font-family: var(--font-serif-en); }
.nl-card p { font-size: var(--fs-small); color: #4b4639; line-height: var(--lh-snug); }
.nl-card--dark { background: linear-gradient(150deg, var(--ink), #2a2620); color: var(--cream); border-color: var(--ink); }
.nl-card--dark p { color: #d3ccbd; } .nl-card--dark .ic { background: rgba(242,236,222,.14); color: #e9d9a9; }

/* media empty / investor */
.nl-empty { border: 1px dashed var(--border); border-radius: var(--radius-lg); padding: 30px; text-align: center; color: var(--muted-foreground); font-size: var(--fs-small); }

/* interior tour (block 7, lazy) */
.nl-interior { margin-bottom: 18px; }
.nl-interior__head { margin-bottom: 10px; }
.nl-interior__stage { position: relative; aspect-ratio: 16 / 9; min-height: 280px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: radial-gradient(120% 90% at 30% 18%, #20242a 0%, #14130f 60%, #0c0b08 100%); display: grid; place-items: center; overflow: hidden; }
.nl-interior__frame { width: 100%; height: 100%; border: 0; display: block; }
.nl-interior__note { font-size: 12px; color: var(--muted-foreground); margin-top: 8px; }
.nl-pano__loading { color: #cfc8b6; font-size: 13px; }

/* ---------- inquiry (block 11) - money moment ---------- */
.nl-inquiry { background: linear-gradient(150deg, var(--ink), #211f19); color: var(--cream); border-radius: var(--radius-2xl); padding: clamp(22px,4vw,44px); box-shadow: var(--shadow-theater); }
.nl-inquiry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,44px); align-items: center; }
.nl-inquiry h2 { color: #fff; }
.nl-inquiry .nl-lede { color: #d3ccbd; }
.nl-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.nl-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #cfc8b6; }
.nl-trust svg { width: 16px; height: 16px; color: var(--sage); }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-ctxchip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; background: rgba(242,236,222,.08); border: 1px solid rgba(242,236,222,.18); font-size: 13px; color: #e9e2d2; }
.nl-ctxchip .d { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.nl-input { width: 100%; min-height: 48px; padding: 0 14px; border-radius: var(--radius); border: 1px solid rgba(242,236,222,.2); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px; }
.nl-input::placeholder { color: #a59e8e; }
.nl-input:focus-visible { outline: 2px solid var(--gold); border-color: transparent; }
.nl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nl-consent { font-size: 11.5px; color: #a59e8e; line-height: 1.5; }
.nl-feedback { padding: 10px 12px; border-radius: 10px; font-size: 13px; line-height: 1.5; }
.nl-feedback.ok { background: rgba(122,143,106,.18); color: #dcebd1; }
.nl-feedback.err { background: rgba(194,86,58,.18); color: #f4ccc0; }

/* sticky inquire / whatsapp */
.nl-sticky { position: fixed; z-index: 40; inset-block-end: 16px; inset-inline-end: 16px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; transform: translateY(140%); transition: transform .35s ease; }
.nl-sticky.is-on { transform: translateY(0); }
.nl-sticky__main { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: var(--terracotta); color: #fff; border: 0; font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 14px 30px -10px rgba(194,86,58,.6); }
.nl-sticky__ctx { font-size: 11px; opacity: .85; }
.nl-sticky__wa { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: #1f8a4c; color: #fff; text-decoration: none !important; font-weight: 600; font-size: 13px; box-shadow: 0 10px 24px -10px rgba(31,138,76,.6); }

/* compare tray */
.nl-compare { position: fixed; z-index: 45; inset-block-end: 0; inset-inline: 0; background: rgba(27,26,23,.97); color: var(--cream); border-top: 1px solid rgba(242,236,222,.18); transform: translateY(100%); transition: transform .3s ease; }
.nl-compare.is-on { transform: translateY(0); }
.nl-compare__row { display: flex; align-items: center; gap: 14px; padding: 12px 0; flex-wrap: wrap; }
.nl-compare__items { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; }
.nl-cmpitem { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(242,236,222,.16); font-size: 13px; }
.nl-cmpitem button { background: none; border: 0; color: #c9c2b2; cursor: pointer; font-size: 15px; line-height: 1; }

/* disclaimer (block 12) */
.nl-disclaimer { border-inline-start: 3px solid var(--gold); background: #fcf7ec; border-radius: var(--radius); padding: 16px 18px; }
.nl-disclaimer b { display: block; margin-bottom: 4px; }
.nl-disclaimer p { font-size: 13.5px; color: #5f5a4d; line-height: 1.65; }

/* footer */
.nl-footer { background: var(--ink); color: #cfc8b6; margin-top: clamp(40px,6vw,80px); }
.nl-footer__row { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; padding-block: 40px; }
.nl-footer h5 { color: #efe7d6; font-family: var(--font-sans-he); font-size: 13px; letter-spacing: var(--tracking-wide); text-transform: uppercase; margin-bottom: 12px; }
.nl-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.nl-footer a { font-size: var(--fs-small); color: #b8b1a2; text-decoration: none; }
.nl-footer a:hover { color: #efe7d6; }
.nl-footer__bottom { border-top: 1px solid rgba(242,236,222,.14); padding-block: 16px; font-size: 12.5px; color: #9a9384; }

/* ---------- home ---------- */
.nl-homehero { text-align: center; padding-block: clamp(40px,7vw,96px); }
.nl-homehero h1 { font-size: var(--fs-display); max-width: 16ch; margin-inline: auto; }
.nl-homehero .nl-lede { margin-inline: auto; margin-top: 16px; text-align: center; }
.nl-searchbar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.nl-searchbar select, .nl-searchbar input { min-height: 48px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 0 14px; font: inherit; min-width: 180px; }
.nl-gallery { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 18px; }
.nl-pcard { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); text-decoration: none; color: inherit; transition: box-shadow .16s ease, transform .16s ease; }
.nl-pcard:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.nl-pcard__img { aspect-ratio: 16/10; background: var(--theater-1) center/cover; position: relative; }
.nl-pcard__body { padding: 16px; }
.nl-pcard__name { font-family: var(--font-serif-he); font-size: 1.3rem; font-weight: 700; }
html[lang="en"] .nl-pcard__name { font-family: var(--font-serif-en); }
.nl-pcard__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nl-hero { grid-template-columns: 1fr; }
  .nl-hero__media { order: -1; aspect-ratio: 16/10; }
  .nl-world { grid-template-columns: 1fr; }
  .nl-inquiry__grid { grid-template-columns: 1fr; }
  .nl-footer__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nl-nav__links { display: none; }
  #nl-root { width: 100%; max-width: 100%; margin-inline: 0; }
  .nl-wrap { width: calc(100% - 20px); max-width: calc(100vw - 20px); }
  .nl-app { max-width: 100vw; }
  .nl-hero, .nl-world, .nl-inquiry__grid, .nl-investorgrid { grid-template-columns: minmax(0, 1fr); }
  .nl-hero__facts, .nl-panel__actions, .nl-hero__cta { min-width: 0; }
  .nl-panel { inset: auto 0 0 0; width: 100%; height: auto; max-height: 84%; transform: translateY(100%); border-inline-start: 0; border-top: 1px solid var(--theater-line); border-radius: 18px 18px 0 0; }
  [dir="rtl"] .nl-panel { transform: translateY(100%); }
  .nl-panel.is-open { transform: translateY(0); }
  .nl-stats { grid-template-columns: 1fr 1fr; }
  .nl-stagewrap { min-height: 420px; }
  .nl-facade { padding: 12px; }
  .nl-facade__notice { inset-inline: 10px; inset-block-end: 10px; padding: 12px; }
  .nl-facade__notice strong { font-size: 16px; }
  .nl-model-error { inset-inline: 10px; inset-block-end: 12px; max-width: calc(100% - 20px); }
  .nl-form__row { grid-template-columns: 1fr; }
  .nl-footer__row { grid-template-columns: 1fr; gap: 18px; }
  .nl-sticky { inset-inline: 16px; align-items: stretch; }
}
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

/* === WordPress full-bleed integration ===
   The engine is a full-page design. WordPress drops #nl-root inside a width-
   constrained content column (is-layout-constrained), which crams the layout.
   Break it out to the full viewport so it renders like the standalone design. */
#nl-root{width:100vw;max-width:100vw;margin-inline:calc(50% - 50vw);overflow-x:clip}
.entry-content #nl-root,.wp-block-post-content #nl-root{margin-block:0}

/* FAQ accordion (block, in About) */
.nl-faq__item{border-bottom:1px solid var(--border);padding:14px 0}
.nl-faq__item summary{cursor:pointer;font-weight:600;font-size:1.05rem;color:var(--ink);list-style:none;display:flex;justify-content:space-between;gap:12px}
.nl-faq__item summary::-webkit-details-marker{display:none}
.nl-faq__item summary::after{content:"+";color:var(--gold);font-weight:700;flex:none}
.nl-faq__item[open] summary::after{content:"\2212"}
.nl-faq__item p{margin:10px 0 0;color:#4b4639;line-height:1.75}

/* Stage Blowout Fix */
.nl-stagewrap { max-height: 75vh; }
/* Floating Controls Docking Fix */
.nl-fly { z-index: 45 !important; bottom: 85px; }
@media (max-width: 760px) { .nl-fly { bottom: 70px; } }

/* --- cinematic lift card (design spec 4B-2): the apartment "drawer" --- */
.nl-lift { position: fixed; z-index: 70; width: 180px; padding: 14px 16px; pointer-events: none;
  border-radius: 10px; border: 1.5px solid #cdb274;
  background: linear-gradient(180deg, rgba(38,35,28,.97), rgba(20,19,15,.97));
  color: #f4eede; box-shadow: 0 30px 60px -18px rgba(0,0,0,.75); }
.nl-lift__floor { font-family: var(--font-serif-he); font-size: 34px; font-weight: 700; line-height: 1; }
.nl-lift__meta  { font-size: 13px; color: #d8c79a; margin-top: 6px; }
.nl-lift__dir   { font-size: 12px; color: #b8b1a2; margin-top: 2px; }

/* default interior: honest generic illustration with a visible label */
.nl-defint { position: relative; }
.nl-defint img { width: 100%; display: block; border-radius: 10px; }
.nl-defint__note { position: absolute; inset-inline-start: 8px; bottom: 8px; max-width: calc(100% - 16px); font-size: 10.5px; line-height: 1.35; font-weight: 600; color: #F4EEDE; background: rgba(20,19,15,.82); border-radius: 6px; padding: 4px 9px; }

/* ---- buy-flow v1 overlay (Tesla-configure > 2-field capture > staged dispatch) ---- */
#nlbuy { position: fixed; inset: 0; z-index: 9000; display: none; }
#nlbuy.is-open { display: block; }
.nlbuy__scrim { position: absolute; inset: 0; background: rgba(20,19,15,.66); backdrop-filter: blur(3px); }
.nlbuy__panel { position: absolute; inset-inline-start: 50%; top: 50%; transform: translate(-50%,-50%); width: min(480px, calc(100vw - 28px)); max-height: calc(100vh - 40px); overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; background: #FAF7F1; border: 1px solid #E2DCD0; border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.4); padding: 20px 22px 22px; font-family: Heebo, system-ui, sans-serif; color: #1B1A17; }
[dir="rtl"] .nlbuy__panel { transform: translate(50%,-50%); }
.nlbuy__head { display: flex; align-items: flex-start; gap: 12px; }
.nlbuy__head h3 { font-family: "Frank Ruhl Libre", serif; font-size: 1.35rem; margin: 0; }
.nlbuy__head p { margin: 3px 0 0; font-size: 12.5px; color: #517048; font-weight: 600; }
.nlbuy__head small { display: block; margin-top: 3px; color: #6D665C; font-size: 12px; }
.nlbuy__dots { display: flex; gap: 5px; margin-inline-start: auto; padding-top: 8px; }
.nlbuy__dots i { width: 22px; height: 4px; border-radius: 4px; background: #E2DCD0; }
.nlbuy__dots i.on { background: #9C7A3C; }
.nlbuy__x { border: 0; background: none; font-size: 15px; cursor: pointer; color: #6D665C; padding: 6px; }
.nlbuy__step { font-size: 1.02rem; margin: 18px 0 10px; }
.nlbuy__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.nlbuy__card { border: 1.5px solid #E2DCD0; background: #fff; border-radius: 12px; padding: 16px 8px; cursor: pointer; font: inherit; font-size: 13.5px; }
.nlbuy__card.on { border-color: #9C7A3C; background: #F7F1E3; box-shadow: 0 0 0 1px #9C7A3C; }
.nlbuy__note { font-size: 11.5px; color: #6D665C; margin: 10px 0 0; line-height: 1.5; }
.nlbuy__list { display: flex; flex-direction: column; gap: 8px; }
.nlbuy__row { display: flex; align-items: center; gap: 11px; text-align: start; border: 1.5px solid #E2DCD0; background: #fff; border-radius: 12px; padding: 11px 13px; cursor: pointer; font: inherit; }
.nlbuy__row small { display: block; color: #6D665C; font-size: 11.5px; margin-top: 1px; }
.nlbuy__row .tick { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid #C9BFA9; flex-shrink: 0; position: relative; }
.nlbuy__row.on { border-color: #9C7A3C; background: #F7F1E3; }
.nlbuy__row.on .tick { background: #9C7A3C; border-color: #9C7A3C; }
.nlbuy__row.on .tick::after { content: "✓"; position: absolute; inset: 0; color: #FAF7F1; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.nlbuy__nav { display: flex; gap: 9px; margin-top: 16px; }
.nlbuy__btn { flex: 1; border: 0; border-radius: 11px; background: #1B1A17; color: #F4EEDE; font: 600 14.5px Heebo, sans-serif; padding: 13px; cursor: pointer; min-height: 46px; }
.nlbuy__btn--ghost { background: #fff; color: #1B1A17; border: 1.5px solid #E2DCD0; flex: 0 0 30%; }
.nlbuy__btn--accent { background: #C2563A; }
.nlbuy__skip { display: block; margin: 12px auto 0; border: 0; background: none; color: #6D665C; font-size: 12.5px; cursor: pointer; text-decoration: underline; }
.nlbuy__form { display: flex; flex-direction: column; gap: 11px; }
.nlbuy__form label span { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 4px; }
.nlbuy__form input[type="text"], .nlbuy__form input[type="tel"] { width: 100%; box-sizing: border-box; border: 1.5px solid #E2DCD0; border-radius: 10px; padding: 12px; font: inherit; background: #fff; }
.nlbuy__consent { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: #51483A; }
.nlbuy__consent input { margin-top: 2px; }
.nlbuy__err { color: #A93F2A; font-size: 12.5px; font-weight: 600; margin: 0; }
.nlbuy__stages { display: flex; flex-direction: column; gap: 15px; padding: 26px 4px; }
.nlbuy__stage { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #A79E8D; transition: color .4s; }
.nlbuy__stage .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #D8CFBB; flex-shrink: 0; position: relative; transition: all .4s; }
.nlbuy__stage.on { color: #1B1A17; }
.nlbuy__stage.on .dot { background: #517048; border-color: #517048; }
.nlbuy__stage.on .dot::after { content: "✓"; position: absolute; inset: 0; color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.nlbuy__done { text-align: center; padding: 8px 4px 2px; }
.nlbuy__done h4 { font-family: "Frank Ruhl Libre", serif; font-size: 1.3rem; margin: 4px 0 8px; }
.nlbuy__done p { color: #51483A; font-size: 14px; line-height: 1.6; }
.nlbuy__next { list-style: none; padding: 0; margin: 16px 0 18px; display: flex; flex-direction: column; gap: 8px; text-align: start; }
.nlbuy__next li { border: 1px solid #E2DCD0; border-radius: 10px; padding: 10px 13px; font-size: 13px; color: #6D665C; background: #fff; }
.nlbuy__next li.on { border-color: #517048; color: #1B1A17; font-weight: 600; }

/* window viewport - the view tab IS the window (2026-07-06) */
.nl-winstage__map { height: clamp(300px, 42vh, 440px); border-radius: 12px; overflow: hidden; background: #14130F; }
.nl-winstage__map .mapboxgl-canvas { border-radius: 12px; }
.nl-winstage__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.nl-winstage__turn { width: 40px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: 16px; line-height: 1; cursor: pointer; transition: border-color .2s; }
.nl-winstage__turn:hover { border-color: #d8c79a; }
/* fullscreen window (2026-07-11): native where possible, fixed overlay on iPhone */
.nl-winstage--fs { position: fixed; inset: 0; z-index: 100000; background: #14130F; padding: 12px; display: flex; flex-direction: column; }
.nl-winstage--fs .nl-winstage__map { flex: 1; height: auto; border-radius: 0; }
.nl-winstage--fs .nl-winstage__note { color: #8E877A; }
body.nl-noscroll { overflow: hidden; }
.nl-winstage:fullscreen { padding: 12px; background: #14130F; display: flex; flex-direction: column; }
.nl-winstage:fullscreen .nl-winstage__map { flex: 1; height: auto; }
.nl-winstage__meta { color: var(--theater-sub); font-size: 12.5px; font-weight: 600; }
.nl-winstage__note { color: var(--theater-sub); font-size: 11.5px; line-height: 1.5; margin: 7px 0 0; }
.nl-winstage__int { margin-top: 12px; }
.nl-winstage__int summary { cursor: pointer; color: #d8c79a; font-size: 13px; font-weight: 600; }
.nl-winstage__int img { width: 100%; display: block; border-radius: 10px; margin-top: 8px; }
.nl-winstage__int .nl-defint__note { position: static; display: block; margin-top: 6px; max-width: none; }

/* the DEFAULT walk - first-person step-through of the standard set (2026-07-06) */
.nl-dtour { margin-top: 4px; }
.nl-dtour__stage { position: relative; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; background: #14130F; cursor: grab; outline: none; }
.nl-dtour__stage:active { cursor: grabbing; }
.nl-dtour__img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.12); transition: opacity .22s ease; user-select: none; }
.nl-dtour.is-walking .nl-dtour__img { opacity: 0; }
.nl-dtour__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(20,19,15,.55); color: #F4EEDE; font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s, border-color .2s; z-index: 2; }
.nl-dtour__nav:hover { background: rgba(20,19,15,.8); border-color: #d8c79a; }
.nl-dtour__nav--prev { inset-inline-start: 12px; }
.nl-dtour__nav--next { inset-inline-end: 12px; }
.nl-dtour__hud { position: absolute; top: 10px; inset-inline-start: 12px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; z-index: 2; }
.nl-dtour__room { background: rgba(20,19,15,.72); color: #F4EEDE; font: 600 13px/1 Heebo, sans-serif; border-radius: 8px; padding: 7px 12px; }
.nl-dtour__hint { background: rgba(20,19,15,.55); color: #D8D2C4; font: 400 10.5px/1 Heebo, sans-serif; border-radius: 6px; padding: 5px 9px; }
.nl-dtour__tag { position: absolute; bottom: 10px; inset-inline-start: 12px; max-width: calc(100% - 24px); background: rgba(20,19,15,.72); color: #E9E2D2; font: 500 10.5px/1.4 Heebo, sans-serif; border-radius: 6px; padding: 5px 10px; z-index: 2; }
.nl-dtour__doors { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.nl-dtour__door { font: 600 12.5px/1 Heebo, sans-serif; color: #6D665C; background: #fff; border: 1px solid #E2DCD0; border-radius: 999px; padding: 8px 13px; cursor: pointer; transition: border-color .2s, color .2s; }
.nl-dtour__door:hover { border-color: #9C7A3C; color: #1B1A17; }
.nl-dtour__door.is-on { background: #9C7A3C; border-color: #9C7A3C; color: #FAF7F1; }
@media (max-width: 640px) { .nl-dtour__stage { aspect-ratio: 4/3; } .nl-dtour__nav { width: 36px; height: 36px; } }
.nlbuy__panel::-webkit-scrollbar { display: none; }

/* est. monthly payment strip in the apartment panel (2026-07-06) */
.nl-mortg { margin-top: 10px; padding: 10px 13px; border: 1px solid rgba(216,199,154,.4); border-radius: 10px; background: rgba(216,199,154,.08); }
.nl-mortg b { display: block; color: #d8c79a; font-size: 14px; }
.nl-mortg__note { display: block; margin-top: 3px; color: var(--theater-sub); font-size: 10.5px; line-height: 1.45; }

/* honest chip on the generic default model (owner law: honesty over beauty) */
.nl-generic-chip{position:absolute;top:14px;inset-inline-start:14px;z-index:4;background:rgba(20,19,15,.82);color:#E9D9A8;font:600 12px/1 Heebo,sans-serif;padding:7px 12px;border-radius:999px;border:1px solid rgba(233,217,168,.4);pointer-events:none}

/* filter-the-building fusion (2026-07-07): non-matching units dim on stage + facade */
.nl-unit-dim{opacity:.16!important;filter:saturate(.25);transition:opacity .3s}
.nl-filters--stage{display:inline-flex;gap:4px;padding:4px;background:#F3EEE3;border:1px solid #E2DCD0;border-radius:11px;margin-inline-end:8px;vertical-align:middle}
.nl-filters--stage>button{color:#51483A;font:600 12.5px/1 Heebo,sans-serif;background:transparent;border:0;border-radius:8px;padding:8px 12px;cursor:pointer}
.nl-filters--stage>button[aria-pressed="true"]{background:#1B1A17;color:#FAF7F1}
@media(max-width:640px){.nl-filters--stage{flex-wrap:wrap}}

/* sunset engine backdrops (2026-07-07) */
.nl-light--dusk #nl-mv{background:linear-gradient(180deg,#3E2E33 0%,#1E1A1B 70%)}
.nl-light--night #nl-mv{background:linear-gradient(180deg,#0C0F16 0%,#14130F 70%)}
.nl-light--dusk,.nl-light--night{transition:background .5s}

/* live co-touring (2026-07-07) */
#nl-cotour-bar{position:fixed;top:14px;left:50%;transform:translateX(-50%);z-index:99999;font:700 13px/1 Heebo,sans-serif;border-radius:999px;padding:11px 18px;box-shadow:0 12px 30px -10px rgba(0,0,0,.45)}
#nl-cotour-bar.is-host{background:#C2563A;color:#FAF7F1}
#nl-cotour-bar.is-viewer{background:#14130F;color:#E9D9A8;border:1px solid #9C7A3C}
.nl-cotour-btn{font:600 12.5px/1 Heebo,sans-serif;color:#51483A;background:#F3EEE3;border:1px solid #E2DCD0;border-radius:11px;padding:9px 13px;cursor:pointer;margin-inline-end:8px;vertical-align:middle}
.nl-cotour-btn:hover{border-color:#9C7A3C;color:#9C7A3C}

/* UX-MAX cycle (2026-07-07): booking-app patterns, all data honest */
/* seat-map hover tooltip: the hotspot's aria-label IS the tooltip, so screen
   readers and sighted hover users read the exact same truth */
.nl-hot::before,.nl-fsq::before{content:attr(aria-label);position:absolute;bottom:calc(100% + 9px);left:50%;transform:translateX(-50%) translateY(4px);background:#14130F;color:#F5EFE2;font:500 11.5px/1.4 Heebo,sans-serif;padding:7px 11px;border-radius:8px;border:1px solid rgba(233,217,168,.3);max-width:240px;width:max-content;white-space:normal;text-align:center;opacity:0;pointer-events:none;transition:opacity .16s,transform .16s;z-index:30}
.nl-hot:hover::before,.nl-hot:focus-visible::before,.nl-fsq:hover::before,.nl-fsq:focus-visible::before{opacity:1;transform:translateX(-50%) translateY(0)}
/* facet counts on inventory chips */
.nl-chip__n{opacity:.6;font-size:.85em;margin-inline-start:5px;font-weight:600}
.nl-chip[aria-pressed="true"] .nl-chip__n{opacity:.75}
/* honest scarcity line (panel is theater-dark) */
.nl-scarce{margin-top:10px;font:600 12.5px/1.5 Heebo,sans-serif;color:#E8A18C}
.nl-scarce::before{content:"";display:inline-block;width:7px;height:7px;border-radius:50%;background:#C2563A;margin-inline-end:7px;vertical-align:1px}
.nl-scarce__link{background:none;border:0;padding:0;color:#E9D9A8;font:600 12.5px/1.5 Heebo,sans-serif;text-decoration:underline;cursor:pointer}
.nl-scarce__link:hover{color:#F5EFE2}
/* WhatsApp per-apartment share */
.nl-iconbtn--wa{text-decoration:none!important;color:#7BC98A}
.nl-iconbtn--wa:hover{border-color:rgba(123,201,138,.5)}
/* recently viewed strip */
.nl-recent{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin:16px 0 4px}
.nl-recent__t{font:600 12px/1 Heebo,sans-serif;color:#6D665C}
.nl-recent__it{font:500 12.5px/1 Heebo,sans-serif;color:#1B1A17;background:#F3EEE3;border:1px solid #E2DCD0;border-radius:999px;padding:9px 13px;cursor:pointer;text-decoration:none;transition:border-color .15s;max-width:280px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.nl-recent__it:hover{border-color:#9C7A3C}
/* the way-back pill after a camera dive */
.nl-resetview{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);z-index:5;background:rgba(20,19,15,.85);color:#F5EFE2;font:600 12.5px/1 Heebo,sans-serif;border:1px solid rgba(233,217,168,.35);border-radius:999px;padding:11px 16px;cursor:pointer;backdrop-filter:blur(3px)}
.nl-resetview:hover{border-color:#E9D9A8}
/* micro-interactions (reduced-motion users exempt) */
@keyframes nl-favpop{0%{transform:scale(1)}40%{transform:scale(1.35)}100%{transform:scale(1)}}
.nl-iconbtn.is-on svg,.nl-ucard__fav.is-on svg{animation:nl-favpop .3s ease}
@media (prefers-reduced-motion:reduce){.nl-iconbtn.is-on svg,.nl-ucard__fav.is-on svg{animation:none}.nl-hot::before,.nl-fsq::before{transition:none}}

/* ONE contact bar on engine pages: the global CTA cluster yields to the engine sticky */
body.nl-has-engine #nlcta{display:none}

/* APARTMENT STUDIO (2026-07-07): design-before-you-buy overlay */
body.nlst-lock{overflow:hidden}
#nlst{position:fixed;inset:0;z-index:100000;background:#FAF7F1;display:flex;flex-direction:column;font-family:Heebo,system-ui,sans-serif;color:#1B1A17}
.nlst-head{display:flex;align-items:center;gap:14px;padding:14px 20px;background:#14130F;color:#FAF7F1}
.nlst-head b{font:700 17px/1.2 "Frank Ruhl Libre",serif}
.nlst-sub{display:block;font:400 12px/1.4 Heebo;color:#CDC5B4}
.nlst-honest{margin-inline-start:auto;font:600 11.5px/1.4 Heebo;color:#E9D9A8;border:1px solid rgba(233,217,168,.4);border-radius:999px;padding:6px 12px}
.nlst-x{background:none;border:0;color:#FAF7F1;font-size:17px;cursor:pointer;padding:6px 10px}
.nlst-body{flex:1;display:flex;gap:0;min-height:0}
.nlst-pal{width:256px;flex:0 0 256px;overflow-y:auto;background:#F3EEE3;border-inline-end:1px solid #E2DCD0;padding:14px}
.nlst-pal__t{font:700 12px/1 Heebo;letter-spacing:.08em;color:#8A6B2F;margin:0 0 8px}
.nlst-pi{display:flex;align-items:center;gap:8px;width:100%;background:#fff;border:1px solid #E2DCD0;border-radius:10px;padding:9px 11px;margin-bottom:6px;font:600 12.5px/1.2 Heebo;color:#1B1A17;cursor:pointer;text-align:start}
.nlst-pi:hover{border-color:#9C7A3C}
.nlst-pi i{margin-inline-start:auto;font-style:normal;font-size:10.5px;color:#6D665C;white-space:nowrap}
.nlst-pi__ic{font-size:15px}
.nlst-pi--a11y{border-color:#B7C9E2;background:#F4F7FB}
#nlst-notes{width:100%;min-height:88px;border:1px solid #E2DCD0;border-radius:10px;padding:10px;font:400 12.5px/1.5 Heebo;background:#fff;resize:vertical}
.nlst-pros{display:block;margin-top:10px;font:700 12.5px/1 Heebo;color:#9C7A3C;text-decoration:none!important}
.nlst-stage{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:18px;overflow:auto;position:relative}
.nlst-plan{position:relative;background:#fff;border:2px solid #1B1A17;border-radius:6px;box-shadow:0 30px 60px -34px rgba(27,26,23,.5);touch-action:none}
.nlst-room{position:absolute;border:1px dashed #C9BFA9;display:flex;align-items:flex-start;justify-content:flex-start;pointer-events:none}
.nlst-room span{font:600 10.5px/1.2 Heebo;color:#8A6B2F;padding:6px 8px}
.nlst-scale{position:absolute;bottom:-24px;inset-inline-start:0;font:500 11px/1 Heebo;color:#6D665C}
.nlst-it{position:absolute;background:rgba(156,122,60,.16);border:1.5px solid #9C7A3C;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:grab;user-select:none;touch-action:none}
.nlst-it b{font:600 10px/1.15 Heebo;color:#51483A;text-align:center;padding:2px;pointer-events:none}
.nlst-it--round{border-radius:50%}
.nlst-it--a11y{background:rgba(74,111,165,.12);border-color:#4A6FA5}
.nlst-it--a11y b{color:#33517E}
.nlst-it.is-sel{box-shadow:0 0 0 3px rgba(194,86,58,.45);border-color:#C2563A;z-index:5}
.nlst-it__note{position:absolute;top:-8px;inset-inline-end:-8px;background:#C2563A;color:#fff;border-radius:50%;width:18px;height:18px;font:700 10px/18px Heebo;text-align:center;font-style:normal}
.nlst-tools{display:flex;gap:8px;margin-top:30px;flex-wrap:wrap;justify-content:center}
.nlst-tools button{background:#fff;border:1px solid #E2DCD0;border-radius:9px;font:600 12.5px/1 Heebo;color:#1B1A17;padding:10px 14px;cursor:pointer}
.nlst-tools button:hover{border-color:#9C7A3C}
.nlst-foot{display:flex;gap:10px;align-items:center;padding:12px 20px;background:#fff;border-top:1px solid #E2DCD0;flex-wrap:wrap}
.nlst-foot .nl-btn{cursor:pointer}
.nlst-wa{background:#1f8a4c!important;color:#fff!important;text-decoration:none!important}
.nlst-count{margin-inline-start:auto;font:600 12.5px/1 Heebo;color:#6D665C}
.nl-btn--studio{border-color:#9C7A3C;color:#E9D9A8}
@media(max-width:820px){.nlst-body{flex-direction:column}.nlst-pal{width:auto;flex:0 0 auto;max-height:38vh;border-inline-end:0;border-bottom:1px solid #E2DCD0;display:grid;grid-template-columns:1fr 1fr;gap:6px;align-content:start}.nlst-pal__t{grid-column:1/-1}#nlst-notes,.nlst-pros{grid-column:1/-1}.nlst-honest{display:none}.nlst-foot{padding-bottom:calc(12px + env(safe-area-inset-bottom))}}

.nlst-dist{position:absolute;bottom:calc(100% + 4px);inset-inline-start:50%;transform:translateX(-50%);background:#14130F;color:#E9D9A8;font:600 10.5px/1 Heebo,sans-serif;border-radius:6px;padding:4px 7px;white-space:nowrap;pointer-events:none}

/* science layer (2026-07-07): sun estimate + TOPSIS top pick */
.nl-sun{margin-top:10px;font:600 12.5px/1.5 Heebo,sans-serif;color:#E9D9A8}
.nl-sun__note{display:block;font:400 11px/1.4 Heebo,sans-serif;color:#8E877A}
.nl-cmpitem.is-top{border-color:#C99C49;position:relative}
.nl-cmptop{display:block;font:700 10px/1 Heebo,sans-serif;color:#E9D9A8;font-style:normal;margin-bottom:3px}
.nl-studio-launch{border-color:#C99C49;color:#8A6B2F;background:#FBF4E4}
.nl-studio-launch:hover{background:#F3E9CF}

/* THE DOCK (2026-07-11, owner: "labels are too much on the frame"): the
   working controls live UNDER the stage in normal flow - no overlay, no
   pointer-events traps. Top bar keeps only title + 3d/facade toggle. */
.nl-theater__dock { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px clamp(14px,2vw,22px); background: #14130F; border-top: 1px solid var(--theater-line); }
.nl-theater__dock .nl-cotour-btn { margin-inline-end: 0; background: rgba(243,238,227,.06); border-color: rgba(226,220,208,.28); color: #E9E2D2; }
.nl-theater__dock .nl-cotour-btn:hover { border-color: #C99C49; color: #E9D9A8; }
.nl-theater__dock .nl-studio-launch { background: rgba(201,156,73,.14); border-color: rgba(201,156,73,.5); color: #E9D9A8; }

/* sun dial: real equinox sun path drives the stage light */
.nl-sundial { display: inline-flex; align-items: center; gap: 10px; flex: 1 1 220px; min-width: 200px; background: rgba(243,238,227,.05); border: 1px solid rgba(226,220,208,.22); border-radius: 999px; padding: 8px 14px; }
.nl-sundial__sun { color: #C99C49; font-size: 15px; line-height: 1; }
.nl-sundial input[type="range"] { flex: 1; direction: ltr; accent-color: #9C7A3C; min-width: 110px; height: 18px; cursor: pointer; }
.nl-sundial__time { font: 600 12.5px/1 Heebo, sans-serif; color: #d8c79a; font-variant-numeric: tabular-nums; min-width: 40px; text-align: center; }
.nl-sundial__note { flex-basis: 100%; margin: 2px 4px 0; font: 400 11px/1.5 Heebo, sans-serif; color: #8E877A; }

/* the sun itself, on the stage edge at the real azimuth */
.nl-sunmark { position: absolute; z-index: 5; width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, #F3DFA6 0%, #C99C49 45%, rgba(201,156,73,0) 72%); box-shadow: 0 0 22px 6px rgba(201,156,73,.45); transition: left .5s ease, top .5s ease, opacity .4s ease; }
.nl-sunmark[hidden] { display: none; }

/* active-filter flag on the stage (chips live at the inventory head) */
.nl-filterflag { position: absolute; z-index: 5; inset-block-start: 14px; inset-inline-start: 14px; background: rgba(20,19,15,.85); color: #E9D9A8; font: 600 12px/1 Heebo, sans-serif; border: 1px solid rgba(233,217,168,.4); border-radius: 999px; padding: 9px 13px; cursor: pointer; backdrop-filter: blur(3px); }
.nl-filterflag:hover { border-color: #E9D9A8; }
.nl-filterflag[hidden] { display: none; }

@media (max-width: 700px) {
  .nl-theater__dock { padding: 10px 12px; }
  .nl-sundial { flex-basis: 100%; }
  .nl-theater__dock .nl-cotour-btn { flex: 1 1 auto; min-height: 44px; text-align: center; }
}

/* studio v2 (2026-07-11): top-view plan symbols + auto-arrange */
.nlst-it{color:#4A4437}
.nlst-it svg{position:absolute;inset:2px;width:calc(100% - 4px);height:calc(100% - 4px);pointer-events:none;opacity:.9}
.nlst-it b{position:relative;z-index:1;background:rgba(250,247,241,.82);border-radius:5px;padding:1px 5px}
.nlst-it--a11y svg{opacity:.65}
.nlst-auto{border-color:#C99C49!important;color:#8A6B2F!important;background:#FBF4E4!important}
