:root {
  --black:   #060606;
  --deep:    #0D0D0D;
  --card:    #111111;
  --card2:   #161616;
  --border:  #1A1A1A;
  --bord2:   #222222;
  --gold:    #B8963E;
  --gold2:   #D4AF6A;
  --silver:  #888888;
  --text:    #EDE8DF;
  --muted:   #6a6a6a;
  --muted2:  #9a9a9a;
  --white:   #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --body-line: 1.68;
  --readable-max: 70ch;

  --trans: all .25s ease;
  --trans-slow: all .5s ease;

  --pad-x: clamp(16px, 4vw, 72px);
  --pad-section: clamp(64px, 8vw, 110px);
  --nav-h: 88px;
}

html {
  font-size: clamp(15px, 0.28vw + 14.2px, 17px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: var(--body-line);
  -webkit-font-smoothing: antialiased;
}
