body {
  font-family: var(--font-body);
  background-color: var(--ivory-50);
  color: var(--charcoal-800);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--charcoal-900);
  text-align: left;
}

.display { font-size: 80px; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: 56px; font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: 42px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 32px; font-weight: 500; line-height: 1.2; }
h4 { font-size: 24px; font-weight: 500; line-height: 1.3; }

h5, .eyebrow {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.max-w-65ch { max-width: 65ch; }

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  border-left: 4px solid var(--gold-500);
  padding-left: var(--space-4);
  margin: var(--space-4) 0;
}

@media (min-width: 1024px) {
  blockquote { font-size: 36px; }
}

@media (max-width: 1023px) {
  .display { font-size: 42px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5, .eyebrow { font-size: 16px; }
  body { font-size: 15px; }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--navy-900);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 0;
}

::selection {
  background-color: var(--navy-900);
  color: var(--gold-500);
}
::-moz-selection {
  background-color: var(--navy-900);
  color: var(--gold-500);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-500);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 200ms var(--ease-primary);
}
.skip-link:focus {
  top: 16px;
}

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

/* =============================================
   TEXT MASK (SPLIT-TEXT REVEAL)
   ============================================= */
.text-mask-wrapper {
  overflow: hidden;
  display: block;
}

.text-mask-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 800ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.text-mask-wrapper.is-visible .text-mask-inner {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .text-mask-inner {
    transform: translateY(0);
    transition: none;
  }
}

/* =============================================
   MAGNETIC BUTTON
   ============================================= */
.magnetic-btn {
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
  will-change: transform;
}

/* =============================================
   SWUP PAGE TRANSITIONS
   ============================================= */
.transition-fade {
  opacity: 1;
}

