/* =============================================================================
   ELARA · Night/Mobile shared styles
   Phone-first refinements layered on top of elara.css.
   Design width baseline: 390px. Scales gracefully to ~480px and tablet.
   ============================================================================= */

/* The chrome (ticker/masthead/nav/foot) is built by chrome.js. The CSS in
   elara.css already collapses it on <=780px. We refine spacing here. */

/* =============================================================================
   MOBILE HAMBURGER NAV
   - Replaces .nav-mobile scrolling row with a single condensed top-bar:
     [☰]  ELARA  [✈]
   - Hamburger opens a full-bleed overlay with sectioned link groups,
     scrollable body, scrim, focus trap, ESC/tap-scrim to close, body-scroll-lock.
   - Designed to scale: groups list grows vertically, sub-items wrap, scrolls
     gracefully when content exceeds viewport height.
   ============================================================================= */
.is-mobile .nav-mobile{ display: none; }   /* hide the legacy chip-row entirely */
.is-mobile .nav{ display: none; }
.is-mobile .ticker{ display: none; }       /* condense — single top bar wins */
.is-mobile .masthead{ display: none; }     /* replaced by .nm-topbar */

/* condensed top-bar: [ELARA + date] [live stamp] [WhatsApp + menu]
   Auto-hides on scroll down, reveals on scroll up. */
.nm-topbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display:grid; grid-template-columns: minmax(94px,1fr) auto auto;
  align-items:center; height: 60px;
  padding: 0 12px;
  gap: 8px;
  background: linear-gradient(180deg, rgba(10,8,7,0.94), rgba(10,8,7,0.84));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair);
  transform: translateY(0);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.nm-topbar.is-hidden{ transform: translateY(-100%); }
/* nudge body content down so first content isn't hidden under fixed bar */
.is-mobile{ padding-top: 60px; }
.elara-mobile-brand{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:var(--ink);
  text-decoration:none;
  font-family:var(--mono);
  text-transform:uppercase;
  line-height:1.2;
}
.elara-mobile-brand span{
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.08em;
}
.elara-mobile-brand small{
  display:block;
  max-width:118px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  margin-top:2px;
  color:var(--ink-3);
  font-size:9px;
  letter-spacing:0.08em;
}
.elara-mobile-stamp{
  display:inline-flex;
  align-items:center;
  max-width:116px;
  min-height:28px;
  padding:0 8px;
  border:1px solid var(--hair);
  color:var(--ink-2);
  background:linear-gradient(180deg,rgba(255,255,255,0.035),rgba(255,255,255,0.012));
  box-shadow:inset 0 1px 0 rgba(243,239,233,0.04);
  font-family:var(--mono);
  text-transform:uppercase;
  font-size:9px;
  letter-spacing:0.08em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.elara-mobile-stamp::before{
  content:"";
  width:5px;
  height:5px;
  margin-right:6px;
  flex:0 0 auto;
  border-radius:999px;
  background:var(--gold);
}
.nm-topbar .nm-actions{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:0;
  min-height:40px;
  padding:3px 4px 3px 8px;
  border:1px solid var(--hair);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,0.035),rgba(255,255,255,0.012));
  box-shadow:inset 0 1px 0 rgba(243,239,233,0.04);
}
.nm-topbar .elara-theme-toggle{
  width:44px;
  height:56px;
  border:0;
  background:transparent;
  color:var(--ink-2);
}
.nm-topbar .elara-theme-toggle svg{
  width:20px;
  height:20px;
}
.theme-paper.is-mobile .nm-topbar .elara-theme-toggle{ color: var(--ink); }
.theme-night.is-mobile .nm-topbar .elara-theme-toggle{ color: var(--ink-2); }

/* Messaging icons — quiet gold to match the brand */
.nm-topbar .wa,
.nm-topbar .tg{
  width: 32px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: transparent;
  border: 0;
  text-decoration: none;
}
.nm-topbar .wa svg{ width: 22px; height: 22px; }
.nm-topbar .tg svg{ width: 20px; height: 20px; }
.nm-topbar .wa .lbl,
.nm-topbar .tg .lbl{ display: none; }

/* Paper mode uses the same mobile chrome geometry, with paper-register colors. */
.theme-paper.is-mobile .nm-topbar{
  background: rgba(241,236,221,0.92);
  color: var(--ink);
}
.theme-paper.is-mobile .elara-mobile-stamp{ background: rgba(14,13,10,0.018); }
.theme-paper.is-mobile .nm-menu .scrim{ background: rgba(14,13,10,0.26); }
.theme-paper.is-mobile .nm-menu .panel{
  background:
    radial-gradient(120% 60% at 30% 0%, rgba(201,162,79,0.08), transparent 55%),
    var(--bg);
}
.theme-paper.is-mobile .nm-menu .nm-sub{ background: rgba(14,13,10,0.025); }

/* slashes — large central tap target that opens the menu */
.nm-topbar .burger.slashes{
  min-height: 34px;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin-left:4px;
  padding: 0 3px 0 10px;
  border-left:1px solid var(--hair);
  color:var(--ink);
  font-family:var(--mono);
  text-transform:uppercase;
  font-size:9px;
  letter-spacing:0.08em;
}
.nm-topbar .burger.slashes .slash-lines{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:3.5px;
  width:24px;
  height:18px;
}
.nm-topbar .burger.slashes .slash-lines > span{
  display:block;
  width: 1.5px;
  height: 17px;
  background: var(--gold);
  transform: skewX(-22deg);
  transition: transform .22s cubic-bezier(.16,1,.3,1), opacity .22s cubic-bezier(.16,1,.3,1);
}
.nm-topbar .burger.slashes:active .slash-lines > span{
  transform: skewX(-22deg) translateY(1px);
  opacity: 0.7;
}
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span:nth-child(1){ transform: skewX(-22deg) translateX(4px); }
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span:nth-child(4){ transform: skewX(-22deg) translateX(-4px); }

/* ---------- the overlay menu ---------- */
.nm-menu{
  position: fixed; left: 0; right: 0; bottom: 0; top: 60px; /* below topbar */
  z-index: 30; /* below topbar (z40) so //// stays visible & clickable */
  display: none;
}
.nm-menu.is-open{ display: block; }
.nm-menu .scrim{
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity .25s ease;
}

/* pulse the //// slashes when menu is open — slow & elegant */
@keyframes slash-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span{
  animation: slash-pulse 2.4s ease-in-out infinite;
}
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span:nth-child(2){ animation-delay: 0.15s; }
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span:nth-child(3){ animation-delay: 0.30s; }
.nm-topbar .burger.slashes[aria-expanded="true"] .slash-lines > span:nth-child(4){ animation-delay: 0.45s; }
.nm-menu.is-open .scrim{ opacity: 1; }

.nm-menu .panel{
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 30% 0%, rgba(201,162,79,0.10), transparent 55%),
    #0A0807;
  display:flex; flex-direction: column;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .26s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
  border-bottom: 1px solid var(--hair);
}
.nm-menu.is-open .panel{
  transform: translateY(0);
  opacity: 1;
}

/* panel header — same layout as top-bar so close X sits where slashes were */
.nm-menu .panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 60px;
  padding: 0 8px 0 20px;
  border-bottom: 1px solid var(--hair);
  flex-shrink: 0;
}
.nm-menu .nm-close{
  width: 56px; height: 56px;
  display:inline-flex; align-items:center; justify-content:center;
  color: var(--ink); background: transparent; border: 0;
  cursor: pointer;
}
.nm-menu .nm-close span{ display: none; }
.nm-menu .nm-close svg{ width: 22px; height: 22px; }
.nm-menu .panel-head .brand{
  text-align: left;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.22em; color: var(--ink-2);
}

/* scrollable body */
.nm-menu .panel-body{
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 28px;
}

/* FLAT list — no groups, no italics, with optional sub-items */
.nm-menu .nm-list{
  list-style: none; padding: 0; margin: 0;
}
.nm-menu .nm-list > li > a,
.nm-menu .nm-list > li > .row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hair);
  text-decoration: none;
}
.nm-menu .nm-list > li.has-sub > .row{ cursor: default; }
.nm-menu .nm-list > li:last-child > a,
.nm-menu .nm-list > li:last-child > .row{ border-bottom: 0; }
.nm-menu .nm-list .lbl{
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--ink);
  flex: 1; min-width: 0;
}
.nm-menu .nm-list .caret{
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.nm-menu .nm-list > li > a.is-active{ background: rgba(201,162,79,0.05); }
.nm-menu .nm-list > li > a.is-active .lbl{ color: var(--gold); }
.nm-menu .nm-list > li > a:active{ background: rgba(201,162,79,0.08); }

/* sub-items (indented, smaller) */
.nm-menu .nm-sub{
  list-style: none; padding: 0; margin: 0;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--hair);
}
.nm-menu .nm-sub li a{
  display:flex; align-items:center;
  padding: 14px 24px 14px 44px;
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
}
.nm-menu .nm-sub li:last-child a{ border-bottom: 0; }
.nm-menu .nm-sub .lbl{
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-2);
}
.nm-menu .nm-sub li a:active .lbl{ color: var(--gold); }

/* in-menu contact CTAs — quiet, gold-toned, on-brand */
.nm-menu .nm-wa-big,
.nm-menu .nm-contact-big{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 36px 24px 28px;
}
.nm-menu .nm-wa-big a,
.nm-menu .nm-contact-big a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  text-decoration: none;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.nm-menu .nm-wa-big a svg,
.nm-menu .nm-contact-big a svg{ width: 18px; height: 18px; }
.nm-menu .nm-wa-big a:active,
.nm-menu .nm-contact-big a:active{ background: rgba(201,162,79,0.06); }
.nm-menu .nm-wa-big .hint,
.nm-menu .nm-contact-big .hint{
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

/* lock body when menu is open */
body.nm-menu-open{
  overflow: hidden;
  /* keep iOS from rubber-banding behind */
  position: relative;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .nm-menu .scrim,
  .nm-menu .panel{ transition: none !important; }
}

/* ---------- viewport scaffolding ---------- */
.theme-night.is-mobile{
  --maxw: 100%;
}
.theme-night.is-mobile .page{ padding: 0 16px; }
.theme-night.is-mobile .masthead{ padding: 12px 16px 8px; font-size: 9.5px; }
.theme-night.is-mobile .nav-mobile{ padding: 8px 16px 10px; font-size: 9.5px; gap: 16px; }
.theme-night.is-mobile .ticker{ height: 26px; font-size: 9.5px; }
.theme-night.is-mobile .foot{ padding: 22px 16px 18px; font-size: 9.5px; }

/* ---------- common card chrome (photo + word) ---------- */
.nm-card{
  position:relative;
  background: #131110;
  border: 1px solid rgba(241,236,221,0.10);
  overflow: hidden;
  isolation: isolate;
}
.nm-card.photo{
  aspect-ratio: 3/4;
  background:
    radial-gradient(120% 80% at 30% 35%, rgba(201,162,79,0.18), transparent 55%),
    radial-gradient(140% 90% at 80% 70%, rgba(241,236,221,0.10), transparent 55%),
    linear-gradient(160deg, #2a221b 0%, #15110d 60%, #0c0907 100%);
}
.nm-card.photo::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size:220px;
  mix-blend-mode: overlay; opacity:.6;
}
.nm-card.photo::after{
  content: none;
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic;
  color: rgba(241,236,221,0.32); font-size: 13px;
  letter-spacing: 0.02em;
}
.nm-card .rail{
  position:absolute; left:8px; top:10px; bottom:10px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); text-transform: uppercase;
  font-size: 8.5px; letter-spacing: 0.3em;
  color: rgba(241,236,221,0.85);
}
.nm-card .heart{
  position:absolute; top:8px; right:8px;
  width:20px; height:20px;
  color: rgba(241,236,221,0.78);
}

/* ---------- page header (mobile) ---------- */
.nm-ph{
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--hair);
}
.nm-ph .crumb{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3);
  margin-bottom: 14px;
}
.nm-ph h1{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(48px, 13vw, 72px);
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.nm-ph h1 .roman{
  font-family: var(--display); font-style: normal; font-weight: 600;
  letter-spacing: -0.04em;
}
.nm-ph .dek{
  margin-top: 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.4;
  color: var(--ink-2);
  max-width: 36ch;
}
.nm-ph .meta{
  margin-top: 14px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3);
  line-height: 1.7;
}
.nm-ph .meta .gold{ color: var(--gold); }

/* ---------- section heads ---------- */
.nm-sec{ padding: 36px 0; border-top: 1px solid var(--hair); }
.nm-sec:first-of-type{ border-top: 0; }
.nm-sec-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 12px; margin-bottom: 18px;
}
.nm-sec-head .title{
  font-family: var(--serif); font-style: normal; font-weight: 400;
  font-size: 30px; line-height: 1; letter-spacing: -0.005em;
  color: var(--ink);
}
.nm-sec-head .more{
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--gold);
  white-space: nowrap;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.nm-sec-head .kicker{
  display:block; margin-top: 4px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-2);
}

/* ---------- mobile escort grid ---------- */
.nm-grid-2{
  display:grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.nm-grid-1{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.nm-ec{
  position:relative;
  background: transparent;
  border: 1px solid var(--hair);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.nm-ec.is-pick{ border-color: var(--gold); }
.nm-ec .photo{
  position:relative; aspect-ratio: 4/5;
  background:
    radial-gradient(120% 80% at 30% 35%, rgba(201,162,79,0.18), transparent 55%),
    radial-gradient(140% 90% at 80% 70%, rgba(241,236,221,0.10), transparent 55%),
    linear-gradient(160deg, #2a221b 0%, #15110d 60%, #0c0907 100%);
  overflow:hidden;
}
.nm-ec .photo::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size:220px;
  mix-blend-mode: overlay; opacity:.55;
}
.nm-ec .photo::after{
  content: none;
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic;
  color: rgba(241,236,221,0.30); font-size: 12px;
  letter-spacing: 0.02em;
}
.nm-ec .rail{
  position:absolute; left:8px; top:10px; bottom:10px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); text-transform: uppercase;
  font-size: 8.5px; letter-spacing: 0.3em;
  color: rgba(241,236,221,0.85);
}
.nm-ec .heart{
  position:absolute; top:8px; right:8px;
  width:18px; height:18px;
  color: rgba(241,236,221,0.78);
}
.nm-ec .pick-tag{
  position:absolute; bottom:8px; left:8px;
  padding: 4px 8px; border-radius: 999px;
  background: var(--gold); color: #0A0A0A;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 8.5px; letter-spacing: 0.18em;
}
.nm-ec .meta{
  padding: 12px 12px 14px;
  text-align:center;
  border-top: 1px solid var(--hair);
  display:flex; flex-direction:column; gap: 4px;
}
.nm-ec .name{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1; color: var(--ink);
}
.nm-ec .epithet{
  font-family: var(--serif); font-style: italic;
  font-size: 11.5px; color: var(--ink-2); line-height:1.3;
}
.nm-ec .stats{
  margin-top: 4px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.14em; color: var(--ink-3);
}
.nm-ec .rate{
  margin-top: 4px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.14em; color: var(--gold);
}
.nm-ec .rate .slash{ color: var(--ink-3); margin: 0 4px; }

/* ---------- chips / pills row (horizontal scroll) ---------- */
.nm-chips{
  display:flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
}
.nm-chips::-webkit-scrollbar{ display:none; }
.nm-chip{
  flex-shrink:0;
  padding: 7px 12px;
  border: 1px solid var(--hair-2); border-radius: 999px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.14em; color: var(--ink-3);
  white-space: nowrap;
  display:inline-flex; align-items:center; gap: 6px;
}
.nm-chip.is-on{ color: var(--ink); border-color: var(--ink); }
.nm-chip .num{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--gold); color: #0A0A0A;
  font-size: 8.5px; letter-spacing: 0;
}
.nm-chip .heart-i{ width:10px; height:10px; color: var(--gold); }

/* ---------- mobile filter sheet (bottom drawer) ---------- */
.nm-filter-fab{
  position: fixed; right: 14px; bottom: 18px; z-index: 30;
  display:inline-flex; align-items:center; gap: 8px;
  padding: 12px 16px;
  background: var(--gold); color: #0A0A0A;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 10px; letter-spacing: 0.18em;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

/* ---------- toolbar (count + sort) ---------- */
.nm-toolbar{
  display:flex; justify-content:space-between; align-items:flex-end;
  padding: 18px 0 14px; gap: 12px;
}
.nm-toolbar .count{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1; color: var(--ink);
}
.nm-toolbar .count em{ color: var(--gold); }
.nm-toolbar .count .sub{
  display:block; margin-top: 4px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.16em; color: var(--ink-3);
}
.nm-toolbar .sort{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-3);
}
.nm-toolbar .sort .sel{ color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ---------- forms (mobile letter / contact) ---------- */
.nm-form{
  margin: 22px 0 30px;
  padding: 18px 16px 16px;
  border: 1px solid var(--hair-2);
  background: rgba(241,236,221,0.02);
}
.nm-form .head{
  display:flex; justify-content:space-between; align-items:flex-start;
  margin-bottom: 16px;
}
.nm-form .head .brand{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1; color: var(--ink);
}
.nm-form .head .brand .sub{
  display:block; margin-top: 6px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3);
}
.nm-form .head .close{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-3);
}

.nm-steps{
  display:flex; gap: 6px; margin-bottom: 22px;
  position: relative;
}
.nm-steps .seg{
  flex:1; height: 3px; background: var(--hair); position:relative;
}
.nm-steps .seg.is-on{ background: var(--gold); }
.nm-steps-meta{
  display:flex; justify-content:space-between;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.16em; color: var(--ink-3);
  margin-top: 6px; margin-bottom: 22px;
}
.nm-steps-meta .now{ color: var(--ink); }

.nm-form .q{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px; line-height: 1.15; color: var(--ink);
  margin-bottom: 10px;
}
.nm-form .help{
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.45;
  margin-bottom: 18px;
}

.nm-field{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 14px; }
.nm-field label{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3);
}
.nm-field input,
.nm-field select,
.nm-field textarea{
  background: transparent;
  border: 1px solid var(--hair-2);
  padding: 12px 12px;
  color: var(--ink);
  font-family: var(--sans); font-size: 14px;
}
.nm-field input::placeholder, .nm-field textarea::placeholder{
  font-family: var(--serif); font-style: italic; color: var(--ink-3);
}
.nm-field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.nm-chips-grid{ display:flex; flex-wrap:wrap; gap: 6px; margin-bottom: 16px; }
.nm-chips-grid .chip{
  padding: 8px 12px; border: 1px solid var(--hair-2);
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.14em; color: var(--ink-2);
}
.nm-chips-grid .chip.is-on{ color: var(--ink); border-color: var(--ink); background: rgba(201,162,79,0.06); }

.nm-form .foot{
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--hair);
  display:flex; flex-direction: column; gap: 12px;
}
.nm-form .foot .note{
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-2);
}
.nm-form .foot .actions{
  display:flex; gap: 10px;
}
.nm-form .foot .actions .btn{ flex:1; justify-content: center; }
.nm-form .foot .actions .btn-primary{
  background: var(--gold); color: #0A0A0A; border-color: var(--gold);
}
.nm-form .foot .actions .btn-primary:hover{ background: var(--gold); color:#0A0A0A; }

/* ---------- legal long-form ---------- */
.nm-legal{
  padding: 4px 0 40px;
}
.nm-legal h1{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 40px; line-height: 1; color: var(--ink);
  margin-bottom: 10px;
}
.nm-legal .stamp{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3);
  margin-bottom: 20px;
}
.nm-legal h2{
  font-family: var(--display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.02em;
  color: var(--ink); margin: 22px 0 8px;
}
.nm-legal h3{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3);
  margin: 18px 0 8px;
}
.nm-legal p{
  font-family: var(--sans); font-size: 13.5px; line-height: 1.6;
  color: var(--ink-2); margin-bottom: 10px;
}
.nm-legal ul{ padding-left: 18px; margin: 4px 0 12px; color: var(--ink-2); }
.nm-legal li{ font-size: 13.5px; line-height: 1.55; margin-bottom: 6px; color: var(--ink-2); }
.nm-legal a{ color: var(--ink); border-bottom: 1px solid var(--gold); }
.nm-legal strong{ color: var(--ink); font-weight: 600; }

/* ---------- pillars (why-elara) — stacked ---------- */
.nm-pillars{ display:flex; flex-direction: column; }
.nm-pillar{
  border-top: 1px solid var(--hair);
  padding: 22px 0;
}
.nm-pillar:first-child{ border-top: 0; }
.nm-pillar .num{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--gold);
  margin-bottom: 8px;
}
.nm-pillar h3{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.05; letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 10px;
}
.nm-pillar p{
  font-family: var(--serif); font-style: normal;
  font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}

/* ---------- mobile intro card ---------- */
.nm-intro{
  margin: 0 -16px 0;
  padding: 36px 16px;
  background:
    radial-gradient(120% 60% at 30% 0%, rgba(201,162,79,0.10), transparent 55%),
    #0A0807;
  border-bottom: 1px solid var(--hair);
}
.nm-intro .eyebrow{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--gold);
  margin-bottom: 12px;
}
.nm-intro h1{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 11vw, 60px);
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--ink);
}
.nm-intro h1 .roman{
  font-family: var(--display); font-style: normal; font-weight: 600;
  letter-spacing: -0.04em;
}
.nm-intro .dek{
  margin-top: 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.4;
  color: var(--ink-2);
  max-width: 36ch;
}
.nm-intro .actions{ margin-top: 22px; display:flex; gap: 10px; flex-wrap: wrap; }
.nm-intro .actions .btn{ flex:1; min-width: 140px; justify-content: center; }
.nm-intro .actions .btn-primary{ background: var(--gold); color: #0A0A0A; border-color: var(--gold); }
.nm-intro .actions .btn-primary:hover{ background: var(--gold); color:#0A0A0A; }

/* ---------- contact-us list ---------- */
.nm-contact-list{ display:flex; flex-direction: column; }
.nm-contact-row{
  display:flex; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--hair);
}
.nm-contact-row:first-child{ border-top: 0; }
.nm-contact-row .ic{
  width: 36px; height: 36px;
  border: 1px solid var(--hair-2);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  flex-shrink: 0;
}
.nm-contact-row .ic svg{ width: 18px; height: 18px; }
.nm-contact-row .body{ flex:1; }
.nm-contact-row .label{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3);
}
.nm-contact-row .val{
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.25; color: var(--ink);
  margin-top: 2px;
}
.nm-contact-row .note{
  font-family: var(--serif); font-style: italic;
  font-size: 12.5px; color: var(--ink-2);
  margin-top: 4px;
}

/* ---------- "see also" cross-page strip ---------- */
.nm-also{
  display:grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 24px;
}
.nm-also a{
  border: 1px solid var(--hair); padding: 14px 14px;
  display:flex; flex-direction: column; gap: 4px;
}
.nm-also a .lbl{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3);
}
.nm-also a .ttl{
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.1; color: var(--ink);
}
.nm-also a:hover{ border-color: var(--gold); }
.nm-also a:hover .ttl{ color: var(--gold); }

/* ---------- whos-new arrivals timeline ---------- */
.nm-tl{
  display:flex; flex-direction:column;
}
.nm-tl-period{
  border-top: 1px solid var(--hair);
  padding: 22px 0;
}
.nm-tl-period:first-child{ border-top: 0; }
.nm-tl-period .lbl{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--gold);
  margin-bottom: 12px;
}
.nm-tl-period .lbl .sub{ color: var(--ink-3); margin-left: 8px; }

/* lead arrival (first) */
.nm-lead{
  margin-bottom: 30px;
}
.nm-lead .photo-wrap{
  position:relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--hair);
}
.nm-lead .photo-wrap .nm-card.photo{
  position:absolute; inset:0; border:0;
  aspect-ratio: auto;
}
.nm-lead .photo-wrap .stamp{
  position:absolute; bottom:10px; left:10px;
  padding: 4px 10px;
  background: rgba(10,8,7,0.85); border: 1px solid var(--gold);
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--gold);
}
.nm-lead .body{ margin-top: 12px; }
.nm-lead .name{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32px; line-height: 1; color: var(--ink);
}
.nm-lead .stats{
  margin-top: 6px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-3);
}
.nm-lead .note{
  margin-top: 12px;
  font-family: var(--serif); font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}
.nm-lead .note .signed{
  display:block; margin-top: 8px;
  font-style: italic; color: var(--gold); font-size: 13px;
}

/* compact arrivals list */
.nm-arrival{
  display:flex; gap: 12px; padding: 12px 0;
  border-top: 1px dotted var(--hair);
}
.nm-arrival:first-child{ border-top: 0; }
.nm-arrival .thumb{
  width: 80px; aspect-ratio: 3/4; flex-shrink: 0;
  background:
    radial-gradient(120% 80% at 30% 35%, rgba(201,162,79,0.18), transparent 55%),
    linear-gradient(160deg, #2a221b 0%, #0c0907 100%);
  border: 1px solid var(--hair);
  position: relative;
}
.nm-arrival .thumb::after{
  content: none;
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  font-family: var(--serif); font-style: italic;
  color: rgba(241,236,221,0.30); font-size: 11px;
}
.nm-arrival .body{ flex:1; min-width: 0; }
.nm-arrival .week{
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3);
  margin-bottom: 4px;
}
.nm-arrival .name{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1; color: var(--ink);
}
.nm-arrival .stats{
  margin-top: 4px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.14em; color: var(--ink-3);
}
.nm-arrival .blurb{
  margin-top: 6px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; line-height: 1.4; color: var(--ink-2);
}

/* ---------- exclusive (curator's column) ---------- */
.nm-pull{
  margin: 22px 0 30px;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.nm-pull .quote-mark{
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 60px; line-height: 0.7;
  margin-bottom: 6px;
}
.nm-pull .text{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.25;
  color: var(--ink);
}
.nm-pull .signed{
  margin-top: 14px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-3);
}
.nm-pull .signed em{
  font-family: var(--serif); font-style: italic; text-transform: none;
  color: var(--gold); letter-spacing: 0;
}

/* drop cap (exclusive lead essay) */
.nm-essay{
  font-family: var(--serif); font-size: 15px; line-height: 1.55;
  color: var(--ink-2);
  margin-top: 14px;
}
.nm-essay p{ margin-bottom: 12px; }
.nm-essay p:first-child::first-letter{
  font-family: var(--serif); font-style: italic;
  color: var(--gold);
  font-size: 56px; line-height: 0.8;
  float: left; margin: 4px 8px 0 0;
}

/* ---------- subscribe band ---------- */
.nm-band{
  margin: 36px -16px 0;
  padding: 30px 16px;
  background: var(--bg-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: center;
}
.nm-band h2{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.05; color: var(--ink);
  margin-bottom: 8px;
}
.nm-band .dek{
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-2);
  max-width: 38ch; margin: 0 auto 18px;
}
.nm-band form{
  display:flex; flex-direction: column; gap: 10px;
  max-width: 360px; margin: 0 auto;
}
.nm-band input{
  background: transparent;
  border: 1px solid var(--hair-2);
  padding: 12px 14px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
}
.nm-band input::placeholder{ color: var(--ink-3); font-style: italic; font-family: var(--serif); }
.nm-band button{
  padding: 13px 14px;
  background: var(--gold); color: #0A0A0A; border: 0;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 10.5px; letter-spacing: 0.16em;
}
.nm-band .fineprint{
  margin-top: 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--ink-3);
}

/* ---------- pageno (mobile, top-right of foot) ---------- */
.nm-pageno{
  position: fixed; right: 12px; bottom: 8px;
  font-family: var(--mono); text-transform: uppercase;
  font-size: 9px; letter-spacing: 0.16em; color: var(--ink-3);
  pointer-events: none;
  opacity: 0.6;
}
