/* Nile Horizon — Immersive Travel Experience Design */
:root {
  --ocean: #0c4a6e;
  --ocean-light: #0369a1;
  --sky-top: #38bdf8;
  --sky-bottom: #bae6fd;
  --sunset: #fb923c;
  --sunset-deep: #ea580c;
  --sand: #fef3c7;
  --sand-deep: #d97706;
  --white: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --card: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 25px 80px rgba(8, 47, 73, 0.22);
  --radius: 20px;
  --font: "Manrope", system-ui, sans-serif;
  --font-ar: "Noto Sans Arabic", "Manrope", sans-serif;
}

[data-theme="dark"] {
  --ocean: #082f49;
  --ocean-light: #075985;
  --sky-top: #0284c7;
  --sky-bottom: #0c4a6e;
  --sunset: #fdba74;
  --sunset-deep: #fb923c;
  --sand: #422006;
  --sand-deep: #fcd34d;
  --white: #0b1220;
  --ink: #e2e8f0;
  --muted: #94a3b8;
  --card: rgba(15, 23, 42, 0.78);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body.nh-body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(165deg, var(--sky-bottom) 0%, var(--sand) 45%, var(--white) 100%);
  transition: background 0.35s ease, color 0.25s ease;
  overflow-x: hidden;
}

[dir="rtl"] body.nh-body {
  font-family: var(--font-ar);
}

/* Atmospheric layers */
.nh-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.nh-clouds {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.22), transparent 50%);
  animation: nh-cloud-drift 80s linear infinite;
  opacity: 0.85;
}

.nh-waves {
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 120%;
  height: 35vh;
  background: repeating-linear-gradient(
    -5deg,
    rgba(56, 189, 248, 0.15) 0px,
    rgba(56, 189, 248, 0.15) 14px,
    transparent 14px,
    transparent 28px
  );
  animation: nh-wave 12s ease-in-out infinite alternate;
  mask-image: linear-gradient(to top, black, transparent);
}

@keyframes nh-cloud-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-8%);
  }
}

@keyframes nh-wave {
  from {
    transform: translateY(0) skewX(-2deg);
  }
  to {
    transform: translateY(-12px) skewX(2deg);
  }
}

/* Top bar */
.nh-theme-toggle {
  position: fixed;
  top: 14px;
  left: 14px;
  /* Above drawer (41) & topbar inner strip so it stays tappable */
  z-index: 51;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass);
  background: var(--card);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

[dir="rtl"] .nh-theme-toggle {
  left: auto;
  right: 14px;
}

.nh-theme-toggle:active {
  transform: scale(0.96);
}

[data-theme="dark"] .nh-theme-toggle__sun {
  display: none;
}

[data-theme="light"] .nh-theme-toggle__moon {
  display: none;
}

.nh-topbar {
  position: sticky;
  top: 0;
  /* Above drawer + backdrop so logo & nh-burger stay visible and tappable */
  z-index: 52;
  width: 100%;
  max-width: 100%;
  /* Do not use overflow-x: hidden here — it forces vertical clipping and hides .nh-lang__menu */
  overflow: visible;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.82), rgba(248, 250, 252, 0.45));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .nh-topbar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
}

.nh-topbar__inner {
  position: relative;
  /* Above nh-drawer (41) / backdrop (40): keeps logo + nh-burger tappable when menu is open */
  z-index: 50;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px 14px 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  /* Let touches hit real controls (burger, lang); avoids dead full-width bar swallowing taps on some phones */
  pointer-events: none;
}

.nh-topbar__inner > .nh-logo,
.nh-topbar__inner > .nh-topbar__actions,
.nh-topbar__inner > .nh-burger {
  pointer-events: auto;
}

[dir="rtl"] .nh-topbar__inner {
  padding: 14px 76px 14px 16px;
}

.nh-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}

@media (max-width: 959px) {
  .nh-topbar__actions {
    flex: 0 0 auto;
    gap: 8px;
  }
}

.nh-logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--ocean), var(--sunset));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 959px) {
  .nh-logo {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
}

.nh-logo img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

[dir="rtl"] .nh-logo img {
  object-position: right center;
}

.nh-logo__text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nh-nav--desktop {
  display: none;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 960px) {
  .nh-nav--desktop {
    display: flex;
  }
  .nh-burger {
    display: none !important;
  }
  .nh-bottom-nav {
    display: none !important;
  }
  main.nh-main {
    padding-bottom: 32px;
  }
}

.nh-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nh-nav a:hover,
.nh-nav a.is-active {
  color: var(--ocean-light);
}

.nh-lang-switch {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.nh-burger {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nh-burger span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nh-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.nh-drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nh-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 300px);
  height: 100vh;
  max-height: 100dvh;
  background: var(--card);
  backdrop-filter: blur(16px);
  padding: 88px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 41;
  box-shadow: var(--shadow);
  transform: translate3d(110%, 0, 0);
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}

[dir="rtl"] .nh-drawer {
  right: auto;
  left: 0;
  transform: translate3d(-110%, 0, 0);
}

.nh-drawer.is-open {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}

.nh-drawer a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.nh-lang {
  position: relative;
  flex-shrink: 0;
}

.nh-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--card);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 959px) {
  .nh-lang--toolbar .nh-lang__current {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .nh-lang--toolbar .nh-lang__btn {
    padding: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 0;
    border-radius: 12px;
  }

  .nh-lang--toolbar .nh-lang__icon {
    font-size: 1.2rem;
  }
}

.nh-lang__btn:hover {
  border-color: rgba(14, 165, 233, 0.45);
}

.nh-lang__icon {
  font-size: 1.05rem;
  line-height: 1;
}

.nh-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 188px;
  max-width: min(220px, calc(100vw - 24px));
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.22);
  z-index: 60;
}

.nh-lang__menu:not([hidden]) {
  display: block;
}

[dir="rtl"] .nh-lang__menu {
  right: auto;
  left: 0;
}

.nh-lang__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.nh-lang__menu a:hover {
  background: rgba(14, 165, 233, 0.14);
  color: var(--ocean-light);
}

.nh-drawer__langs {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nh-drawer__langs-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.nh-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.nh-comment-form {
  position: relative;
  margin-top: 24px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nh-comment-form__label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 8px;
}

.nh-comment-form__input,
.nh-comment-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

[data-theme="dark"] .nh-comment-form__input,
[data-theme="dark"] .nh-comment-form__textarea {
  background: rgba(15, 23, 42, 0.6);
}

.nh-comments-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nh-comment {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.nh-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.nh-comment__meta time {
  font-weight: 500;
}

.nh-comment__body {
  line-height: 1.65;
}

.nh-flash {
  padding: 12px 16px;
  border-radius: 12px;
  margin: 14px 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.nh-flash--ok {
  background: rgba(34, 197, 94, 0.18);
  color: #166534;
}

[data-theme="dark"] .nh-flash--ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
}

.nh-flash--err {
  background: rgba(239, 68, 68, 0.16);
  color: #991b1b;
}

[data-theme="dark"] .nh-flash--err {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
}

/* Main layout */
main.nh-main {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 96px;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

@media (min-width: 960px) {
  main.nh-main {
    padding-bottom: 32px;
  }
}

main.nh-main img {
  max-width: 100%;
  height: auto;
}

/* Hero slider */
.nh-hero {
  position: relative;
  min-height: min(92vh, 840px);
  margin: 0 -16px 48px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.nh-hero__slides {
  position: relative;
  height: min(92vh, 840px);
}

.nh-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 8s ease-out;
}

.nh-hero__slide.is-visible {
  opacity: 1;
  transform: scale(1);
}

.nh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 47, 73, 0.82), rgba(234, 88, 12, 0.45));
}

.nh-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 6vw, 72px);
  color: #fff;
  z-index: 2;
}

.nh-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nh-hero p {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  opacity: 0.95;
  max-width: 520px;
}

.nh-hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.nh-hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.nh-hero__dots button.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* Parallax sections */
.nh-section {
  margin-bottom: clamp(48px, 10vh, 96px);
}

.nh-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.nh-section__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.nh-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-light);
  font-weight: 700;
}

/* Cards grid */
.nh-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .nh-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .nh-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nh-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow);
  min-height: 280px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.nh-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 35px 100px rgba(8, 47, 73, 0.28);
}

.nh-card__media {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 5s ease;
}

.nh-card:hover .nh-card__media {
  transform: scale(1.08);
}

.nh-card__body {
  padding: 18px 20px 22px;
}

.nh-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.nh-card__meta {
  color: var(--sunset-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

.nh-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.nh-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(14, 165, 233, 0.18);
  color: var(--ocean-light);
}

/* CTA pulse */
.nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  text-align: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, var(--ocean-light), var(--sunset));
  box-shadow: 0 14px 40px rgba(234, 88, 12, 0.35);
  animation: nh-pulse 2.6s ease-in-out infinite;
}

@keyframes nh-pulse {
  0%,
  100% {
    box-shadow: 0 14px 40px rgba(234, 88, 12, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 52px rgba(234, 88, 12, 0.55);
    transform: translateY(-2px);
  }
}

.nh-btn--ghost {
  background: transparent;
  color: var(--ocean-light);
  border: 2px solid rgba(14, 165, 233, 0.45);
  animation: none;
  box-shadow: none;
}

/* Scroll reveal */
.nh-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.nh-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom nav — grid keeps 5 items on one row without horizontal overflow */
.nh-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  padding: 10px 4px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .nh-bottom-nav {
  background: rgba(15, 23, 42, 0.94);
}

.nh-bottom-nav a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 2px;
  border-radius: 14px;
  transition: color 0.2s, background 0.2s;
}

.nh-bottom-nav a > span:not(.nh-bottom-nav__icon) {
  min-width: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nh-bottom-nav a.is-active {
  color: var(--ocean-light);
  background: rgba(14, 165, 233, 0.12);
}

.nh-bottom-nav__icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .nh-bottom-nav a {
    font-size: 0.62rem;
    padding: 5px 1px;
  }

  .nh-bottom-nav__icon {
    font-size: 1.2rem;
  }
}

/* Trip page cover + gallery */
.nh-trip-cover {
  margin: 0 -16px 8px;
  min-height: min(48vh, 420px);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 960px) {
  .nh-trip-cover {
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius);
    min-height: min(52vh, 520px);
  }
}

.nh-section-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
}

/* Detail gallery */
.nh-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.nh-gallery--trip {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .nh-gallery--trip {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.nh-gallery__cell {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nh-gallery__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(8, 47, 73, 0.2);
}

.nh-gallery__cell:focus-visible {
  outline: 3px solid var(--ocean-light);
  outline-offset: 2px;
}

.nh-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
}

.nh-gallery--trip img {
  height: 150px;
  border-radius: 16px;
  cursor: zoom-in;
  display: block;
}

.nh-gallery--trip .nh-gallery__cell img {
  cursor: pointer;
}

.nh-itinerary {
  display: grid;
  gap: 16px;
}

.nh-day {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--card);
}

.nh-day h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.nh-muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.nh-page-hero {
  padding: 32px 0 16px;
}

.nh-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* Forms admin-style minimal for public book */
.nh-strip p {
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
