/**
 * Homepage scoped styles — editorial layout, large typography,
 * Thmanyah typeface family. Loaded only on front-page (see Numu_Theme_Setup).
 *
 * Intentionally avoids the legacy `.hero-glass-card` / `.projects-grid-modern`
 * selectors so the old SCSS bundle doesn't fight us. New BEM-ish prefix:
 *   .nh-*  →  Numu Home
 */

/* ============================================================ *
 *  HERO — full-bleed video with editorial overlay
 * ============================================================ */

.nh-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #f5efe2;
  background: #0a1411;
}
.nh-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.95) contrast(1.05);
}
.nh-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* Heavy bottom-end veil where the headline sits — pulls toward black so
       light video frames don't bleed through copper italic letters. */
    linear-gradient(180deg, rgba(8, 18, 15, .55) 0%, rgba(8, 18, 15, .25) 18%, rgba(8, 18, 15, .25) 45%, rgba(8, 18, 15, .82) 78%, rgba(8, 18, 15, .95) 100%),
    /* Side darken on the headline column for the diagonal-cinema look. */
    linear-gradient(to var(--lr, left), rgba(8, 18, 15, .6) 0%, rgba(8, 18, 15, .3) 35%, rgba(8, 18, 15, 0) 70%);
}
body.numu-rtl .nh-hero__veil { --lr: right; }

.nh-hero__inner {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1400px; margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) clamp(20px, 5vw, 60px) clamp(40px, 6vh, 80px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

/* Top brow (left) + ticker (right) */
.nh-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nh-brow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--numu-font-sans);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, .85);
  font-weight: 500;
}
.nh-brow::before {
  content: ''; display: inline-block;
  width: 36px; height: 1px;
  background: var(--numu-copper);
}
.nh-ticker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--numu-font-sans);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245, 239, 226, .65);
}
.nh-ticker__dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: nh-pulse 2s var(--numu-ease) infinite; }
@keyframes nh-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* The headline column — bottom-anchored */
.nh-hero__headline {
  align-self: end;
  max-width: 920px;
}
.nh-hero__title {
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  /* Arabic display script needs more vertical air than Latin — 1.05 was
     fine for English but stacked diacritics on top of letterforms in AR. */
  line-height: 1.18;
  letter-spacing: -.01em;
  color: #faf6ec;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
/* `overflow: hidden` was clipping descenders (ك ج ق ي) in Arabic. We use
   `clip-path: inset(...)` instead so we can let the bottom 20% breathe and
   still mask the slide-up animation from the top. */
.nh-hero__title .nh-line {
  display: block;
  clip-path: inset(0 -20% -25% -20%);
  padding-bottom: 0.18em;
}
.nh-hero__title .nh-line__inner { display: inline-block; transform: translateY(110%); }
/* Second line: copper accent. Dropped the italic — Thmanyah Display italic
   collides with itself on the multi-line layout. Same weight, just colour. */
.nh-hero__title .nh-line:nth-child(2) .nh-line__inner {
  color: #e6a366;
  font-weight: 700;
}

.nh-hero__sub {
  font-family: var(--numu-font-sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: rgba(250, 246, 236, .9);
  max-width: 52ch;
  margin: 24px 0 32px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.nh-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.nh-hero__cta .btn { padding: 16px 30px; }

/* Bottom row — scroll cue + stats */
.nh-hero__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 239, 226, .12);
}
.nh-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  flex: 1;
}
.nh-stat__num {
  display: block;
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--numu-copper);
  letter-spacing: -.01em;
}
.nh-stat__label {
  display: block;
  margin-top: 8px;
  font-family: var(--numu-font-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, .65);
}

.nh-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245, 239, 226, .65);
  font-family: var(--numu-font-sans);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.nh-scroll__line { width: 1px; height: 50px; background: linear-gradient(180deg, rgba(245, 239, 226, .55) 0%, rgba(245, 239, 226, 0) 100%); animation: nh-scroll-down 2.4s var(--numu-ease) infinite; }
@keyframes nh-scroll-down { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 60.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 720px) {
  .nh-hero__top { flex-direction: column; align-items: flex-start; }
  .nh-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .nh-hero__bottom { flex-direction: column; align-items: stretch; }
}

/* ============================================================ *
 *  ABOUT — editorial split with pull quote
 * ============================================================ */

.nh-about {
  background: var(--numu-cream);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.nh-about__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.nh-about__visual { position: relative; aspect-ratio: 4/5; border-radius: var(--numu-radius-lg); overflow: hidden; }
.nh-about__visual img { width: 100%; height: 100%; object-fit: cover; }
.nh-about__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 26, 0) 60%, rgba(13, 31, 26, .35) 100%);
}
.nh-about__visual-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  font-family: var(--numu-font-sans);
  color: #fff; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
}

.nh-about__copy { padding: 0; }
.nh-about__brow { color: var(--numu-copper); font-family: var(--numu-font-sans); font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.nh-about__brow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--numu-copper); }
.nh-about__title {
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  /* Multi-line Arabic display heading needs ~1.4 to keep the lower line
     from kissing the descenders/diacritics of the upper line. */
  line-height: 1.4;
  letter-spacing: -.005em;
  color: var(--numu-ink);
  margin: 0 0 28px;
}
.nh-about__title em {
  font-style: normal;          /* italic in Display collides with itself */
  color: var(--numu-evergreen);
  font-weight: 700;
  display: inline-block;
}

.nh-about__lede {
  /* Sans for body — Serif Text was elongating final letters in a way that
     felt stretched in paragraph context. Reserve Serif for pull quotes. */
  font-family: var(--numu-font-sans);
  font-weight: 400;
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.9;
  color: var(--numu-mute);
  margin: 0 0 28px;
}

.nh-pullquote {
  border-inline-start: 3px solid var(--numu-copper);
  padding: 4px 0 4px 22px;
  margin: 32px 0;
  font-family: var(--numu-font-serif);   /* Serif shines here, on a single short line */
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.7;
  color: var(--numu-ink);
}
body.numu-rtl .nh-pullquote { padding: 4px 22px 4px 0; }

.nh-about__cta { margin-top: 32px; }

@media (max-width: 900px) {
  .nh-about__inner { grid-template-columns: 1fr; }
  .nh-about__visual { aspect-ratio: 4/3; }
}

/* ============================================================ *
 *  PROJECTS — asymmetric editorial gallery
 * ============================================================ */

.nh-projects {
  background: var(--numu-paper);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.nh-projects__head {
  max-width: 1320px; margin: 0 auto clamp(40px, 6vw, 70px);
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex; justify-content: space-between; align-items: end; gap: 30px;
}
.nh-projects__head-l { max-width: 720px; }
.nh-projects__head-l .nh-brow { color: var(--numu-copper); }
.nh-projects__head-l .nh-brow::before { background: var(--numu-copper); }
.nh-projects__head-title {
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.4;
  letter-spacing: -.005em;
  margin: 14px 0 0;
  color: var(--numu-ink);
}
.nh-projects__head-title em { font-style: normal; color: var(--numu-copper); font-weight: 700; display: inline-block; }
.nh-projects__head-r { font-family: var(--numu-font-sans); font-size: .85rem; }

.nh-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}

.nh-card {
  position: relative;
  border-radius: var(--numu-radius-lg);
  overflow: hidden;
  background: var(--numu-cream-2);
  display: block;
  text-decoration: none;
  isolation: isolate;
}
.nh-card__media { position: relative; overflow: hidden; }
.nh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--numu-ease); }
.nh-card:hover .nh-card__media img { transform: scale(1.06); }
/* No gradient overlay — instead the card body is a solid translucent panel
   anchored to the bottom of the image. Looks cleaner than text-shadows
   over a gradient and works on every image colour. */
.nh-card__media::after { display: none; }

.nh-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 2.6vw, 32px);
  color: #faf6ec;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 15, 0)    0%,
    rgba(8, 18, 15, .55) 25%,
    rgba(8, 18, 15, .88) 75%,
    rgba(8, 18, 15, .94) 100%
  );
  /* Subtle backdrop blur picks up the image texture without obscuring it. */
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nh-card__meta {
  font-family: var(--numu-font-sans);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(250, 246, 236, .9);
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nh-card__meta::before { content: '◆'; color: #e6a366; }
.nh-card__title {
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.3;
  margin: 0 0 8px;
  color: #fff;
}
.nh-card__price {
  font-family: var(--numu-font-sans);
  font-size: .95rem; color: #e6a366; font-weight: 600; letter-spacing: .02em;
}
.nh-card__arrow {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--numu-evergreen);
  transition: transform .35s var(--numu-ease), background .25s var(--numu-ease);
}
body.numu-rtl .nh-card__arrow { right: auto; left: 18px; }
.nh-card:hover .nh-card__arrow { background: var(--numu-copper); color: #fff; transform: rotate(-45deg); }

/* Asymmetric layout */
.nh-card--feature  { grid-column: span 12; aspect-ratio: 16/9; }
.nh-card--half     { grid-column: span 6;  aspect-ratio: 5/4; }
.nh-card--third    { grid-column: span 4;  aspect-ratio: 3/4; }
.nh-card--two-thirds { grid-column: span 8; aspect-ratio: 16/10; }

@media (max-width: 900px) {
  .nh-card--feature, .nh-card--half, .nh-card--third, .nh-card--two-thirds {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}

.nh-projects__footer { max-width: 1320px; margin: clamp(40px, 6vw, 60px) auto 0; padding: 0 clamp(20px, 5vw, 60px); text-align: center; }

/* ============================================================ *
 *  MAP — luxury dark map with custom UI overlay
 * ============================================================ */

.nh-map {
  background: var(--numu-ink);
  color: #f5efe2;
  padding: clamp(80px, 12vw, 140px) 0 0;
  position: relative;
  overflow: hidden;
}
.nh-map::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(184, 115, 51, .15) 0%, rgba(184, 115, 51, 0) 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(21, 71, 52, .35) 0%, rgba(21, 71, 52, 0) 60%);
  pointer-events: none;
}
/* Full-bleed canvas: no max-width, no horizontal padding. The list floats
   over the map as a glass panel rather than sitting in a side column. */
.nh-map__inner {
  display: block;
  position: relative; z-index: 1;
}
.nh-map__head { margin-bottom: clamp(28px, 4vw, 50px); padding: 0 clamp(20px, 5vw, 60px); position: relative; z-index: 1; max-width: 1400px; margin-left: auto; margin-right: auto; }
.nh-map__head .nh-brow { color: var(--numu-copper); }
.nh-map__head .nh-brow::before { background: var(--numu-copper); }
.nh-map__head-title {
  font-family: var(--numu-font-display); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.4; letter-spacing: -.005em;
  color: #f5efe2; margin: 14px 0 0;
}
.nh-map__head-title em { font-style: normal; color: var(--numu-copper); font-weight: 700; display: inline-block; }

/* Floating glass panel anchored to the map corner, fixed width, scrollable. */
.nh-map__list {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: clamp(280px, 24vw, 360px);
  z-index: 5;
  background: rgba(13, 31, 26, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 239, 226, .12);
  border-radius: var(--numu-radius-lg);
  padding: 10px;
  max-height: calc(80vh - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 239, 226, .2) transparent;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.nh-map__list::-webkit-scrollbar { width: 6px; }
.nh-map__list::-webkit-scrollbar-thumb { background: rgba(245, 239, 226, .15); border-radius: 3px; }

/* Reset button user-agent styles aggressively — without this the browser
   paints a light-grey background under the cream text and the rows look
   like floating empty boxes. */
.nh-poi {
  -webkit-appearance: none;
  appearance: none;
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 12px 14px;
  margin: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--numu-radius);
  color: #f5efe2;
  font: inherit;
  cursor: pointer;
  transition: background .2s var(--numu-ease), border-color .2s var(--numu-ease), transform .2s var(--numu-ease);
  text-align: start;
}
.nh-poi + .nh-poi { margin-top: 4px; }
.nh-poi:hover, .nh-poi:focus-visible {
  background: rgba(245, 239, 226, .06);
  border-color: rgba(245, 239, 226, .12);
  outline: 0;
}
.nh-poi.is-active {
  background: rgba(184, 115, 51, .14);
  border-color: rgba(184, 115, 51, .35);
}
.nh-poi__num {
  font-family: var(--numu-font-display);
  font-weight: 700; font-size: 1.1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--numu-copper);
  background: rgba(184, 115, 51, .08);
  border: 1px solid rgba(184, 115, 51, .35);
  transition: all .25s var(--numu-ease);
  flex-shrink: 0;
}
.nh-poi.is-active .nh-poi__num,
.nh-poi:hover .nh-poi__num { background: var(--numu-copper); color: var(--numu-ink); border-color: var(--numu-copper); }
.nh-poi__body { flex: 1; min-width: 0; overflow: hidden; }
.nh-poi__title {
  display: block;
  font-family: var(--numu-font-sans);
  font-weight: 600; font-size: .95rem;
  color: #f5efe2;
  margin: 0; line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nh-poi__city {
  display: block;
  font-family: var(--numu-font-sans);
  font-size: .76rem;
  color: rgba(245, 239, 226, .55);
  margin-top: 4px;
  letter-spacing: .03em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nh-map__canvas-wrap {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 580px;
  max-height: 820px;
  border-top: 1px solid rgba(245, 239, 226, .08);
  border-bottom: 1px solid rgba(245, 239, 226, .08);
  background: #142926;
  overflow: hidden;
}
.nh-map__canvas { width: 100%; height: 100%; }

/* Override Leaflet defaults so it doesn't look like a vanilla OSM map */
.nh-map__canvas .leaflet-control-attribution {
  background: rgba(13, 31, 26, .6) !important;
  color: rgba(245, 239, 226, .55) !important;
  padding: 4px 8px !important;
  font-family: var(--numu-font-sans) !important;
  font-size: 10px !important;
}
.nh-map__canvas .leaflet-control-attribution a { color: var(--numu-copper) !important; }
.nh-map__canvas .leaflet-control-zoom {
  border: 0 !important; box-shadow: none !important;
  margin: 16px !important;
}
.nh-map__canvas .leaflet-control-zoom a {
  background: rgba(13, 31, 26, .82) !important;
  color: #f5efe2 !important;
  border: 1px solid rgba(245, 239, 226, .12) !important;
  border-radius: 8px !important;
  width: 36px !important; height: 36px !important;
  line-height: 36px !important;
  font-size: 16px !important;
  margin-bottom: 4px !important;
  backdrop-filter: blur(8px);
}
.nh-map__canvas .leaflet-control-zoom a:hover { background: var(--numu-copper) !important; color: var(--numu-ink) !important; border-color: var(--numu-copper) !important; }
.nh-map__canvas .leaflet-tile-pane { filter: hue-rotate(150deg) saturate(.6); }

/* Custom markers (drawn via L.divIcon) */
.nh-marker {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--numu-copper);
  color: var(--numu-ink);
  font-family: var(--numu-font-display);
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 20px rgba(184, 115, 51, .55), 0 0 0 4px rgba(184, 115, 51, .15);
  transition: transform .25s var(--numu-ease), box-shadow .25s var(--numu-ease);
  cursor: pointer;
}
.nh-marker::before {
  content: ''; position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--numu-copper);
  z-index: -1;
}
.nh-marker.is-active,
.nh-marker:hover {
  transform: scale(1.18);
  box-shadow: 0 10px 30px rgba(184, 115, 51, .8), 0 0 0 6px rgba(184, 115, 51, .25);
}
.nh-marker__pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--numu-copper);
  animation: nh-marker-pulse 2.4s var(--numu-ease) infinite;
  pointer-events: none;
  opacity: 0;
}
.nh-marker.is-active .nh-marker__pulse { opacity: 1; }
@keyframes nh-marker-pulse {
  0% { transform: scale(.8); opacity: .9; }
  100% { transform: scale(2); opacity: 0; }
}

/* Marker cluster bubble — copper-tinted glass disc with the count.
   Overrides the default greenish/yellow leaflet.markercluster styling. */
.nh-cluster-wrap { background: transparent !important; border: 0 !important; }
.nh-cluster {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184, 115, 51, .9);
  color: var(--numu-ink);
  font-family: var(--numu-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: 3px solid rgba(250, 246, 236, .92);
  box-shadow: 0 0 0 6px rgba(184, 115, 51, .25), 0 8px 22px rgba(184, 115, 51, .55);
  cursor: pointer;
  transition: transform .18s var(--numu-ease);
  position: relative;
}
.nh-cluster::after {
  content: '';
  position: absolute; inset: -10px;
  border: 1.5px dashed rgba(184, 115, 51, .35);
  border-radius: 50%;
  pointer-events: none;
}
.nh-cluster-wrap:hover .nh-cluster { transform: scale(1.06); }
/* Hide default leaflet.markercluster div backgrounds so only ours show. */
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { transition: transform .25s ease, opacity .25s ease; }
.marker-cluster, .marker-cluster div, .marker-cluster span { background: transparent !important; box-shadow: none !important; color: inherit !important; }

/* Floating popup card that opens beside an active marker. */
.nh-tip {
  position: absolute;
  top: 0; left: 0;
  width: 260px;
  background: rgba(13, 31, 26, .92);
  border: 1px solid rgba(245, 239, 226, .14);
  border-radius: var(--numu-radius);
  pointer-events: auto;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 0);
  transition: opacity .22s var(--numu-ease), visibility .22s var(--numu-ease);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  overflow: hidden;
}
.nh-tip.is-visible { opacity: 1; visibility: visible; }
.nh-tip__media { position: relative; aspect-ratio: 16 / 9; background: #1a2f2a; overflow: hidden; }
.nh-tip__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-tip__body { padding: 14px 16px 16px; }
.nh-tip__title {
  font-family: var(--numu-font-sans);
  font-weight: 700; font-size: 1rem; line-height: 1.35;
  color: #faf6ec; margin: 0 0 4px;
}
.nh-tip__city {
  font-family: var(--numu-font-sans);
  color: rgba(245, 239, 226, .65);
  font-size: .78rem; letter-spacing: .03em; margin-bottom: 12px;
}
.nh-tip__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--numu-copper); font-weight: 600; font-size: .85rem;
  font-family: var(--numu-font-sans);
}
.nh-tip__cta:hover { color: var(--numu-copper-2); }
.nh-tip__close {
  position: absolute; top: 8px; inset-inline-end: 8px;
  width: 30px; height: 30px;
  border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 1.3rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s var(--numu-ease);
}
.nh-tip__close:hover { background: var(--numu-copper); color: var(--numu-ink); }

@media (max-width: 900px) {
  .nh-map__list {
    position: static; width: auto; max-height: 220px;
    margin: 0 16px 16px; border-radius: var(--numu-radius);
  }
  .nh-map__canvas-wrap { height: 70vh; min-height: 460px; }
}

/* ============================================================ *
 *  Reveal animation initial state (so GSAP doesn't FOUC)
 * ============================================================ */

[data-numu-reveal="up"]    { opacity: 0; transform: translateY(40px); }
[data-numu-reveal="fade"]  { opacity: 0; }
[data-numu-reveal="scale"] { opacity: 0; transform: scale(.96); }
.nh-line__inner            { display: inline-block; }
.no-js [data-numu-reveal] { opacity: 1 !important; transform: none !important; }
