/* normal.css — Minimalist normal mode for all non-cosmos pages */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #f6f5f1;
  --bg2:       #edecea;
  --bg3:       #e4e2de;
  --surface:   #ffffff;
  --border:    #dddad4;
  --text:      #181816;
  --text2:     #52524c;
  --text3:     #8c8c84;
  --accent:    #4040a0;
  --accent2:   #6666cc;
  --accent-bg: rgba(64,64,160,0.07);
  --gold:      #a07020;
  --gold-bg:   rgba(160,112,32,0.08);
  --teal:      #1e6e5e;
  --rose:      #7a2858;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.10);
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --font-mono: 'Courier New', monospace;
  --transition: 0.2s ease;
}

[data-theme="dark"] {
  --bg:        #0f0f0e;
  --bg2:       #191918;
  --bg3:       #222220;
  --surface:   #1c1c1a;
  --border:    #383836;
  --text:      #f0f0ea;
  --text2:     #b0b0a8;
  --text3:     #707068;
  --accent:    #9090e0;
  --accent2:   #b0b0f0;
  --accent-bg: rgba(144,144,224,0.12);
  --gold:      #d4a040;
  --gold-bg:   rgba(212,160,64,0.12);
  --shadow:    0 1px 4px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.5), 0 12px 40px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

/* Accent top bar */
body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--gold));
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.nm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  transition: background var(--transition), border-color var(--transition);
}
.nm-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nm-brand span { color: var(--accent); }
.nm-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nm-links a {
  font-size: 0.9rem;
  color: var(--text2);
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nm-links a:hover, .nm-links a.active {
  background: var(--bg2);
  color: var(--text);
}
.nm-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nm-theme-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.nm-theme-btn:hover { background: var(--border); }
.nm-cosmos-btn {
  font-size: 0.875rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 7px 15px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background var(--transition);
}
.nm-cosmos-btn:hover { background: var(--accent2); color: #fff; }

/* hamburger */
.nm-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  cursor: pointer;
  color: var(--text2);
  font-size: 1.1rem;
}
.nm-mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  flex-direction: column;
  gap: 4px;
}
.nm-mobile-menu a {
  font-size: 1rem;
  color: var(--text2);
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 6px;
  display: block;
  transition: background var(--transition);
}
.nm-mobile-menu a:hover { background: var(--bg2); color: var(--text); }
.nm-mobile-menu.open { display: flex; }

/* ── MAIN CONTAINER ───────────────────────────────────────── */
.nm-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HERO BAND ────────────────────────────────────────────── */
.nm-hero-band {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.nm-hero-band-text {
  font-size: 0.78rem;
  color: var(--text3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}

/* ── HERO ─────────────────────────────────────────────────── */
.nm-hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.nm-hero-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}
.nm-hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
}
.nm-hero-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nm-hero-role { display: none; }
.nm-hero-shloka {
  font-size: 0.95rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.72;
  border-left: 2px solid var(--accent);
  padding: 10px 16px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  background: var(--accent-bg);
  border-radius: 0 5px 5px 0;
}
.nm-hero-shloka-meaning {
  font-size: 0.875rem;
  color: var(--text3);
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-sans);
  line-height: 1.6;
}
.nm-hero-about {
  font-size: 0.95rem;
  color: var(--text3);
  line-height: 1.75;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
  text-align: center;
}
.nm-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nm-btn {
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text2);
  transition: all var(--transition);
  cursor: pointer;
  background: var(--surface);
}
.nm-btn:hover { border-color: var(--accent); color: var(--accent); }
.nm-btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nm-btn-primary:hover { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ── SECTION HEADING ──────────────────────────────────────── */
.nm-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.nm-section:last-child { border-bottom: none; }
.nm-section-title {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nm-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── IDENTITY MAP (CSS flexbox tree) ─────────────────────── */
.nm-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 8px;
}
.nm-map-core {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 12px 34px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(64,64,160,0.25);
  font-family: var(--font-serif);
  font-style: italic;
}
.nm-map-core-line {
  width: 2px;
  height: 24px;
  background: var(--border);
}
.nm-map-branches {
  display: flex;
  gap: 0;
  justify-content: center;
  position: relative;
}
/* horizontal connector across branches */
.nm-map-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--border);
}
.nm-map-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  padding: 0 12px;
}
.nm-map-branch-line {
  width: 2px;
  height: 24px;
  background: var(--border);
}
.nm-map-node {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  background: var(--surface);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  width: 100%;
  display: block;
}
.nm-map-node:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.nm-map-node-icon { font-size: 1.5rem; margin-bottom: 5px; display: block; }
.nm-map-node-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  letter-spacing: 0.02em;
}
.nm-map-node.tech   { border-color: rgba(107,107,196,0.55); }
.nm-map-node.music  { border-color: rgba(176,128,48,0.55); }
.nm-map-node.expr   { border-color: rgba(42,122,106,0.55); }
.nm-map-node.achiev { border-color: rgba(138,48,96,0.55); }
.nm-map-node.tech:hover   { border-color: #8888e0; background: rgba(107,107,196,0.08); }
.nm-map-node.music:hover  { border-color: #d0a040; background: rgba(176,128,48,0.08); }
.nm-map-node.expr:hover   { border-color: #40a888; background: rgba(42,122,106,0.08); }
.nm-map-node.achiev:hover { border-color: #c050a0; background: rgba(138,48,96,0.08); }
[data-theme="dark"] .nm-map-node.tech   { border-color: rgba(130,130,255,0.5); }
[data-theme="dark"] .nm-map-node.music  { border-color: rgba(220,160,50,0.5); }
[data-theme="dark"] .nm-map-node.expr   { border-color: rgba(50,180,140,0.5); }
[data-theme="dark"] .nm-map-node.achiev { border-color: rgba(220,80,130,0.5); }
[data-theme="dark"] .nm-map-node .nm-map-node-label { color: var(--text); }

/* Leaf tags below each branch node */
.nm-map-leaves {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 12px 0 0;
  position: relative;
}
.nm-map-leaves::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: var(--border);
}
.nm-leaf {
  font-size: 0.82rem;
  padding: 4px 11px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text2);
  background: var(--bg2);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tech-leaf   { border-color: rgba(107,107,196,0.35); color: #4040a0; background: rgba(107,107,196,0.08); }
.music-leaf  { border-color: rgba(176,128,48,0.35);  color: #7a5010; background: rgba(176,128,48,0.08); }
.expr-leaf   { border-color: rgba(42,122,106,0.35);  color: #1a5a4a; background: rgba(42,122,106,0.08); }
.achiev-leaf { border-color: rgba(138,48,96,0.35);   color: #6a1848; background: rgba(138,48,96,0.08); }
[data-theme="dark"] .tech-leaf   { color: #b0b0ff; background: rgba(130,130,255,0.14); border-color: rgba(130,130,255,0.35); }
[data-theme="dark"] .music-leaf  { color: #f0c060; background: rgba(220,160,50,0.14);  border-color: rgba(220,160,50,0.35); }
[data-theme="dark"] .expr-leaf   { color: #50d4a8; background: rgba(50,180,140,0.14);  border-color: rgba(50,180,140,0.35); }
[data-theme="dark"] .achiev-leaf { color: #f090b8; background: rgba(220,80,130,0.14);  border-color: rgba(220,80,130,0.35); }

@media (max-width: 700px) {
  .nm-map-branches { flex-wrap: wrap; gap: 16px; }
  .nm-map-branches::before { display: none; }
  .nm-map-branch { min-width: 140px; }
}

/* ── CARDS GRID ───────────────────────────────────────────── */
.nm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.nm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.nm-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-left-color: var(--accent);
}
.nm-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  font-family: var(--font-serif);
}
.nm-card-meta {
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.nm-card-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.68;
}
.nm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.nm-card-link:hover { text-decoration: underline; }
.nm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.nm-tag {
  font-size: 0.78rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px 10px;
  color: var(--text2);
}

/* ── TIMELINE ─────────────────────────────────────────────── */
.nm-timeline { display: flex; flex-direction: column; gap: 0; }
.nm-tl-item {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 26px;
}
.nm-tl-item:last-child { padding-bottom: 0; }
.nm-tl-left { display: flex; flex-direction: column; align-items: center; }
.nm-tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.nm-tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 4px;
}
.nm-tl-item:last-child .nm-tl-line { display: none; }
.nm-tl-body { flex: 1; }
.nm-tl-title { font-size: 1rem; font-weight: 600; color: var(--text); }
.nm-tl-org   { font-size: 0.875rem; color: var(--accent); margin: 3px 0 6px; }
.nm-tl-desc  { font-size: 0.9rem; color: var(--text2); line-height: 1.65; }

/* ── TWO-COL ──────────────────────────────────────────────── */
.nm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── LIST PANEL ───────────────────────────────────────────── */
.nm-list-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.nm-list-panel-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.nm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nm-list li {
  font-size: 0.9rem;
  color: var(--text2);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.nm-list li::before {
  content: '·';
  position: absolute;
  left: 3px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.2;
}

/* ── VIDEO EMBED ──────────────────────────────────────────── */
.nm-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.nm-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── POST CARD (blog/post with image) ─────────────────────── */
.nm-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.nm-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.nm-post-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.nm-post-body {
  padding: 16px 18px;
}
.nm-post-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ── SLIDER ───────────────────────────────────────────────── */
.nm-slider-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}
.nm-slider-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.nm-slider-caption {
  padding: 14px 18px;
  background: var(--surface);
}
.nm-slider-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.nm-slider-sub   { font-size: 0.875rem; color: var(--text2); }
.nm-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 12px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nm-slider-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text2);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.nm-slider-btn:hover { background: var(--border); }
.nm-slider-dots { display: flex; gap: 6px; }
.nm-slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.nm-slider-dot.active { background: var(--accent); }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.nm-form { display: flex; flex-direction: column; gap: 16px; }
.nm-form-group { display: flex; flex-direction: column; gap: 5px; }
.nm-label { font-size: 0.875rem; color: var(--text2); letter-spacing: 0.03em; }
.nm-input, .nm-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
}
.nm-input:focus, .nm-textarea:focus { border-color: var(--accent); }
.nm-textarea { resize: vertical; min-height: 120px; }
.nm-form-status { font-size: 0.9rem; color: var(--teal); }

/* ── FOOTER ───────────────────────────────────────────────── */
.nm-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.nm-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.nm-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nm-footer-links a {
  font-size: 0.9rem;
  color: var(--text2);
  text-decoration: none;
  transition: color var(--transition);
}
.nm-footer-links a:hover { color: var(--accent); }
.nm-footer-copy {
  font-size: 0.875rem;
  color: var(--text3);
}
.nm-socials {
  display: flex;
  gap: 12px;
}
.nm-socials a {
  color: var(--text2);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.nm-socials a:hover { color: var(--accent); }

/* BALCONY PAGE */

.page-container{
    width: min(1180px, 92%);
    margin: 120px auto 80px auto;
}

.intro-section{
    margin-bottom: 70px;
}

.section-label{
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #9d8f7c;
    margin-bottom: 24px;
}

.section-text{
    font-size: 20px;
    line-height: 1.9;
    color: #3f3f3f;
    max-width: 980px;
}

.content-section{
    margin-top: 90px;
}

.card-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(420px,1fr));
    gap: 34px;
    margin-top: 35px;
}

.content-card{
    background: #fdfdfd;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.content-card:hover{
    transform: translateY(-6px);
}

.content-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-content{
    padding: 34px;
}

.card-content h3{
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #111;
}

.card-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #4d4d4d;
    margin-bottom: 24px;
}

.card-button{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    color: #111;
    transition: 0.3s ease;
    font-weight: 600;
}

.card-button:hover{
    background: #111;
    color: white;
}

@media(max-width:768px){

    .page-container{
        margin-top: 100px;
    }

    .section-text{
        font-size: 17px;
    }

    .card-grid{
        grid-template-columns: 1fr;
    }

    .content-card img{
        height: 240px;
    }

}

/* ── BADGE ────────────────────────────────────────────────── */
.nm-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 10px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(64,64,160,0.25);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.nm-badge-gold {
  background: var(--gold-bg);
  color: var(--gold);
  border-color: rgba(176,128,48,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .nm-nav { padding: 0 16px; }
  .nm-links { display: none; }
  .nm-hamburger { display: flex; }
  .nm-hero-inner { grid-template-columns: 1fr; }
  .nm-hero-photo { width: 120px; height: 120px; margin: 0 auto; }
  .nm-two-col { grid-template-columns: 1fr; }
  .nm-cards { grid-template-columns: 1fr; }
  .nm-map-branches { gap: 10px; }
  .nm-map-node { min-width: 110px; padding: 10px 12px; }
  .nm-footer-inner { flex-direction: column; align-items: flex-start; }
  .nm-container { padding: 0 16px; }
  .nm-hero { padding: 32px 0 28px; }
  .nm-hero-name { font-size: 1.6rem; }
}
