/* ============================================================
   ROSEWOOD MODELS — Browser Reset
   Ensures consistent rendering across all browsers.
   Generated once, never edited manually.
   ============================================================ */

   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    min-height: 100vh;
    line-height: var(--leading-normal);
    font-family: var(--font-utility);
    background-color: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  img, video {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
  }
  
  input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
  }
  
  ul, ol {
    list-style: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
  }
  
  p {
    line-height: var(--leading-loose);
  }
  
  ::selection {
    background-color: var(--color-accent);
    color: var(--color-bg);
  }
  
  :focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 3px;
  }