@charset "UTF-8";
/* ============================================================
   BASE — Reset, element defaults, global styles
   Source: All 6 HTML prototypes
   DO NOT add anything not present in the HTML source.
============================================================ */

/* ----------------------------------------------------------
   BOX MODEL RESET
---------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----------------------------------------------------------
   HTML
---------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ----------------------------------------------------------
   BODY
---------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  line-height: var(--line-height-base);
  color: var(--color-text-main);
  background: var(--color-bg-base);
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

html.no-scroll {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

/* ----------------------------------------------------------
   MEDIA
---------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------
   LISTS
---------------------------------------------------------- */
ul {
  list-style: none;
}

/* ----------------------------------------------------------
   LINKS
---------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--color-brand-secondary);
}

/* ----------------------------------------------------------
   HEADINGS
---------------------------------------------------------- */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-medium);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--color-text-heading);
}

h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  color: var(--color-text-heading);
}

/* ----------------------------------------------------------
   SCREEN-READER ONLY
---------------------------------------------------------- */
.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;
}

/* ----------------------------------------------------------
   CONTAINERS
---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* About page narrow content column */
.content-col {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.align-content-center {
  text-align: center;
}
.align-content-center h1 {
  margin: 0 auto;
}
/* ----------------------------------------------------------
   SEMANTIC TYPOGRAPHY UTILITIES
---------------------------------------------------------- */

/* Cinematic Display Title (H1) */
.hero-title
/* , .h-display */ {
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white-90);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  max-width: var(--content-w);
  margin: 0;
}
.hero-title a
/* , .h-display a */ {
  color: var(--color-white-90);
}
/* Standard Section Heading (H2) */
/* .h-section {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
} */

/* Muted Intro/Description (P) */
/* .h-sub {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: var(--cta-max-w);
} */

/* Metadata Labels (Caps) */
.label-caps {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-primary);
}

/* Serif Secondary Title (Small) */
.eyebrow {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  opacity: 0.88;
  display: block;
  margin-bottom: var(--space-sm);
}
.eyebrow a {
  color: var(--color-white-100);
}
/* Decorative Background Title (Large, Ghosted) */
.eyebrow--large {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--color-text-heading);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 4px;
}

/* ----------------------------------------------------------
   NO HORIZONTAL SCROLL (global safety)
---------------------------------------------------------- */
html,
body {
  max-width: 100%;
}

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