@charset "UTF-8";
/**
 * Auria — Typography System
 * Depends on: tokens.css
 */
/**
 * Auria — Shared Mixins
 * Reusable CSS patterns extracted from across the codebase.
 * Import after _variables.scss.
 */
/* ================================================================
   FOCUS RING
   Standard keyboard-focus indicator used on buttons and links.
   ================================================================ */
/* Lighter 2px variant for inline elements */
/* ================================================================
   FLEX CENTER
   Quick centering shorthand.
   $inline: true  → inline-flex (buttons, badges)
            false → flex (block-level containers)
   ================================================================ */
/* ================================================================
   LABEL CAPS
   Uppercase UI label style reused across forms and table headers.
   ================================================================ */
/* ================================================================
   INPUT BASE
   Standard input/select/textarea base styles.
   ================================================================ */
/* ================================================================
   CARD BASE
   White bordered card used throughout My Account and forms.
   ================================================================ */
/* ================================================================
   BUTTON DISABLED STATE
   ================================================================ */
/* ================================================================
   TRANSITION — BUTTON
   The multi-property transition used on all interactive buttons.
   ================================================================ */
/* ================================================================
   ICON CIRCLE BUTTON
   Shared base for gold-circle and dark-circle icon buttons.
   ================================================================ */
/* ================================================================
   PROOF TITLE
   Repeated uppercase section label used on proof of payment blocks.
   ================================================================ */
/* ================================================================
   THEME SCAFFOLD
   ================================================================ */
:root {
  --theme-bg: transparent;
  --theme-text-headline: var(--color-headline);
  --theme-text-body: var(--color-copy);
  --theme-text-muted: var(--color-text-muted);
  --theme-text-subtle: var(--color-text-subtle);
  --theme-eyebrow: var(--color-secondary);
  --theme-accent: var(--color-secondary);
  --theme-accent-alt: var(--color-secondary-light);
  --theme-border: var(--color-grey-200);
  --theme-card-bg: var(--color-white);
  --theme-card-border: var(--color-grey-200);
}

[data-theme=light] {
  --theme-bg: #ffffff;
  --theme-text-headline: #000000;
  --theme-text-body: #38393B;
  --theme-text-muted: #505660;
  --theme-text-subtle: #64748b;
  --theme-eyebrow: #C9A32E;
  --theme-accent: #C9A32E;
  --theme-accent-alt: #d4b13f;
  --theme-border: #DDDFE5;
  --theme-card-bg: #ffffff;
  --theme-card-border: #DDDFE5;
  background-color: #ffffff;
  color: #38393B;
}

[data-theme=warm] {
  --theme-bg: #F9F7EF;
  --theme-text-headline: #000000;
  --theme-text-body: #38393B;
  --theme-text-muted: #505660;
  --theme-text-subtle: #64748b;
  --theme-eyebrow: #C9A32E;
  --theme-accent: #C9A32E;
  --theme-accent-alt: #d4b13f;
  --theme-border: #e8e4d6;
  --theme-card-bg: #ffffff;
  --theme-card-border: #DDDFE5;
  background-color: #F9F7EF;
  color: #38393B;
}

[data-theme=grey] {
  --theme-bg: #F1F1F4;
  --theme-text-headline: #000000;
  --theme-text-body: #38393B;
  --theme-text-muted: #505660;
  --theme-text-subtle: #64748b;
  --theme-eyebrow: #C9A32E;
  --theme-accent: #C9A32E;
  --theme-accent-alt: #d4b13f;
  --theme-border: #DDDFE5;
  --theme-card-bg: #ffffff;
  --theme-card-border: #DDDFE5;
  background-color: #F1F1F4;
  color: #38393B;
}

[data-theme=dark] {
  --theme-bg: var(--color-primary);
  --theme-text-headline: #ffffff;
  --theme-text-body: rgba(255, 255, 255, 0.82);
  --theme-text-muted: rgba(255, 255, 255, 0.60);
  --theme-text-subtle: rgba(255, 255, 255, 0.42);
  --theme-eyebrow: var(--color-secondary);
  --theme-accent: var(--color-secondary);
  --theme-accent-alt: var(--color-secondary-light);
  --theme-border: rgba(255, 255, 255, 0.1);
  --theme-card-bg: rgba(255, 255, 255, 0.045);
  --theme-card-border: rgba(255, 255, 255, 0.08);
  background-color: var(--theme-bg);
  color: var(--theme-text-body);
}

[data-theme=charcoal] {
  --theme-bg: #38393B;
  --theme-text-headline: #ffffff;
  --theme-text-body: rgba(255, 255, 255, 0.82);
  --theme-text-muted: rgba(255, 255, 255, 0.60);
  --theme-text-subtle: rgba(255, 255, 255, 0.40);
  --theme-eyebrow: #C9A32E;
  --theme-accent: #C9A32E;
  --theme-accent-alt: #d4b13f;
  --theme-border: rgba(255, 255, 255, 0.1);
  --theme-card-bg: rgba(255, 255, 255, 0.06);
  --theme-card-border: rgba(255, 255, 255, 0.1);
  background-color: #38393B;
  color: rgba(255, 255, 255, 0.82);
}

[data-theme=black] {
  --theme-bg: #000000;
  --theme-text-headline: #ffffff;
  --theme-text-body: rgba(255, 255, 255, 0.80);
  --theme-text-muted: rgba(255, 255, 255, 0.55);
  --theme-text-subtle: rgba(255, 255, 255, 0.36);
  --theme-eyebrow: #C9A32E;
  --theme-accent: #C9A32E;
  --theme-accent-alt: #d4b13f;
  --theme-border: rgba(255, 255, 255, 0.08);
  --theme-card-bg: rgba(255, 255, 255, 0.04);
  --theme-card-border: rgba(255, 255, 255, 0.08);
  background-color: #000000;
  color: rgba(255, 255, 255, 0.8);
}

[data-theme=purple] {
  --theme-bg: #A382BC;
  --theme-text-headline: #ffffff;
  --theme-text-body: rgba(255, 255, 255, 0.90);
  --theme-text-muted: rgba(255, 255, 255, 0.72);
  --theme-text-subtle: rgba(255, 255, 255, 0.52);
  --theme-eyebrow: #F7EC32;
  --theme-accent: #F7EC32;
  --theme-accent-alt: #fff176;
  --theme-border: rgba(255, 255, 255, 0.2);
  --theme-card-bg: rgba(255, 255, 255, 0.15);
  --theme-card-border: rgba(255, 255, 255, 0.2);
  background-color: #A382BC;
  color: rgba(255, 255, 255, 0.9);
}

[data-theme=gold] {
  --theme-bg: var(--color-secondary);
  --theme-text-headline: var(--color-primary);
  --theme-text-body: rgba(18, 27, 66, 0.82);
  --theme-text-muted: rgba(18, 27, 66, 0.65);
  --theme-text-subtle: rgba(18, 27, 66, 0.48);
  --theme-eyebrow: var(--color-primary);
  --theme-accent: var(--color-primary);
  --theme-accent-alt: var(--color-primary-light);
  --theme-border: rgba(18, 27, 66, 0.15);
  --theme-card-bg: rgba(255, 255, 255, 0.22);
  --theme-card-border: rgba(18, 27, 66, 0.1);
  background-color: var(--theme-bg);
  color: var(--theme-text-body);
}

/* ================================================================
   HEADINGS
   ================================================================ */
.type-h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--weight-bold);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-h3 {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-h4 {
  font-family: var(--font-secondary);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-h5 {
  font-family: var(--font-secondary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--theme-text-headline, var(--color-headline));
}

/* ================================================================
   EYEBROW
   ================================================================ */
.type-eyebrow {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  color: var(--theme-eyebrow, var(--color-secondary));
  display: block;
}

.type-eyebrow--l {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
}

.type-eyebrow--m {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
}

/* ================================================================
   BODY
   ================================================================ */
.type-body {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  color: var(--theme-text-body, var(--color-copy));
}

.type-body--l {
  font-size: 1.125rem;
  line-height: 1.7;
}

.type-body--m {
  font-size: 1rem;
  line-height: 1.65;
}

.type-body--s {
  font-size: 0.875rem;
  line-height: 1.6;
}

.type-body--xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.type-body--muted {
  color: var(--theme-text-muted, var(--color-text-muted));
}

.type-body--subtle {
  color: var(--theme-text-subtle, var(--color-text-subtle));
}

/* ================================================================
   LABEL
   ================================================================ */
.type-label {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  line-height: 1;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-label--xl {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.type-label--l {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

/* ================================================================
   NUMBERS
   ================================================================ */
.type-number {
  font-family: var(--font-secondary);
  font-variant-numeric: tabular-nums;
  color: var(--theme-text-headline, var(--color-headline));
}

.type-number--regular {
  font-weight: var(--weight-regular);
}

.type-number--bold {
  font-weight: var(--weight-bold);
}

.type-number--display {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.type-number--lg {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.type-number--md {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.type-number--accent {
  color: var(--theme-accent, var(--color-secondary));
}

/* ================================================================
   ACCENT RULE
   ================================================================ */
.type-accent-rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-accent, var(--color-secondary)) 0%, var(--theme-accent-alt, var(--color-secondary-light)) 100%);
  border-radius: 9999px;
  margin: var(--space-5) 0;
  flex-shrink: 0;
}
.type-accent-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-header--center {
  text-align: center;
}
.section-header--center .type-accent-rule {
  margin-left: auto;
  margin-right: auto;
}
.section-header .type-eyebrow {
  margin-bottom: var(--space-3);
}
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

/* ================================================================
   THEME-AWARE CARD
   ================================================================ */
.theme-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.theme-card > * + * {
  margin-top: var(--space-3);
}
.theme-card > .type-h5 {
  margin-top: var(--space-4);
}

/* ================================================================
   HERO TYPE OVERRIDES
   ================================================================ */
.hero .type-eyebrow {
  color: var(--color-secondary);
}
.hero .type-h1 {
  color: var(--color-white);
}

.page-header .type-h1,
.page-header .type-h2 {
  color: var(--color-white);
}
.page-header .type-eyebrow {
  color: var(--color-secondary);
}
/*# sourceMappingURL=typography.css.map */
