/* ===== AVIATOR GLOBAL EDITOR CSS ===== */
/* Generated: 2026-07-14 15:07:20 */

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

  /* ===== HEADING STYLES ===== */
  --headingFontFamily: Fraunces, system-ui, sans-serif;
  --headingFontWeight: 400;
  --headingLetterSpacing: -0.015em;
  --headingMarginBottomBase: 0.20;
  --headingMarginBottomScale: 1.65;
  /* --headingMarginBottom is calculated as: base * scale * 1em (see type-engine.css) */

  /* ===== READABLE STYLES ===== */
  --textFontFamily: Hanken Grotesk, system-ui, sans-serif;
  --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.10em;
  --eyebrowTextTransform: uppercase;
  --eyebrowOpacity: 0.85;
  --eyebrowMarginBottom: 1.50em;

  /* ===== 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: 246 235 235;
  --p-100: 184 173 172;
  --p-200: 160 148 147;
  --p-300: 142 130 129;
  --p-400: 127 114 113;
  --p-500: 114 101 100;
  --p-600: 50 39 38;
  --p-700: 36 26 26;
  --p-800: 27 18 17;
  --p-900: 20 7 6;
  --p-1000: 11 0 0;

  /* Accent Palette */
  --a-000: 255 207 174;
  --a-100: 255 134 103;
  --a-200: 255 100 72;
  --a-300: 243 72 48;
  --a-400: 227 43 27;
  --a-500: 210 2 9;
  --a-600: 158 0 0;
  --a-700: 134 0 0;
  --a-800: 115 0 0;
  --a-900: 98 0 0;
  --a-1000: 83 0 0;

/* ===== COLORS ===== */
/* Primary Palette (warm brown neutral) */
--p-000: 246 235 235;   /* #f7eee4  primary text / lightest */
--p-100: 184 173 172;   /* #e4d3c0 */
--p-200: 160 148 147;   /* #cbb6a6  muted body text */
--p-300: 142 130 129;   /* interpolated */
--p-400: 127 114 113;   /* #9a8576  labels / eyebrows */
--p-500: 114 101 100;   /* #6f5d4e */
--p-600: 50 39 38;   /* interpolated */
--p-700: 36 26 26;   /* #33231a */
--p-800: 27 18 17;   /* #2a1d16  surface / cards */
--p-900: 20 7 6;   /* #211712  page background */
--p-1000: 11 0 0;   /* #0e0906  vinyl black */

/* Accent Palette (peach → terracotta) */
--a-000: 255 207 174;   /* lightest tint */
--a-100: 255 134 103;   /* #e8a884  primary accent */
--a-200: 255 100 72;   /* #d98c63 */
--a-300: 243 72 48;   /* interpolated */
--a-400: 227 43 27;   /* #b9683b  light-theme accent */
--a-500: 210 2 9;   /* interpolated */
--a-600: 158 0 0;   /* interpolated */
--a-700: 134 0 0;   /* interpolated */
--a-800: 115 0 0;   /* interpolated */
--a-900: 98 0 0;   /* interpolated */
--a-1000: 83 0 0;   /* #2a1206  deep ink */
	
	
  /* ===== MISC ===== */
  --transition: all .3s ease;
  --borderRadius: 0.5rem;
  --docMaxWidth: 1280px;
  --font-serif: Fraunces, system-ui, sans-serif;
  --font-sans: Hanken Grotesk, system-ui, sans-serif;
}

/* ===== RESPONSIVE TYPE SCALE ===== */
@media (min-width: 768px) {
  :root {
    --baseFontSize: 16px;
    --scaleFontSize: 1.05;
    --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: 0.80;
  }
}

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




:root {
	--docMaxWidth: 1366px;
}

body {
	width: 100vw;
	overflow-x: clip;
}

body.dark {
	background: var(--color-p-1000) !important;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	background: var(--contrastNone);
}
