/* ===== AVIATOR GLOBAL EDITOR CSS ===== */
/* Generated: 2026-04-06 17:27:49 */

:root {
  /* ===== TYPE SCALE ===== */
  --baseFontSize: 16px;
  --scaleFontSize: 1.060;

  /* ===== HEADING STYLES ===== */
  --headingFontFamily: Test Financier Display;
  --headingFontWeight: 300;
  --headingLetterSpacing: 0.000em;
  --headingMarginBottomBase: 0.20;
  --headingMarginBottomScale: 1.65;
  /* --headingMarginBottom is calculated as: base * scale * 1em (see type-engine.css) */

  /* ===== READABLE STYLES ===== */
  --textFontFamily: DM Sans,Test Financier Text;
  --readableFontWeight: 400;
  --readableMarginBottom: 1.5em;
  --strongFontWeight: 600;
  --lineHeight: 1.7;
  --scaleLineHeight: 0.975;
  --readableMaxWidth: 70ch;
  --scaleMaxWidth: 0.95;

  /* ===== EYEBROW STYLES ===== */
  --eyebrowFontFamily: var(--textFontFamily);
  --eyebrowFontWeight: 500;
  --eyebrowLetterSpacing: 0.15em;
  --eyebrowTextTransform: uppercase;
  --eyebrowOpacity: 0.85;
  --eyebrowMarginBottom: 1.25em;

  /* ===== SPACING ===== */
  --spacingUnit: 1rem;
  --spacingTightness: 0.70;  /* Mobile-first: tighter on small screens, expands at breakpoints */

  /* Small values: UNAFFECTED (component-level precision) */
  --spacingSmallest: calc(var(--spacingUnit) * 0.25);
  --spacingSmaller: calc(var(--spacingUnit) * 0.5);
  --spacingSmall: calc(var(--spacingUnit) * 0.75);
  --spacingMedium: var(--spacingUnit);

  /* Large values: SCALED by tightness with exponential curve (larger tokens reduce more) */
  --spacingLarge: calc(var(--spacingUnit) * 1.5 * pow(var(--spacingTightness, 1), 0.15));
  --spacingLarger: calc(var(--spacingUnit) * 2.5 * pow(var(--spacingTightness, 1), 0.35));
  --spacingLargest: calc(var(--spacingUnit) * 4 * pow(var(--spacingTightness, 1), 0.7));
  --spacingBig: calc(var(--spacingUnit) * 6 * pow(var(--spacingTightness, 1), 1.5));
  --spacingBigger: calc(var(--spacingUnit) * 8 * pow(var(--spacingTightness, 1), 1.8));
  --spacingBiggest: calc(var(--spacingUnit) * 10 * pow(var(--spacingTightness, 1), 2.0));

  /* ===== COLORS ===== */
  /* Primary Palette (grayscale) */
  --p-000: 249 249 249;
  --p-100: 186 186 186;
  --p-200: 161 161 161;
  --p-300: 143 143 143;
  --p-400: 127 127 127;
  --p-500: 114 114 114;
  --p-600: 51 51 51;
  --p-700: 37 37 37;
  --p-800: 29 29 29;
  --p-900: 22 22 22;
  --p-1000: 15 15 15;

  /* Accent Palette */
  --a-000: 255 241 190;
  --a-100: 220 181 127;
  --a-200: 197 157 99;
  --a-300: 180 139 77;
  --a-400: 165 125 59;
  --a-500: 152 112 45;
  --a-600: 98 66 0;
  --a-700: 77 49 0;
  --a-800: 62 36 0;
  --a-900: 50 25 0;
  --a-1000: 41 16 0;

  /* ===== MISC ===== */
  --transition: all .3s ease;
  --borderRadius: 0.5rem;
  --docMaxWidth: 1280px;
}

/* ===== RESPONSIVE TYPE SCALE ===== */
@media (min-width: 768px) {
  :root {
    --baseFontSize: 16px;
    --scaleFontSize: 1.060;
    --spacingTightness: 0.75;
  }
}

@media (min-width: 1024px) {
  :root {
    --baseFontSize: 16px;
    --scaleFontSize: 1.065;
    --spacingTightness: 0.75;
  }
}

@media (min-width: 1280px) {
  :root {
    --baseFontSize: 17px;
    --scaleFontSize: 1.075;
    --spacingTightness: 1;
  }
}

@media (min-width: 1536px) {
  :root {
    --baseFontSize: 17px;
    --scaleFontSize: 1.085;
    --spacingTightness: 1;
  }
}




:root {
	--proseMaxWidth: 40rem;
	--headerHeight: 5rem;
}

.gold {
	color: #d3b463 !important;
}

.prose {
	max-width: var(--proseMaxWidth);
}

[class*="eyebrow"] {
	position: relative;
	display: inline-block;
	color: var(--color-a-300);
}

header {
	position: fixed;
	width: 100%;
	z-index: 99;
	background: var(--contrastNone);
	height: var(--headerHeight);
}
