:root {
  --color-bg-site: #0D0D0D;
  --color-bg-section: #111111;
  --color-bg-content: #141414;
  --color-bg-form: #1A1A1A;
  --color-text-heading: #E8E8E8;
  --color-text-body: #E8E8E8;
  --color-text-meta: #77736A;
  --color-links: #E8E8E8;
  --color-links-hover: #FFD925;
  --color-links-visited: #77736A;
  --color-accent: #FFD925;
  --color-border: #77736A;
  --font-fa: 'AnjomanFaNum', 'Anjoman', sans-serif;
  --font-en: var(--font-fa);
  --size-title-desktop: 36px;
  --size-subtitle-desktop: 20px;
  --size-text-desktop: 16px;
  --size-quote-desktop: 16px;
  --size-label-desktop: 15px;
  --size-title-tablet: 28px;
  --size-subtitle-tablet: 20px;
  --size-text-tablet: 16px;
  --size-quote-tablet: 16px;
  --size-label-tablet: 14px;
  --size-title-mobile: 24px;
  --size-subtitle-mobile: 16px;
  --size-text-mobile: 15px;
  --size-quote-mobile: 15px;
  --size-label-mobile: 13px;
  --weight-title: 900;
  --weight-subtitle: 600;
  --weight-text: 500;
  --weight-quote: 500;
  --weight-label: 400;
  --lh-title: 1.3;
  --lh-subtitle: 1.5;
  --lh-text: 1.8;
  --lh-quote: 1.7;
  --lh-label: 1.5;
  --text-align-short: right;
  --text-align-long: justify;
  --text-align-last: right;
  --btn-text: #77736A;
  --btn-border: #77736A;
  --btn-bg: transparent;
  --btn-text-hover: #0D0D0D;
  --btn-border-hover: #FFD925;
  --btn-bg-hover: #FFD925;
  --btn-text-disabled: #3A3A3A;
  --btn-border-disabled: #3A3A3A;
  --black: var(--color-bg-site);
  --yellow: var(--color-accent);
  --bone: var(--color-text-body);
  --cream: var(--color-text-body);
  --gray: var(--color-text-meta);
  --mid: var(--color-bg-form);
  --dark2: var(--color-bg-section);
  --border: var(--color-border);
  --border2: var(--color-border);
  --font-heading: var(--font-fa);
  --font-title: var(--font-fa);
  --pad-h: 48px;
  --pad-h-lg: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-fa);
  font-size: var(--size-text-desktop);
  font-weight: var(--weight-text);
  line-height: var(--lh-text);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a:hover {
  color: var(--yellow);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--yellow);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-fa);
}

input,
textarea,
select {
  font-family: var(--font-fa);
}
