@import url("fonts.css");

/* Local type + a few bits Tailwind CDN cannot cover. */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  background: #faf7f2;
  color: #3f372f;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #3f372f;
  padding: 0.5rem 0.75rem;
  outline: 2px solid #c47a5a;
}

.glass-header {
  background: rgba(255, 252, 248, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-header.is-scrolled {
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 10px 40px rgba(109, 122, 82, 0.1);
}

.mobile-panel[hidden] {
  display: none;
}

.photo-credit {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8076;
}

/* Large studio mark behind the homepage hero copy (white paper drops out via multiply). */
.hero-logo-watermark {
  position: absolute;
  left: -6%;
  top: 8%;
  width: min(980px, 108vw);
  height: auto;
  max-width: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}
