/* FONTS .woff2 (400, 600, 800) https://gwfh.mranftl.com/fonts/outfit */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-v15-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* CSS VARIABLES */
:root {

  /* Surfaces — warm off-white scale */
  --surface:       #FAF7F3;
  --surface-mid:   #F2EDE4;
  --surface-card:  #f7f3ea;
  --border:        #D6CEBF;

  /* Accent — terracotta/rust */
  --accent:        #b34711;
  --accent-dim:    #A3411A;
  --accent-bright: #F47316;

  /* Text */
  --ink:           #181512;
  --ink-dim:       #6A5F54;
  --ink-bright:    rgba(24, 21, 18, .9);

  /* Hero dark-mode — remove to revert to light hero */
  --hero-ink:       #FAF7F3;
  --hero-ink-dim:   rgba(250, 247, 243, 0.82);
  --hero-accent:    #F47316;

  /* Glass overlays */
  --nav-glass:     rgba(250, 247, 243, .78);
  --sticky-glass:  rgba(250, 247, 243, .97);

  /* Map tint */
  --map-tint:      rgba(192, 80, 32, .07);

  /* Typography */
  --font-display:  'Outfit', system-ui, sans-serif;
  --font-body:     'Outfit', system-ui, sans-serif;

  /* Global */
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:    80px;
  --max-width:     1360px;
}