/* ===============================
   Base Reset + Typography
   =============================== */

/* Better box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/* scroll reveal effect  */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(1px);
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    filter 600ms ease;
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    filter: none;
  }
}
/* // */

/* Remove default margins */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set default body styles */
html {
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  background: var(--bg, #fff);
  color: var(--text, #000);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Images + media should scale */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Anchor defaults */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


/* Lists: remove bullets by default */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Headings: inherit weight/size unless styled */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Form elements inherit font */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Buttons reset */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Make tables collapse borders by default */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Visually hidden (for accessibility, e.g., skip links) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
