/* ==========================================================================
   Hospitality News — Reset & Base
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-serif);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: var(--lh-tight);
  font-weight: 600;
  color: var(--text);
}

a { color: var(--link); text-decoration: none; transition: color var(--speed) var(--ease); }
a:hover { color: var(--link-hover); }

ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: #15171A; }

/* Nepali language helpers */
.lang-ne, [lang="ne"] {
  font-family: var(--font-nepali);
  line-height: 1.85;
}

/* Screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: var(--z-toast);
  background: var(--navy-deep);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: top var(--speed) var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }
