/* ==========================================================================
   Nightlife-Zone — premium dark restyle (RTL / Hebrew)
   Fonts: Frank Ruhl Libre (display) + Heebo (body), loaded in <head>.
   Class names & IDs preserved to keep all HTML + JS working unchanged.
   ========================================================================== */

:root {
  /* palette — dark luxe nightclub */
  --bg:        #0b0910;
  --bg-soft:   #100b16;
  --surface:   #181020;
  --surface-2: #221529;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  --text:  #f4eef7;
  --muted: #a99fb4;

  --pink:   #ff2e88;
  --violet: #a855f7;
  --gold:   #e7c98c;
  --green:  #1faf4d;

  --accent: linear-gradient(120deg, #ff2e88, #a855f7);
  --gold-grad: linear-gradient(120deg, #fff, #e7c98c 55%, #ff7ab0);

  --r:   16px;
  --r-sm: 11px;
  --pill: 999px;
  --shadow: 0 18px 45px -20px rgba(0, 0, 0, 0.75);
  --shadow-accent: 0 18px 40px -16px rgba(255, 46, 136, 0.45);
  --maxw: 1240px;
}

/* ----------------------------- base --------------------------------------- */
* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 560px at 82% -8%, rgba(168, 85, 247, 0.14), transparent 60%),
    radial-gradient(820px 480px at 4% 8%, rgba(255, 46, 136, 0.10), transparent 55%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
main { display: block; }
figure { margin: 0; }
ul { list-style: none; }

::selection { background: var(--pink); color: #fff; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.row { display: flex; align-items: center; gap: 0.5rem; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 1rem; }

/* ----------------------- sticky brand header (subpages) ------------------- */
header { position: relative; }

.secondary-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 9, 16, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.secondary-header p { margin: 0; }
.secondary-header p a {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------- page H1 (subpages) --------------------------- */
.main-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.6rem 1rem 1.2rem;
}
.main-text-wrapper h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  line-height: 1.22;
  color: var(--text);
  max-width: 20ch;
  position: relative;
}
.main-text-wrapper h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 0.9rem auto 0;
  border-radius: 3px;
  background: var(--accent);
}

/* ------------------------ region buttons + menu --------------------------- */
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  max-width: 1100px;
  margin: 1.4rem auto 0.6rem;
  padding: 0 1rem;
  justify-items: stretch;
}
.areas-list a,
#menuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s, transform 0.25s;
}
.areas-list a:hover,
#menuButton:hover {
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 46, 136, 0.6), 0 12px 28px -12px rgba(255, 46, 136, 0.55);
}

.menu-container {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
}
.areas-list > .menu-container {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}
#menuButton { max-width: 320px; }

#menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 1rem;
  inset-inline-start: 1rem;
  width: auto;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(18, 12, 24, 0.98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  max-height: min(60vh, 28rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 50;
}
#menu ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem; padding: 0; margin: 0; }
#menu ul li a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
#menu ul li a:hover { background: var(--surface-2); color: var(--text); }
.hidden { display: none; }

/* ----------------------------- dancer grid -------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.grid-item {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.grid-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 136, 0.45);
  box-shadow: var(--shadow-accent);
}

/* image first, name, location, buttons (reorder regardless of DOM order) */
.grid-item > a:not([class]) { order: 1; display: block; overflow: hidden; }
.grid-item figure { overflow: hidden; }
.grid-item figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-width: none;
  transition: transform 0.55s ease;
}
.grid-item:hover figure img { transform: scale(1.06); }

.grid-item p { display: block; }
.grid-item .model-name {
  order: 2;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  margin: 0;
  padding: 0.7rem 0.9rem 0.1rem;
  text-align: start;
}
.grid-item > .row {
  order: 3;
  padding: 0 0.9rem 0.6rem;
  gap: 0.35rem;
  justify-content: flex-start;
}
.grid-item .availability-label {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  width: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.location-icon { color: var(--pink); font-size: 0.8rem; }

/* ----------------------------- buttons ------------------------------------ */
.whatsupp-button,
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: var(--pill);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.phone-button { background: var(--accent); box-shadow: 0 10px 24px -10px rgba(255, 46, 136, 0.6); }
.whatsupp-button { background: linear-gradient(120deg, #22b955, #149040); box-shadow: 0 10px 24px -10px rgba(31, 175, 77, 0.55); }
.phone-button:hover,
.whatsupp-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.wa-icon, .phone-icon, .whatsapp-icon { font-size: 1.15rem; height: 1.2rem; width: auto; color: #fff; }

/* buttons inside a card: full width, stacked, squared-pill */
.grid-item .phone-button,
.grid-item .whatsupp-button {
  display: flex;
  width: auto;
  border-radius: 10px;
  margin: 0 0.7rem 0.7rem;
  padding: 0.5rem 1rem;
}
.grid-item .phone-button { order: 4; }
.grid-item .whatsupp-button { order: 5; }

/* ----------------------- prose & content panels -------------------------- */
.text-wrapper {
  display: block;
  max-width: 880px;
  margin: 1rem auto;
  padding: 1.2rem;
  text-align: start;
  direction: rtl;
}
.text-wrapper h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  margin: 1.5rem 0 0.6rem;
  line-height: 1.3;
}
.text-wrapper h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--gold);
  margin: 1.15rem 0 0.4rem;
}
.text-wrapper p { color: var(--muted); line-height: 1.85; margin-bottom: 0.9rem; font-size: 1.02rem; }
.text-wrapper strong { color: var(--text); font-weight: 600; }
.text-wrapper ul { color: var(--muted); margin-bottom: 1.1rem; padding-inline-start: 1.2rem; }
.text-wrapper ul li { margin-bottom: 0.3rem; }
.text-wrapper a {
  color: var(--pink);
  border-bottom: 1px solid rgba(255, 46, 136, 0.45);
  transition: color 0.2s;
}
.text-wrapper a:hover { color: #ff79ab; }

/* CTA / payment / disclaimer panels */
.text-window {
  display: block;
  max-width: 880px;
  margin: 1rem auto;
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  text-align: start;
  direction: rtl;
}
.text-window p { margin: 0.25rem 0; }
.text-window a { color: var(--pink); }
.text-window .row { gap: 0.8rem; flex-wrap: wrap; }

/* ----------------------- profile image gallery --------------------------- */
.all-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  max-width: 920px;
  margin: 1.4rem auto;
  padding: 0 1rem;
  align-items: start;
}
.all-images figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.all-images figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-width: none;
  transition: transform 0.55s ease;
}
.all-images figure:hover img { transform: scale(1.05); }

/* ------------------------------- HERO (home) ------------------------------ */
header.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
header.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/hero-bg.webp') center / cover no-repeat;
  transform: scale(1.02);
}
header.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 9, 16, 0.55) 0%, rgba(11, 9, 16, 0.72) 50%, rgba(11, 9, 16, 0.96) 100%);
}
.header-container {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 1.2rem 3rem;
}
.header-row { width: 100%; margin: 0; position: relative; }
.text-container { margin: 0 !important; width: 100%; display: flex; justify-content: center; }
.hero-text {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding-top: 0;
}
.hero-text #heading {
  flex-basis: 100%;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: clamp(2.3rem, 8vw, 4.6rem);
  line-height: 1.06;
  margin: 0 0 0.4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text #heading h1,
.hero-text h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 3.2vw, 1.7rem);
  line-height: 1.55;
  color: var(--text);
  opacity: 0.92;
  margin: 0.9rem 0 0;
  flex-basis: 100%;
  -webkit-text-fill-color: var(--text);
  background: none;
}
.hero-text p span,
.secondary-header p span {
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* glass cards (hero quick links + on-page glass blocks) */
.glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex: 0 1 200px;
  max-width: 220px;
  padding: 0.95rem 1.15rem;
  color: var(--text);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.glass:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 16px 36px -14px rgba(255, 46, 136, 0.5);
}
.glass p { margin: 0; }

/* --------------------- homepage content sections -------------------------- */
.content, .faq, .otziv, .interviews, .preparation, .conclusion {
  max-width: 980px;
  margin: 1.2rem auto;
  padding: 1.6rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  direction: rtl;
  text-align: start;
}
.content h2, .faq h2, .otziv h2, .interviews h2, .preparation h2, .conclusion h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 0.7rem;
  direction: rtl;
}
.content h3, .content h4 {
  font-family: 'Frank Ruhl Libre', serif;
  color: var(--gold);
  margin: 1rem 0 0.4rem;
}
.content p, .faq p, .otziv p, .interviews p, .preparation p, .conclusion p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.7rem;
  direction: rtl;
}
.content a, .faq a, .otziv a, .interviews a, .conclusion a, .content a p {
  color: var(--pink);
}
.content a:hover, .faq a:hover, .otziv a:hover, .interviews a:hover, .conclusion a:hover { color: #ff79ab; }
.content ul { padding-inline-start: 1.2rem; margin-bottom: 1rem; }

details {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  padding: 0.4rem 0.85rem;
}
summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  padding: 0.45rem 0;
  font-family: 'Heebo', sans-serif;
}
details[open] summary { color: var(--gold); }

.cta {
  max-width: 980px;
  margin: 1.6rem auto;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 46, 136, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.cta h2 {
  font-family: 'Frank Ruhl Libre', serif;
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

/* testimonial / interview cards */
.content-item, .review, .interview-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.otziv .content-item { display: flex; flex-direction: column; gap: 1rem; }

/* ------------------------------- footer ----------------------------------- */
footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem 2.4rem;
  padding: 2.6rem 1.4rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
footer h1 { margin: 0; }
footer h1 a {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.left, .right { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.cities-list, .bottom-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.4rem 1.4rem;
  padding: 0;
  justify-items: center;
}
.cities-list li, .bottom-links li { padding: 0.15rem; }
.cities-list li a, .bottom-links li a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.2rem;
  transition: color 0.2s;
}
.cities-list li a:hover, .bottom-links li a:hover { color: var(--pink); }
.divider {
  width: min(80%, 560px);
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

ul.social-links { display: flex; align-items: center; gap: 0.4rem; justify-content: center; }
ul.social-links li { display: inline-block; }
ul.social-links li a { padding: 0.35rem; opacity: 0.7; transition: opacity 0.2s; }
ul.social-links li a:hover { opacity: 1; }
ul.social-links li.label { opacity: 0.7; font-weight: 400; margin-inline-start: 1rem; }
ul.social-links li a img { max-height: 26px; }

.banners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; padding: 1rem; }

/* ------------------------- modal / lightbox ------------------------------- */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  max-height: 92vh;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.modal.show { z-index: 99999; opacity: 1; transform: translateY(0); top: 4vh; }
.modal-content {
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
  position: relative;
  background: #000;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
  text-align: center;
}
.modal-content img { width: 100%; height: auto; }
.close {
  position: absolute;
  inset-inline-end: 1rem;
  top: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
}

/* ------------------------------ responsive -------------------------------- */
@media (min-width: 680px) {
  .grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .all-images { grid-template-columns: repeat(3, 1fr); }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .areas-list { grid-template-columns: repeat(6, 1fr); max-width: 1100px; }
  #menu { inset-inline-start: auto; inset-inline-end: 0; width: 480px; }
  #menu ul { grid-template-columns: repeat(3, 1fr); }
  .cities-list { grid-template-columns: repeat(5, auto); }
}
@media (min-width: 1300px) {
  .grid { grid-template-columns: repeat(5, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* --------------------- blog post: media, tables, lists --------------------- */
.text-wrapper .post-figure {
  margin: 0 0 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.text-wrapper .post-figure img { width: 100%; height: auto; }

.text-wrapper blockquote.post-summary {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--pink);
  border-radius: var(--r-sm);
}
.text-wrapper blockquote.post-summary p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
}

.text-wrapper table.post-table {
  width: 100%;
  margin: 1.2rem 0 1.4rem;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  font-size: 0.99rem;
}
.text-wrapper table.post-table th,
.text-wrapper table.post-table td {
  padding: 0.7rem 0.9rem;
  text-align: start;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}
.text-wrapper table.post-table th {
  background: var(--surface-2);
  color: var(--gold);
  font-weight: 600;
  font-family: 'Frank Ruhl Libre', serif;
}
.text-wrapper table.post-table tr:last-child td { border-bottom: 0; }

.text-wrapper ol {
  color: var(--muted);
  margin-bottom: 1.1rem;
  padding-inline-start: 1.35rem;
  line-height: 1.85;
}
.text-wrapper ol li { margin-bottom: 0.35rem; }

@media (max-width: 560px) {
  .text-wrapper table.post-table { font-size: 0.92rem; }
  .text-wrapper table.post-table th,
  .text-wrapper table.post-table td { padding: 0.55rem 0.6rem; }
}

/* Site identity and service information, shared on every catalogue page. */
.nz-service-block {flex:1 0 100%; max-width:1100px; padding:1.4rem 0 .2rem; border-top:1px solid var(--line); text-align:center;}
.nz-service-block p {margin:.45rem 0; color:var(--muted); font-size:.95rem; line-height:1.6;}
.nz-service-block .nz-service-name {color:var(--text); font-size:1.3rem; font-weight:700;}
.nz-service-contact,.nz-service-nav {display:flex; flex-wrap:wrap; justify-content:center; gap:.65rem 1.1rem; margin:1rem 0 0;}
.nz-service-block button {font:inherit; color:var(--text); cursor:pointer; border:1px solid var(--line-2); border-radius:8px; padding:.55rem .85rem; background:var(--surface-2); min-height:44px;}
.nz-service-nav a {padding:.55rem .15rem; text-decoration:underline; text-underline-offset:.2em;}
.nz-service-nav button {background:transparent; font-size:.92rem;}
.nz-service-block :focus-visible {outline:3px solid var(--gold); outline-offset:3px;}


/* Footer release 2026-09-10: aligned identity, readable links, narrow screens. */
.nz-service-block { width:100%; min-width:0; margin-inline:auto; }
.nz-service-block .nz-operator a { text-decoration:underline; text-underline-offset:.2em; }
.nz-service-nav { align-items:center; }
.nz-service-nav a { display:inline-flex; align-items:center; min-height:44px; }
.nz-service-block button:hover { border-color:var(--gold); background:var(--surface); }
.nz-service-nav a:hover, .nz-service-block .nz-operator a:hover { color:var(--gold); }
@media (max-width:560px) {
  footer .left, footer .right { width:100%; min-width:0; }
  footer .cities-list, footer .bottom-links {
    width:100%; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.45rem .65rem;
  }
  footer .cities-list a, footer .bottom-links a { overflow-wrap:anywhere; }
  .nz-service-block { padding-top:1.2rem; }
  .nz-service-contact { gap:.65rem; }
  .nz-service-contact button { flex:1 1 120px; max-width:220px; }
  .nz-service-nav { gap:.35rem 1rem; }
}
