/* ==========================================================================
   YAHCHEH BASE
   Reset, typography, and global element defaults built on design tokens.
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--yah-font-body);
  background: var(--yah-bg);
  color: var(--yah-text);
  transition: background-color var(--yah-transition-slow), color var(--yah-transition-slow);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

p,
h1,
h2,
h3,
h4,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--yah-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--yah-text);
}

a {
  color: inherit;
}

::selection {
  background: var(--yah-glow);
  color: var(--yah-text);
}

:focus-visible {
  outline: 1.5px solid var(--yah-gold-bright);
  outline-offset: 3px;
  border-radius: var(--yah-radius);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--yah-gold);
  text-transform: uppercase;
  letter-spacing: var(--yah-tracking-atmosphere);
  font-size: 0.76rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yah-icon {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.page-shell {
  position: relative;
  z-index: var(--yah-z-content);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
