/* =========================================================
   RESET — Isarte · La Gran Expedición en Acuarela
   Base mínima, moderna, sin dependencias externas.
   ========================================================= */

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[class], ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

img {
  font-style: italic;
  shape-margin: 0.75rem;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  text-align: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:target {
  scroll-margin-top: 6rem;
}

/* Foco visible consistente y accesible */
:focus-visible {
  outline: 3px solid var(--color-dorado-300, #e0c377);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--color-dorado-500, #c9a24b);
  color: var(--color-tinta-900, #241f18);
}

[hidden] {
  display: none !important;
}
