/* ============================================
   HnK Party — Base: Reset and Typography
   ============================================ */

/* ===== Reset & Base ===== */
/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--charcoal); }
a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  display: block;
  /* Hide the alt-text "watermark" if an image fails to load.
     Screen readers still announce the alt attribute correctly —
     this only suppresses the broken-image fallback text in the viewport. */
  font-size: 0;
  color: transparent;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

