/* Critical CSS - loaded with high priority for FCP optimization */

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body visibility control */
body {
  display: none;
  font-family: "Gotham Narrow", "Gotham Narrow Fallback", sans-serif;
}

body.appear {
  display: block;
}

/* Reserve header space to prevent CLS */
header {
  display: block;
  min-height: 114px;
}

@media (width >= 768px) {
  header {
    min-height: 160px;
  }
}

@media (width >= 1300px) {
  header {
    min-height: 267px;
  }
}

/* Hide header/footer content until loaded */
header .header,
footer .footer {
  visibility: hidden;
}
